From 1542213512736ed469de7553cdb2923e51606b20 Mon Sep 17 00:00:00 2001 From: Gordon Murray Date: Thu, 13 Aug 2026 17:11:08 +0100 Subject: [PATCH] docs: changelog entry for the media preview PR #72 added inline preview for media held in binary columns. The entry names it as a preview for small media, because a value above 64 KiB returns its type and size with no payload. --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5adba2..ffe5678 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added +- Inline preview for small media held in binary columns. The backend detects images, audio, and video from file signatures and returns the MIME type with the size. A value of 64 KiB or less carries a base64 payload, and the table draws it inline. A larger value returns its type and size only (#3). - Tables can be opened at main, a numeric version, or a tag (#83). - Dataset locations can be selected in the UI when `DATA_PATH` is set to an empty value (#83). - CI smoke test. Each build starts the image it just built and checks `/healthz`, `/datasets`, and the static files, before the image is published (#67).