Update RELEASE_NOTES.md for 1.5.31 release#7384
Merged
Aaronontheweb merged 2 commits intoakkadotnet:devfrom Nov 11, 2024
Merged
Update RELEASE_NOTES.md for 1.5.31 release#7384Aaronontheweb merged 2 commits intoakkadotnet:devfrom
Aaronontheweb merged 2 commits intoakkadotnet:devfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
1.5.31 November 11th 2024
Akka.NET v1.5.31 is a maintenance release that addresses several bugs and added new features.
ArgumentExceptionduring shard re-balancingStashfiltering out identicalEnvelopesShellRegisteredmessage deadletter logShard.PostStopbe blocking instead of using detached async taskUpgrade Advisory
There is a slight change in how actor
Stashbehavior. In previous behavior,Stashwill filter out any messages that are identical (see explanation below) when it is prepended with another. It will not do so now, which is the actual intended behavior.This change will affect
Akka.Persistenceusers or users who use theStash.Prepend()method in their code. You will need to add a de-duplication code if your code depends on sending identical messages multiple times to a persistence actor while it is recovering.Messages are considered as identical if they are sent from the same sender actor and have a payload message that
Equals()to true against another message. Example payload types would be an object pointing to the same memory address (ReferenceEquals()returns true), value types (enum, primitives, structs), and classes that implements theIEquatableinterface.To see the full set of changes in Akka.NET v1.5.31, click here.
2 contributors since release 1.5.30