Akka.Persistence.PostgreSql v1.4.46
1.4.46 November 30 2022
- Update Akka.NET to v1.4.46
- Add
tag-column-size
HOCON setting to modify journal table Tags column size
1.4.45 October 21 2022
1.4.35 March 23 2022
1.4.32 January 18 2022
- Upgraded to Akka.NET v1.4.32
- Upgraded Npgsql to 6.0.2
- Changed Npgsql package version from explicit to ranged
In 1.4.31, we bumped the Npgsql package to 6.0.1 and introduced a regression bug for users who uses Entity Framework by locking them from using .NET Core 3.1. We're fixing this bug in 1.4.32 by using ranged versioning to allow users to use Npgsql 5.0.11 and not forced to update to .NET 6.0.
1.4.31 December 20 2021
- Upgraded to Akka.NET v1.4.31
1.4.29 December 15 2021
- Upgraded to Akka.NET v1.4.29
- Upgraded Npgsql to 5.0.10
1.4.25 September 9 2021
- Upgraded to Akka.NET v1.4.25
1.4.19 June 16 2021
- Bugfix: Snapshot manifest isn't serialized properly
- Upgraded to Akka.NET v1.4.19
- Upgraded Npgsql to 5.0.7
1.4.17 March 13 2021
Major upgrade and modernization for Akka.Persistence.PostgreSql
- Upgraded to Akka.NET v1.4.17
- Implemented all Akka.Persistence.Query's correctly
- Lots of other fixes and modernizations, which you can read here.
Akka.Persistence.PostgreSql is now under the umbrella of the Akka.NET project again and will be maintained at roughly the same cadence as the other officially supported Akka.NET plugins.
1.3.9 August 29 2018
Upgraded for Akka.NET v1.3.9.
Other Fixes and Improvements
1.3.8 July 6 2018
Upgraded to support Akka.NET 1.3.8 and to take advantage of some performance improvements that have been added to Akka.Persistence for loading large snapshots, which you can read more about here: akkadotnet/akka.net#3422
Note that this feature is currently disabled by default in Akka.Persistence.PostgreSql due to #53
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.0-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
1.1.2 January 2017
Updated for Akka.NET 1.1.2.
1.0.6 December 10 2015
1.0.5 August 08 2015
- Changed tables schema: renamed payload_type column to manifest for journal and snapshot tables
- Changed tables schema: added created_at column to journal table
- Added compatibility with Persistent queries API
- Added ability to specify connection string stored in *.config files
1.0.4 August 07 2015
1.0.3 June 12 2015
Bugfix release for Akka.NET v1.0.2.
This release addresses an issue with Akka.Persistence.SqlServer and Akka.Persistence.PostgreSql where both packages were missing a reference to Akka.Persistence.Sql.Common.
In Akka.NET v1.0.3 we've packaged Akka.Persistence.Sql.Common into its own NuGet package and referenced it in the affected packages.
1.0.2 June 2 2015
Initial Release of Akka.Persistence.PostgreSql
Fixes & Changes - Akka.Persistence
- Renamed GuaranteedDelivery classes to AtLeastOnceDelivery
- Changes in Akka.Persistence SQL backend
- PostgreSQL persistence plugin for both event journal and snapshot store
- Cassandra persistence plugin
New Features:
Akka.Persistence.PostgreSql and Akka.Persistence.Cassandra
Akka.Persistence now has two additional concrete implementations for PostgreSQL and Cassandra! You can install either of the packages using the following commandline:
Akka.Persistence.PostgreSql Configuration Docs
PM> Install-Package Akka.Persistence.PostgreSql
Changes:
- 65047c8 Update RELEASE_NOTES.md for v1.4.46 release (#169)
- df39dff Cleanup #167 (#168)
- d6a4491 introduced tags-column-size configuration parameter and set it to def… (#167) [ #139, #133, #135, #137, #134, #138 ]
- 30cc039 Bump AkkaVersion from 1.4.45 to 1.4.46 (#166)
- 3f5016e Bump Microsoft.NET.Test.Sdk from 17.3.2 to 17.4.0 (#164)
This list of changes was auto generated.