From b45ae6875ff85aeb2d3ae68019f808938c8eb87b Mon Sep 17 00:00:00 2001 From: Sebastian Jeltsch Date: Thu, 23 Oct 2025 10:34:42 +0200 Subject: [PATCH] Prepare new release v0.20.1. --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7468151..f1cb3c04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.20.1 + +- Fix issue with stale, cached query results in admin SQL editor. The internal representation of SQL values changed with v0.20.0, which means the UI can no longer render the old format. Consequently, the editor could get into an error state that could only be recovered from by deleting the Browser's respective local storage. This update introduces an error boundary that lets users recover by re-executing the query to fetch data in the new format. +- Don't cache static `/_/admin/index.html` asset. +- Update Rust dependencies. + ## v0.20.0 - Model types more closely after SQLite's and derive an affinity type. We use it to parse `ANY` columns in the admin UI.