From df80db03e9a8f6b9009ee140f923c8b22a4c8af6 Mon Sep 17 00:00:00 2001 From: Sebastian Jeltsch Date: Thu, 30 Apr 2026 17:26:20 +0200 Subject: [PATCH] Prepare new release v0.26.8. --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index be215c62..dac65e9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## v0.26.8 + +- Add two new SQL connection types: a postgres one and a polymorphic one with runtime dispatch. + - This is mostly a proof-of-concept. Tests pass with the polymorphic connection pointing at SQLite but using postgres entails many more challenges: + - Different SQL dialects. + - Schema extraction missing. + - Change notifications for RecordApi subscriptions work very differently. +- Introduce a new `AsyncReactive` + snapshot primitive to further entangle DB connection establishment from the execution model, i.e. allow establishing connection asynchronously and thus `RecordApi`s. +- Update dependencies. + ## v0.26.7 - Fix CLI regression for `user` and `admin` commands due to DB initialization order changes.