Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump Akka.Persistence.PostgreSql, Akka.Persistence and Akka #353

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 14, 2024

Bumps Akka.Persistence.PostgreSql, Akka.Persistence and Akka. These dependencies needed to be updated together.
Updates Akka.Persistence.PostgreSql from 1.5.4.1 to 1.5.15.1

Release notes

Sourced from Akka.Persistence.PostgreSql's releases.

Akka.Persistence.PostgreSql v1.5.15.1

1.5.15.1 January 29 2024

  • Fix Npgsql upper range version number

1.5.15 January 29 2024

1.5.13 October 4 2023

1.5.4.1 April 27 2023

  • Allow all 7.x major versions of Npgsql

1.5.4 April 24 2023

1.5.3 April 21 2023

1.5.2 April 6 2023

1.5.1.1 March 22 2023

  • Update Npgsql to v7.0.2

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:

... (truncated)

Changelog

Sourced from Akka.Persistence.PostgreSql's changelog.

1.5.15.1 January 29 2024

  • Fix Npgsql upper range version number

1.5.15 January 29 2024

1.5.13 October 4 2023

Commits
  • d1a8d88 Update RELEASE_NOTES.md for 1.5.15.1 release (#248)
  • 5a3f9af Update RELEASE_NOTES.md for 1.5.15 release (#246)
  • 3467b61 Bump AkkaVersion and AkkaHostingVersion from 1.5.13 to 1.5.15 (#245)
  • a82c589 Bump xunit.runner.visualstudio from 2.5.1 to 2.5.6 (#243)
  • 365896d Bump xunit from 2.5.1 to 2.6.6 (#244)
  • 3cd6c0a Bump Microsoft.NET.Test.Sdk from 17.7.2 to 17.8.0 (#237)
  • b6f8b2e Allow all 8.x major versions of Npgsql (#242)
  • 423552e Update RELEASE_NOTES.md for 1.5.13 release (#230)
  • 6a733d7 Split Akka.Hosting version from Akka version (#229)
  • ba43dbf Fix accidental Npgsql version upgrade (#228)
  • Additional commits viewable in compare view

Updates Akka.Persistence from 1.5.13 to 1.5.15

Release notes

Sourced from Akka.Persistence's releases.

Akka.NET v1.5.15

1.5.15 January 9th 2024

Akka.NET v1.5.15 is a significant release for Akka.NET with some major feature additions and changes.

Akka.Analyzers

The core Akka NuGet package now references Akka.Analyzers, a new set of Roslyn Code Analysis and Code Fix Providers that we distribute via NuGet. You can see the full set of supported Akka.Analyzers rules here.

Akka.Cluster.Sharding Changes

In #6863 we made some major changes to the Akka.Cluster.Sharding API aimed at helping improve Cluster.Sharding's performance and ease of use. However, these changes may require some effort on the part of the end user in order to take full advantage:

  • ExtractEntityId and ExtractShardId have been deprecated as they fundamentally can't be extended and can't benefit from the performance improvements introduced into Akka.NET v1.5.15. It is imperative that you migrate to using the HashCodeMessageExtractor instead.
  • You no longer need to handle ShardRegion.StartEntity or ShardingEnvelope inside your IMessageExtractor implementations, and in fact AK2001 (part of Akka.Analyzers) will automatically detect this and remove those handlers for you. Akka.NET automatically handles these two message types internally now.

ClusterClient Serialization Changes

In #7032 we solved a long-standing serialization problem with the ClusterClient where Send, SendToAll, and Publish were not handled by the correct internal serializer. This has been fixed by default in Akka.NET v1.5.15, but this can potentially cause wire compatibility problems during upgrades - therefore we have introduced a configuration setting to toggle this:

# re-enable legacy serialization
akka.cluster.client.use-legacy-serialization = on

That setting is currently set to on by default, so v1.5.15 will still behave like previous versions of Akka.NET. However, if you have been affected by serialization issues with the ClusterClient (such as #6803) you should toggle this setting to off.

See "Akka.NET v1.5.15 Upgrade Advisories" for full details on some of the things you might need to do while upgrading to this version of Akka.NET.

You can see the full set of changes for Akka.NET v1.5.15 here.

COMMITS LOC+ LOC- AUTHOR
16 2228 1490 Aaron Stannard
9 9 9 dependabot[bot]
2 610 173 Gregorius Soedharmo
2 337 0 Drew
2 124 118 Lehonti Ramos
1 2 2 Sergey Popov
1 108 25 Yaroslav Paslavskiy
1 1 1 Bert Lamb

... (truncated)

Changelog

Sourced from Akka.Persistence's changelog.

1.5.15 January 9th 2024

Akka.NET v1.5.15 is a significant release for Akka.NET with some major feature additions and changes.

Akka.Analyzers

The core Akka NuGet package now references Akka.Analyzers, a new set of Roslyn Code Analysis and Code Fix Providers that we distribute via NuGet. You can see the full set of supported Akka.Analyzers rules here.

Akka.Cluster.Sharding Changes

In #6863 we made some major changes to the Akka.Cluster.Sharding API aimed at helping improve Cluster.Sharding's performance and ease of use. However, these changes may require some effort on the part of the end user in order to take full advantage:

  • ExtractEntityId and ExtractShardId have been deprecated as they fundamentally can't be extended and can't benefit from the performance improvements introduced into Akka.NET v1.5.15. It is imperative that you migrate to using the HashCodeMessageExtractor instead.
  • You no longer need to handle ShardRegion.StartEntity or ShardingEnvelope inside your IMessageExtractor implementations, and in fact AK2001 (part of Akka.Analyzers) will automatically detect this and remove those handlers for you. Akka.NET automatically handles these two message types internally now.

ClusterClient Serialization Changes

In #7032 we solved a long-standing serialization problem with the ClusterClient where Send, SendToAll, and Publish were not handled by the correct internal serializer. This has been fixed by default in Akka.NET v1.5.15, but this can potentially cause wire compatibility problems during upgrades - therefore we have introduced a configuration setting to toggle this:

# re-enable legacy serialization
akka.cluster.client.use-legacy-serialization = on

That setting is currently set to on by default, so v1.5.15 will still behave like previous versions of Akka.NET. However, if you have been affected by serialization issues with the ClusterClient (such as #6803) you should toggle this setting to off.

See "Akka.NET v1.5.15 Upgrade Advisories" for full details on some of the things you might need to do while upgrading to this version of Akka.NET.

You can see the full set of changes for Akka.NET v1.5.15 here.

COMMITS LOC+ LOC- AUTHOR
16 2228 1490 Aaron Stannard
9 9 9 dependabot[bot]
2 610 173 Gregorius Soedharmo
2 337 0 Drew
2 124 118 Lehonti Ramos
1 2 2 Sergey Popov
1 108 25 Yaroslav Paslavskiy
1 1 1 Bert Lamb

1.5.14 September 24th 2023

... (truncated)

Commits
  • e504c34 added v1.5.15 release notes (#7053)
  • 9d2efe0 [Docs] Adding Akka.NET v1.5.15 upgrade advisories (#7052)
  • f03fc68 troubleshooting ShardingRegion.StartEntity handling changes (#7051)
  • b6a4a5c distribute Akka.Analyzers as transitive dependency through Akka (#7050)
  • 38ad362 Akka.Cluster.Sharding AK2001 cleanup (#7049)
  • 3285197 Bump Microsoft.Data.SQLite from 7.0.13 to 8.0.1 (#7048)
  • 3c16fdc added AK2001 warning docs (#7047)
  • 97323d1 Fix LocalSnapshotStore Metadata Fetch to ensure persistenceid match. (#7040)
  • a2c0df4 Docs: defining Akka.Analyzer rules (#7039)
  • 0486f97 structs in Akka.Streams with exclusively read-only members were made `rea...
  • Additional commits viewable in compare view

Updates Akka from 1.5.13 to 1.5.15

Release notes

Sourced from Akka's releases.

Akka.NET v1.5.15

1.5.15 January 9th 2024

Akka.NET v1.5.15 is a significant release for Akka.NET with some major feature additions and changes.

Akka.Analyzers

The core Akka NuGet package now references Akka.Analyzers, a new set of Roslyn Code Analysis and Code Fix Providers that we distribute via NuGet. You can see the full set of supported Akka.Analyzers rules here.

Akka.Cluster.Sharding Changes

In #6863 we made some major changes to the Akka.Cluster.Sharding API aimed at helping improve Cluster.Sharding's performance and ease of use. However, these changes may require some effort on the part of the end user in order to take full advantage:

  • ExtractEntityId and ExtractShardId have been deprecated as they fundamentally can't be extended and can't benefit from the performance improvements introduced into Akka.NET v1.5.15. It is imperative that you migrate to using the HashCodeMessageExtractor instead.
  • You no longer need to handle ShardRegion.StartEntity or ShardingEnvelope inside your IMessageExtractor implementations, and in fact AK2001 (part of Akka.Analyzers) will automatically detect this and remove those handlers for you. Akka.NET automatically handles these two message types internally now.

ClusterClient Serialization Changes

In #7032 we solved a long-standing serialization problem with the ClusterClient where Send, SendToAll, and Publish were not handled by the correct internal serializer. This has been fixed by default in Akka.NET v1.5.15, but this can potentially cause wire compatibility problems during upgrades - therefore we have introduced a configuration setting to toggle this:

# re-enable legacy serialization
akka.cluster.client.use-legacy-serialization = on

That setting is currently set to on by default, so v1.5.15 will still behave like previous versions of Akka.NET. However, if you have been affected by serialization issues with the ClusterClient (such as #6803) you should toggle this setting to off.

See "Akka.NET v1.5.15 Upgrade Advisories" for full details on some of the things you might need to do while upgrading to this version of Akka.NET.

You can see the full set of changes for Akka.NET v1.5.15 here.

COMMITS LOC+ LOC- AUTHOR
16 2228 1490 Aaron Stannard
9 9 9 dependabot[bot]
2 610 173 Gregorius Soedharmo
2 337 0 Drew
2 124 118 Lehonti Ramos
1 2 2 Sergey Popov
1 108 25 Yaroslav Paslavskiy
1 1 1 Bert Lamb

... (truncated)

Changelog

Sourced from Akka's changelog.

1.5.15 January 9th 2024

Akka.NET v1.5.15 is a significant release for Akka.NET with some major feature additions and changes.

Akka.Analyzers

The core Akka NuGet package now references Akka.Analyzers, a new set of Roslyn Code Analysis and Code Fix Providers that we distribute via NuGet. You can see the full set of supported Akka.Analyzers rules here.

Akka.Cluster.Sharding Changes

In #6863 we made some major changes to the Akka.Cluster.Sharding API aimed at helping improve Cluster.Sharding's performance and ease of use. However, these changes may require some effort on the part of the end user in order to take full advantage:

  • ExtractEntityId and ExtractShardId have been deprecated as they fundamentally can't be extended and can't benefit from the performance improvements introduced into Akka.NET v1.5.15. It is imperative that you migrate to using the HashCodeMessageExtractor instead.
  • You no longer need to handle ShardRegion.StartEntity or ShardingEnvelope inside your IMessageExtractor implementations, and in fact AK2001 (part of Akka.Analyzers) will automatically detect this and remove those handlers for you. Akka.NET automatically handles these two message types internally now.

ClusterClient Serialization Changes

In #7032 we solved a long-standing serialization problem with the ClusterClient where Send, SendToAll, and Publish were not handled by the correct internal serializer. This has been fixed by default in Akka.NET v1.5.15, but this can potentially cause wire compatibility problems during upgrades - therefore we have introduced a configuration setting to toggle this:

# re-enable legacy serialization
akka.cluster.client.use-legacy-serialization = on

That setting is currently set to on by default, so v1.5.15 will still behave like previous versions of Akka.NET. However, if you have been affected by serialization issues with the ClusterClient (such as #6803) you should toggle this setting to off.

See "Akka.NET v1.5.15 Upgrade Advisories" for full details on some of the things you might need to do while upgrading to this version of Akka.NET.

You can see the full set of changes for Akka.NET v1.5.15 here.

COMMITS LOC+ LOC- AUTHOR
16 2228 1490 Aaron Stannard
9 9 9 dependabot[bot]
2 610 173 Gregorius Soedharmo
2 337 0 Drew
2 124 118 Lehonti Ramos
1 2 2 Sergey Popov
1 108 25 Yaroslav Paslavskiy
1 1 1 Bert Lamb

1.5.14 September 24th 2023

... (truncated)

Commits
  • e504c34 added v1.5.15 release notes (#7053)
  • 9d2efe0 [Docs] Adding Akka.NET v1.5.15 upgrade advisories (#7052)
  • f03fc68 troubleshooting ShardingRegion.StartEntity handling changes (#7051)
  • b6a4a5c distribute Akka.Analyzers as transitive dependency through Akka (#7050)
  • 38ad362 Akka.Cluster.Sharding AK2001 cleanup (#7049)
  • 3285197 Bump Microsoft.Data.SQLite from 7.0.13 to 8.0.1 (#7048)
  • 3c16fdc added AK2001 warning docs (#7047)
  • 97323d1 Fix LocalSnapshotStore Metadata Fetch to ensure persistenceid match. (#7040)
  • a2c0df4 Docs: defining Akka.Analyzer rules (#7039)
  • 0486f97 structs in Akka.Streams with exclusively read-only members were made `rea...
  • Additional commits viewable in compare view

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 14, 2024
@Aaronontheweb
Copy link
Member

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/nuget/Akka.Persistence.PostgreSql-and-Akka.Persistence-and-Akka-1.5.15.1 branch from fffd6a6 to 41a3f13 Compare February 22, 2024 13:08
@Arkatufus
Copy link
Contributor

@dependabot recreate

Bumps [Akka.Persistence.PostgreSql](https://github.com/akkadotnet/Akka.Persistence.PostgreSql), [Akka.Persistence](https://github.com/akkadotnet/akka.net) and [Akka](https://github.com/akkadotnet/akka.net). These dependencies needed to be updated together.

Updates `Akka.Persistence.PostgreSql` from 1.5.4.1 to 1.5.15.1
- [Release notes](https://github.com/akkadotnet/Akka.Persistence.PostgreSql/releases)
- [Changelog](https://github.com/akkadotnet/Akka.Persistence.PostgreSql/blob/dev/RELEASE_NOTES.md)
- [Commits](akkadotnet/Akka.Persistence.PostgreSql@1.5.4.1...1.5.15.1)

Updates `Akka.Persistence` from 1.5.13 to 1.5.15
- [Release notes](https://github.com/akkadotnet/akka.net/releases)
- [Changelog](https://github.com/akkadotnet/akka.net/blob/dev/RELEASE_NOTES.md)
- [Commits](akkadotnet/akka.net@1.5.13...1.5.15)

Updates `Akka` from 1.5.13 to 1.5.15
- [Release notes](https://github.com/akkadotnet/akka.net/releases)
- [Changelog](https://github.com/akkadotnet/akka.net/blob/dev/RELEASE_NOTES.md)
- [Commits](akkadotnet/akka.net@1.5.13...1.5.15)

---
updated-dependencies:
- dependency-name: Akka.Persistence.PostgreSql
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Akka.Persistence
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Akka
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/nuget/Akka.Persistence.PostgreSql-and-Akka.Persistence-and-Akka-1.5.15.1 branch from 41a3f13 to a316111 Compare April 18, 2024 20:28
@Arkatufus Arkatufus enabled auto-merge (squash) April 19, 2024 21:14
@Arkatufus Arkatufus merged commit c8f8100 into dev Apr 19, 2024
4 checks passed
@Arkatufus Arkatufus deleted the dependabot/nuget/Akka.Persistence.PostgreSql-and-Akka.Persistence-and-Akka-1.5.15.1 branch April 19, 2024 22:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants