From 2485be5fe6e5d6457a4ac23641bce4addcfb0db0 Mon Sep 17 00:00:00 2001 From: Gregorius Soedharmo Date: Thu, 5 Sep 2024 00:21:08 +0700 Subject: [PATCH 1/2] Initial commit, waiting for PR merges --- RELEASE_NOTES.md | 21 +++++++++++++++++++++ src/Akka.sln | 1 + 2 files changed, 22 insertions(+) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index b7b34fd4021..ab50d9a9b86 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,24 @@ +#### 1.5.28 September 5th 2024 #### + +Akka.NET v1.5.28 is a release with several bug fixes and improvements. + +* [Singleton: Fix oldest member transition log message](https://github.com/akkadotnet/akka.net/pull/7309) +* [Core: Make ITimeProvider injectable into consuming classes](https://github.com/akkadotnet/akka.net/pull/7314) +* [Singleton: Fix ClusterSingletonProxy failed to re-acquire singleton actor](https://github.com/akkadotnet/akka.net/pull/7315) +* [Persistence: Make DateTime.UtcNow the default SnapshotMetadata timestamp](https://github.com/akkadotnet/akka.net/pull/7313) +* [Remote.TestKit: Improve diagnostics and code modernization](https://github.com/akkadotnet/akka.net/pull/7321) +* [Persistence.TestKit: Add new ConnectionInterceptor and improve usability](https://github.com/akkadotnet/akka.net/pull/7324) +* [Sharding: Disable durable DData if RememberEntity does not use DData storage](https://github.com/akkadotnet/akka.net/pull/7327) +* [Persistence.Sql.Common: Harden journal and snapshot store initialization](https://github.com/akkadotnet/akka.net/pull/7325) +* [Streams: Fix missing AlsoTo public API in Flow, SubFlow, and Source](https://github.com/akkadotnet/akka.net/pull/7325) +* [Streams: Fix StreamRefSerializer NRE bug](https://github.com/akkadotnet/akka.net/pull/7333) +* [Persistence: Fix SnapshotStore.SaveSnapshot metadata timestamp bug](https://github.com/akkadotnet/akka.net/pull/7334) +* [Persistence.TCK: Add new optional SnapshotStore save data integrity spec](https://github.com/akkadotnet/akka.net/pull/7335) + +To [see the full set of changes in Akka.NET v1.5.28, click here](https://github.com/akkadotnet/akka.net/milestone/110?closed=1). + + + #### 1.5.28-beta1 August 23rd 2024 #### Akka.NET v1.5.28-beta1 is a patch beta release with several bug fixes and improvements. diff --git a/src/Akka.sln b/src/Akka.sln index 76ff9971bc7..1a5c4253abc 100644 --- a/src/Akka.sln +++ b/src/Akka.sln @@ -58,6 +58,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{10C5B1E8 ..\build.fsx = ..\build.fsx Directory.Build.props = Directory.Build.props NuGet.Config = NuGet.Config + ..\RELEASE_NOTES.md = ..\RELEASE_NOTES.md EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Contrib", "Contrib", "{588C1513-FAB6-42C3-B6FC-3485F13620CF}" From ff0ea8eab8cdc7d8fb4e8d7ddb716cc11ca34cdf Mon Sep 17 00:00:00 2001 From: Gregorius Soedharmo Date: Thu, 5 Sep 2024 01:09:49 +0700 Subject: [PATCH 2/2] add contributor table --- RELEASE_NOTES.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index ab50d9a9b86..d3aee3beec5 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -17,7 +17,12 @@ Akka.NET v1.5.28 is a release with several bug fixes and improvements. To [see the full set of changes in Akka.NET v1.5.28, click here](https://github.com/akkadotnet/akka.net/milestone/110?closed=1). +2 contributors since release 1.5.27.1 +| COMMITS | LOC+ | LOC- | AUTHOR | +|---------|------|------|---------------------| +| 10 | 5318 | 5153 | Aaron Stannard | +| 8 | 1568 | 158 | Gregorius Soedharmo | #### 1.5.28-beta1 August 23rd 2024 ####