Releases: akkadotnet/Akka.Persistence.SqlServer
Releases · akkadotnet/Akka.Persistence.SqlServer
Akka.Persistence.SqlServer 1.3.2 Stable Release
1.3.2 October 29 2017
Updated to Akka.Persistence v1.3.2. Fixed bug in SnapshotStore query.
Akka.Persistence.SqlServer 1.3.1 Stable Release
1.3.1 September 11 2017
Support for Akka.NET 1.3, .NET Standard 1.6, and the first stable RTM release of Akka.Persistence.
Migration from 1.1.1.7-beta Up
The event journal and snapshot store schema has changed with this release. In order to keep existing stores compatible with this release, you must add a column to both stores for SerializerId
like so:
ALTER TABLE {your_journal_table_name} ADD COLUMN SerializerId INTEGER NULL
ALTER TABLE {your_snapshot_table_name} ADD COLUMN SerializerId INTEGER NULL