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.