Akka.Persistence.MongoDB v1.5.0.1
1.5.0.1 September 15 2023
- Bump Akka.Persistence.Hosting to 1.5.12
- Bump AkkaVersion to 1.5.12
- Separate Akka.Hosting and core Akka version
- Bump XunitVersion to 2.5.0
- Move to using Build Props file and central package management.
- Adding Hosting Extensions for Akka.Persistence.MongoDB
- Add indexed tags support
- Add CancellationToken suppport to all driver calls
- All writes are now performed via MongoDb transactions
- Bump Akka.Persistence.Hosting to 1.5.12.1
- Remove byte rot code that might have caused issue #313
- Implement transaction on both read and write operation
- Make transaction defaults to enabled
Breaking Behavior Change
In this version, we're turning transaction on by default. If you're more concerned with database write and read performance compared to data consistency and correctness, you can move back to the old behavior by setting this flag in the HOCON configuration:
akka.persistence.journal.mongodb.use-write-transaction = off
akka.persistence.snapshot-store.mongodb.use-write-transaction = off
Or by setting them inside the hosting options:
var journalOptions = new MongoDbJournalOptions(true)
{
UseWriteTransaction = false
};
var snapshotOptions = new MongoDbSnapshotOptions(true)
{
UseWriteTransaction = false
};
1.5.0 March 03 2023
1.4.48 January 24 2023
1.4.40 July 27 2022
- Bump Akka.NET to 1.4.40
- Fix HighestSequenceNr query not returning proper value
- Bump MongoDb.Driver to 2.17.0
1.4.40-RC1 July 1 2022
1.4.39 June 6 2022
- Bump Akka.NET version to 1.4.39
- Fix compatibility with Akka.Cluster.Sharding in persistence mode
- Bump MongoDb.Driver to 2.15.1
- Fix BsonTimestamp causes NRE to be thrown
1.4.38-beta2 May 27 2022
- Fix compatibility with Akka.Cluster.Sharding in persistence mode
- Bump Akka.NET version to 1.4.38
- Bump MongoDb.Driver to 2.15.1
1.4.38-beta1 April 15 2022
1.4.37 April 15 2022
1.4.31 December 21 2021
- Bump Akka.NET version to 1.4.31
- Bump MongoDb.Driver to 2.14.1
- Fix MongoDB InsertManyAsync to support ordering
1.4.25 September 9 2021
1.4.21 July 07 2021
- Bump Akka.NET version to 1.4.21
- Bump MongoDb.Driver to 2.12.4
- Change table auto-initialize default value to true
1.4.19 May 04 2021
Changes:
- 9b61878 Update RELEASE_NOTES.md for 1.5.0.1 release (#353)
- b06cde3 Revert MongoDb.Driver to 2.18.0 to match 1.5.0 (#352)
This list of changes was auto generated.