Releases: akkadotnet/Akka.Persistence.PostgreSql
Akka.Persistence.PostgreSql v1.4.17
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.
Changes:
- 59c36f2 Merge pull request #88 from akkadotnet/dev
- 327bc4a Added v1.4.17 release notes (#87)
- 49d896c Set up Release CI with Azure Pipelines (#86)
- 25b4e5d Merge pull request #84 from Arkatufus/Add_option_to_use_BIGINT_IDENTITY_for_journal_ordering_column
- ca50adf Clean up table creation SQL
- 43601bb Merge branch 'Add_option_to_use_BIGINT_IDENTITY_for_journal_ordering_column' of github.com:Arkatufus/Akka.Persistence.PostgreSql into Add_option_to_use_BIGINT_IDENTITY_for_journal_ordering_column
- 75bac4e Clean-up unit test, not everything is needed
- 1a8580b Merge branch 'dev' into Add_option_to_use_BIGINT_IDENTITY_for_journal_ordering_column
- ad7f347 Add option to use BIGINT IDENTITY for journal ordering column
- 4631086 Merge pull request #83 from Arkatufus/#53_Fix_snapshot_store_sequential_access_is_broken
See More
- 845d6a0 Merge branch 'dev' into #53_Fix_snapshot_store_sequential_access_is_broken
- e461aab Fix broken SnapshotStore when sequential-access is turned on
- 399017f Merge pull request #82 from Arkatufus/fix-deletes
- ce37f79 Fix PostgreSql does not like 2 deletes in a single command.
- 3f00ae4 Merge pull request #50 from Larsus/change-highest-sequence-nr-sql
- abc6918 Merge branch 'dev' into change-highest-sequence-nr-sql
- 0fc3b13 Merge pull request #67 from divverence/fix-issue-66 [ #66 ]
- d01c717 Merge branch 'dev' into fix-issue-66
- fd65bfb Merge branch 'dev' into change-highest-sequence-nr-sql
- 29652a2 Merge pull request #80 from Arkatufus/Fix_Missing_stored-as_key_in_HOCON
- 7276967 Standardize unit test hocon config
- 4093ef1 Add missing stored-as key to akka.persistence.snapshot-store.postgresql HOCON config
- eccca00 Merge branch 'dev' into fix-issue-66
- 0c55131 Merge branch 'dev' into change-highest-sequence-nr-sql
- 71c4389 Merge pull request #78 from Arkatufus/#76_Add_Docker.DotNet
- 7a256a6 Raise expect timeout value
- 056dda1 Pipeline fix, test 2
- 2132947 Azure Pipelines fix test
- be1bd45 Update build system
- d670fdf Add xunit.runner.json
- 09fc3fd Add all missing query specs
- af092ab Cleanup PostgresFixture
- ec83ff7 Update dependency versions to the latest versions
- 912bc14 Implement Docker.DotNet via xunit fixture class
- 8486dd7 Update common.props
- 0b9596c added Azure DevOps build pipeline (#75)
- 4a806f4 Fix issue #66, by using the correct default
- 73cc1c8 Removed unused field
- 2fc01e6 Fixed misprint
- 5063a2b Changed HighestSequenceNrSql query
This list of changes was auto generated.
Akka.Persistence.PostgreSql v1.3.9 Stable Release
1.3.9 August 29 2018
Upgraded for Akka.NET v1.3.9.
Other Fixes and Improvements
Akka.Persistence.PostgreSql v1.3.8 Stable Release
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
Akka.Persistence.PostgreSql 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.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
Akka.Persistence.PostgreSql Stable Release v1.1.2
1.1.2 January 2017
Updated for Akka.NET 1.1.2.