Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
- Memory‑safe deep copying to prevent data corruption during background saves.
Loading