From a0564a1d873468c901146c1582f3cffc9def1720 Mon Sep 17 00:00:00 2001 From: Leo Mengesha Date: Sun, 12 Jul 2026 23:11:09 +0100 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1ed64a..3a23689 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,8 @@ Patch release fixing all critical correctness bugs identified in the initial rel - PostgresModelStore and PostgresSessionStore connections not disposed asynchronously — four call sites in PostgresModelStore and five in PostgresSessionStore used using var connection (synchronous IDisposable) instead of await using var connection (IAsyncDisposable). NpgsqlConnection implements IAsyncDisposable and disposing it synchronously blocks the thread pool while the connection is returned. All call sites now use await using. +- Collapsed StateCheckpoint.NET.Stores.Postgres and StateCheckpoint.NET.Stores.Mysql (named incorrectly, sqlServer) into StateCheckpoint.NET.Stores (breaking change). + ## [1.0.0] - 2025-06-25 ### Added @@ -46,4 +48,4 @@ Patch release fixing all critical correctness bugs identified in the initial rel - Framework‑agnostic design – works with any C# ML library. ### Security -- Memory‑safe deep copying to prevent data corruption during background saves. \ No newline at end of file +- Memory‑safe deep copying to prevent data corruption during background saves.