Skip to content

Releases: akkadotnet/Akka.Persistence.PostgreSql

Akka.Persistence.PostgreSql v1.5.1

16 Mar 16:36
c57876d
Compare
Choose a tag to compare

1.5.1 March 16 2023

1.5.0 March 2 2023

Version 1.5.0 is the RTM release of Akka.Persistence.PostgreSql and Akka.NET v1.5.0 RTM integration.

Changes:

  • c57876d Bump Akka.NET to 1.5.1 and update RELEASE_NOTES.md for 1.5.1 (#190)
  • 6db3c42 Bump Docker.DotNet from 3.125.12 to 3.125.13 (#186)

This list of changes was auto generated.

Akka.Persistence.PostgreSql v1.5.0

02 Mar 21:15
4bbe3a3
Compare
Choose a tag to compare

1.5.0 March 2 2023

Version 1.5.0 is the RTM release of Akka.Persistence.PostgreSql and Akka.NET v1.5.0 RTM integration.

Changes:

  • 4bbe3a3 Update build script to use net7.0 (#189)
  • ff4ce9a Update RELEASE_NOTES.md for 1.5.0 RTM and update Akka.NET to 1.5.0 RTM (#188)
  • 579d1c9 upgraded to Akka.NET v1.5.0-beta3 (#183)
  • ec26874 test: run tests with .net 7 (#182)
  • 6172178 Update azure-pipeline.template.yaml (#180)
  • b4339ae modernized repo build system (#179)
  • c9b490c Bump AkkaVersion from 1.4.47 to 1.4.49 (#177)
  • bd8b0e1 Bump Microsoft.NET.Test.Sdk from 17.4.0 to 17.4.1 (#175)
  • c0437ca Bump AkkaVersion from 1.4.46 to 1.4.47 (#174)

This list of changes was auto generated.

Akka.Persistence.PostgreSql v1.4.46

30 Nov 21:51
65047c8
Compare
Choose a tag to compare

1.4.46 November 30 2022

1.4.45 October 21 2022

1.4.35 March 23 2022

1.4.32 January 18 2022

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

1.4.29 December 15 2021

1.4.25 September 9 2021

1.4.19 June 16 2021

1.4.17 March 13 2021

Major upgrade and modernization for Akka.Persistence.PostgreSql

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

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:

This list of changes was auto generated.

Akka.Persistence.PostgreSql v1.4.45

21 Oct 21:26
5fe4a21
Compare
Choose a tag to compare

1.4.45 October 21 2022

1.4.35 March 23 2022

1.4.32 January 18 2022

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

1.4.29 December 15 2021

1.4.25 September 9 2021

1.4.19 June 16 2021

1.4.17 March 13 2021

Major upgrade and modernization for Akka.Persistence.PostgreSql

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

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:

  • 5fe4a21 Update windows-release.yaml
  • a719ccc Update RELEASE_NOTES.md
  • 9f2f606 Bump AkkaVersion from 1.4.42 to 1.4.45 (#162)
  • ec590e2 Bump Npgsql from 6.0.2 to 6.0.7 (#163)
  • 9680187 Bump Microsoft.NET.Test.Sdk from 17.3.1 to 17.3.2 (#159)
  • 2047ce8 Bump AkkaVersion from 1.4.41 to 1.4.42 (#158)
  • 999ded0 Bump Docker.DotNet from 3.125.11 to 3.125.12 (#157)
  • 1934cc5 Bump Docker.DotNet from 3.125.10 to 3.125.11 (#156)
  • 1cbb20d Bump AkkaVersion from 1.4.40 to 1.4.41 (#155)
  • 96eb005 Bump Microsoft.NET.Test.Sdk from 17.3.0 to 17.3.1 (#154)
See More
  • 21bd8b8 Bump xunit from 2.4.1 to 2.4.2 (#152)
  • f8ebf10 Bump Microsoft.NET.Test.Sdk from 17.2.0 to 17.3.0 (#153)
  • e2a7b49 Bump Docker.DotNet from 3.125.5 to 3.125.10 (#150)
  • 575a9e7 Bump AkkaVersion from 1.4.39 to 1.4.40 (#151)
  • 269ed96 Bump xunit.runner.visualstudio from 2.4.3 to 2.4.5 (#143)
  • f91b3b4 Bump Microsoft.NET.Test.Sdk from 17.1.0 to 17.2.0 (#145)
  • 40671fe Bump AkkaVersion from 1.4.35 to 1.4.39 (#146)
  • 064c91e Release 1.4.35 version (#138)
  • cef1e92 Bump Microsoft.NET.Test.Sdk from 17.0.0 to 17.1.0 (#134)
  • c3cbc70 Bump AkkaVersion from 1.4.33 to 1.4.35 (#137)
  • 620bf8c Fix broken License link (#135)
  • 4836c38 Bump AkkaVersion from 1.4.32 to 1.4.33 (#133)

This list of changes was auto generated.

Akka.Persistence.PostgreSql v1.4.35

25 Mar 14:48
345b3f5
Compare
Choose a tag to compare

1.4.35 March 23 2022

1.4.32 January 18 2022

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

1.4.29 December 15 2021

1.4.25 September 9 2021

1.4.19 June 16 2021

1.4.17 March 13 2021

Major upgrade and modernization for Akka.Persistence.PostgreSql

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

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:

This list of changes was auto generated.

Akka.Persistence.PostgreSql v1.4.32

18 Jan 21:12
6b92b0e
Compare
Choose a tag to compare

1.4.32 January 18 2022

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

1.4.29 December 15 2021

1.4.25 September 9 2021

1.4.19 June 16 2021

1.4.17 March 13 2021

Major upgrade and modernization for Akka.Persistence.PostgreSql

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

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:

  • 6b92b0e Version 1.4.32 Release
  • 36d3bfe Merge branch 'dev'
  • 3a0c0f2 Update RELEASE_NOTES.md for 1.4.32 release (#129)
  • 1df12b8 Bump Npgsql from 6.0.1 to 6.0.2 (#128)
  • b5143fb Bump Akka.NET from 1.4.31 to 1.4.32 (#127)
  • 6330941 Add version range for Npgsql package and support to test against a specific package version (#126)

This list of changes was auto generated.

Akka.Persistence.PostgreSql v1.4.31

21 Dec 01:25
ebe91e1
Compare
Choose a tag to compare

1.4.31 December 20 2021

1.4.29 December 15 2021

1.4.25 September 9 2021

1.4.19 June 16 2021

1.4.17 March 13 2021

Major upgrade and modernization for Akka.Persistence.PostgreSql

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

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:

This list of changes was auto generated.

Akka.Persistence.PostgreSql v1.4.29

15 Dec 22:18
8cf31a4
Compare
Choose a tag to compare

1.4.29 December 15 2021

1.4.25 September 9 2021

1.4.19 June 16 2021

1.4.17 March 13 2021

Major upgrade and modernization for Akka.Persistence.PostgreSql

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

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:

  • 8cf31a4 Version 1.4.29 Release
  • 8c1942c Merge branch 'dev'
  • c3ecfe7 Update RELEASE_NOTES.md for 1.4.29 release (#118)
  • 1880409 Bump Npgsql from 5.0.10 to 6.0.1 (#115)
  • f66590b Bump AkkaVersion from 1.4.28 to 1.4.29 (#117)
  • 61891bb Bump Microsoft.NET.Test.Sdk from 16.11.0 to 17.0.0 (#111)
  • 57f6fe1 Bump AkkaVersion from 1.4.26 to 1.4.28 (#114)
  • 1e99082 Bump to Ubuntu 20.04 (#113)
  • cc815c9 fix: inherit from CurrentAllEventsSpec instead of AllEventsSpec (#109)
  • 7b74b4d refactor: remove duplicate SerializerId parameter (#108)
See More

This list of changes was auto generated.

Akka.Persistence.PostgreSql v1.4.25

09 Sep 15:41
66a1e88
Compare
Choose a tag to compare

1.4.25 September 9 2021

Changes:

  • 66a1e88 1.4.25 Release
  • 9f733ad Merge branch 'dev'
  • 6e99b09 Merge pull request #104 from Arkatufus/Update_RELEASE_NOTES_for_1.4.25
  • 9b335b4 Update RELEASE_NOTES.md for 1.4.25
  • 1f712c9 Bump Docker.DotNet from 3.125.4 to 3.125.5 (#102)
  • 0ad248d Bump Microsoft.NET.Test.Sdk from 16.10.0 to 16.11.0 (#101)
  • 8cfc9be Bump AkkaVersion from 1.4.19 to 1.4.25 (#103)

This list of changes was auto generated.

Akka.Persistence.PostgreSql v1.4.19

16 Jun 17:46
c698dab
Compare
Choose a tag to compare

1.4.19 June 16 2021

1.4.17 March 13 2021

Major upgrade and modernization for Akka.Persistence.PostgreSql

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

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:

  • c698dab Merge pull request #100 from akkadotnet/dev
  • c456e65 Merge branch 'master' into dev
  • 08e0bc2 Update RELEASE_NOTES.md for 1.4.19 release (#99)
  • 40d739d fix logic for json snapshots as highlighted as an issue in #63 (#92)
  • 8b665d4 Bump Microsoft.NET.Test.Sdk from 16.9.4 to 16.10.0 (#97)
  • 5bbcff4 Bump Npgsql from 5.0.3 to 5.0.7 (#98)
  • bb7c0cf Bump AkkaVersion from 1.4.16 to 1.4.19 (#96)
  • e42065c Bump Microsoft.NET.Test.Sdk from 16.8.3 to 16.9.4 (#95)
  • 25f0b34 add Dependabot support (#93)

This list of changes was auto generated.