akkadotnet-code-samples
akkadotnet-code-samples copied to clipboard
Bump Akka.Persistence.Sql.Hosting from 1.5.28 to 1.5.30 in /src/clustering/sharding-sqlserver
Bumps Akka.Persistence.Sql.Hosting from 1.5.28 to 1.5.30.
Release notes
Sourced from Akka.Persistence.Sql.Hosting's releases.
Akka.Persistence.Sql v1.5.30
1.5.30 October 4th 2024
- Bump Akka to 1.5.30
- Bump Akka.Hosting to v1.5.30
- PostgreSql: Use BIGINT for ordering column if PostgreSql version is greater than 10
1.5.28 September 9th 2024
- Bump Akka to 1.5.28
- Bump Akka.Hosting to v1.5.28
- Harden SQL journal and snapshot store against initialization failures
- Cleanup nullability warnings
- [Port Akka.NET #7313: Made DateTime.UtcNow the default timestamp for SnapshotMetadata](akkadotnet/Akka.Persistence.Sql#448)
- Add DataOptions support
Linq2Db DataOptions Support
You can now use DataOptions to set up your persistence journal, read journal, and snapshot store with a new
Akka.Persistence.Sql.HostingAPI.Here is an example of setting up persistence on PostgreSQL using
NpgsqlDataSourceinstead of the previous connection string and provider name setup.var dataSource = new NpgsqlDataSourceBuilder(_myConnectionString).Build();var dataOptions = new DataOptions() .UseDataProvider(DataConnection.GetDataProvider(ProviderName.PostgreSQL, dataSource.ConnectionString)) .UseProvider(ProviderName.PostgreSQL) .UseConnectionFactory((opt) => dataSource.CreateConnection());
var host = new HostBuilder() .ConfigureServices((context, services) => { services.AddAkka("my-system-name", (builder, provider) => { builder.WithSqlPersistence(dataOptions); }); });
1.5.27.1 August 1st 2024
1.5.27 July 30th 2024
... (truncated)
Commits
fff29d1Update RELEASE_NOTES.md for 1.5.30 release (#483)60195a4build(deps): bump Akka.Persistence.SqlServer, Akka.Persistence and Akka (#481)1ef075fUpdate RELEASE_NOTES.md for 1.5.29 (#477)7a728c4build(deps): bump Akka.Persistence.Redis from 1.5.24 to 1.5.29 (#476)72dd61cbuild(deps): bump Akka.Persistence.SqlServer from 1.5.28 to 1.5.29 (#473)6a8b5d2Bump AkkaVersion and AkkaHostingVersion to 1.5.29 (#468)bfcb1e4build(deps): bump Npgsql from 8.0.3 to 8.0.4 (#461)8e96d67build(deps): bump jetbrains.resharper.globaltools (#458)b0eba14build(deps): bump Akka.Persistence.SqlServer from 1.5.15 to 1.5.28 (#462)07c414fbuild(deps): bump FluentAssertions from 6.12.0 to 6.12.1 (#460)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)