Skip to content

Commit fe6fa8d

Browse files
authored
Update RELEASE_NOTES.md for 1.5.31 release (#7384)
* Update RELEASE_NOTES.md for 1.5.31 release * Add missing mention, fix wrong date
1 parent fb526e5 commit fe6fa8d

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

RELEASE_NOTES.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
#### 1.5.31 November 11th 2024 ####
2+
3+
Akka.NET v1.5.31 is a maintenance release that addresses several bugs and added new features.
4+
5+
* [Persistence: Add logging for failed DeleteAsync() that was caused by failed SaveSnapshot()](https://github.com/akkadotnet/akka.net/pull/7360)
6+
* [Persistence: Fix RecoveryTick timer leak](https://github.com/akkadotnet/akka.net/pull/7343)
7+
* [Serialization.Hyperion: Fix serializer config bug](https://github.com/akkadotnet/akka.net/pull/7364)
8+
* [Sharding: Fix potential `ArgumentException` during shard re-balancing](https://github.com/akkadotnet/akka.net/pull/7367)
9+
* [Cluster: Fix multiple `Member` with the same `Address` crashing `ClusterDaemon`](https://github.com/akkadotnet/akka.net/pull/7371)
10+
* [Core: Fix `Stash` filtering out identical `Envelope`s](https://github.com/akkadotnet/akka.net/pull/7375)
11+
* [Streams: Fix `ShellRegistered` message deadletter log](https://github.com/akkadotnet/akka.net/pull/7376)
12+
* [Sharding: Make lease release in `Shard.PostStop` be blocking instead of using detached async task](https://github.com/akkadotnet/akka.net/pull/7383)
13+
* [Cluster.Tools: Add missing singleton detection feature for easier infrastructure debugging](https://github.com/akkadotnet/akka.net/pull/7363)
14+
15+
**Upgrade Advisory**
16+
17+
There is a slight change in how actor `Stash` behavior. In previous behavior, `Stash` will 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.
18+
19+
This change will affect `Akka.Persistence` users or users who use the `Stash.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.
20+
21+
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 the `IEquatable` interface.
22+
23+
To [see the full set of changes in Akka.NET v1.5.31, click here](https://github.com/akkadotnet/akka.net/milestone/114?closed=1).
24+
25+
2 contributors since release 1.5.30
26+
27+
| COMMITS | LOC+ | LOC- | AUTHOR |
28+
|---------|------|------|---------------------|
29+
| 9 | 627 | 154 | Gregorius Soedharmo |
30+
| 4 | 133 | 40 | Aaron Stannard |
31+
132
#### 1.5.30 October 1st 2024 ####
233

334
Akka.NET v1.5.29 introduced an interface change on the `IScheduler` that unfortunately caused a lot of other plugins to break due to API compatibility issues. v1.5.30 rolls back that change but still fixes the underlying bug in Akka.Persistence's handling and serialziation of timestamps without any interface changes. v1.5.29 will be deprecated from NuGet.

0 commit comments

Comments
 (0)