From ef3b6bf9be1c7235a7e4025c846fa3be896e6826 Mon Sep 17 00:00:00 2001 From: Aaron Stannard Date: Fri, 14 Jun 2024 12:56:14 -0500 Subject: [PATCH 1/2] added v1.5.25 release notes --- RELEASE_NOTES.md | 17 +++++++++++++++-- src/Directory.Build.props | 11 +++++++++-- 2 files changed, 24 insertions(+), 4 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 80c6cff1219..eacc5d14608 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,19 @@ -#### 1.5.25 June 7th 2024 #### +#### 1.5.25 June 14th 2024 #### -*Placeholder for nightlies* +Akka.NET v1.5.25 includes a critical bug fix for logging and some other minor fixes. + +**Logging Errors Introduced in v1.5.21** + +Versions [v1.5.21,v1.5.24] are all affected by [Akka.Logging: v1.5.21 appears to have truncated log source, timestamps, etc from all log messages](https://github.com/akkadotnet/akka.net/issues/7255) - this was a bug introduced when we added [the log-filtering feature we shipped in Akka.NET v1.5.21](https://getakka.net/articles/utilities/logging.html#filtering-log-messages). + +This issue has been resolved in v1.5.25 and we've [added regression tests to ensure that the log format gets version-checked just like our APIs going forward](https://github.com/akkadotnet/akka.net/pull/7256). + +Other fixes: + +* [Akka.Router: sending a message to a remote actor via `IScheduledTellMsg` results in serialization error](https://github.com/akkadotnet/akka.net/issues/7247) +* [Akka.Discovery: Make Akka.Discovery less coupled with Akka.Management](https://github.com/akkadotnet/akka.net/issues/7242) + +You can [see the full set of changes for Akka.NET v1.5.25 here](https://github.com/akkadotnet/akka.net/milestones/1.5.25). #### 1.5.24 June 7th 2024 #### diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 070e376362a..c7009787a03 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -2,7 +2,7 @@ Copyright © 2013-2023 Akka.NET Team Akka.NET Team - 1.5.22 + 1.5.25 akkalogo.png https://github.com/akkadotnet/akka.net https://github.com/akkadotnet/akka.net/blob/master/LICENSE @@ -47,7 +47,14 @@ true - Placeholder for nightlies* + Akka.NET v1.5.25 includes a critical bug fix for logging and some other minor fixes. +Logging Errors Introduced in v1.5.21** +Versions [v1.5.21,v1.5.24] are all affected by [Akka.Logging: v1.5.21 appears to have truncated log source, timestamps, etc from all log messages](https://github.com/akkadotnet/akka.net/issues/7255) - this was a bug introduced when we added [the log-filtering feature we shipped in Akka.NET v1.5.21](https://getakka.net/articles/utilities/logging.html#filtering-log-messages). +This issue has been resolved in v1.5.25 and we've [added regression tests to ensure that the log format gets version-checked just like our APIs going forward](https://github.com/akkadotnet/akka.net/pull/7256). +Other fixes: +[Akka.Router: sending a message to a remote actor via `IScheduledTellMsg` results in serialization error](https://github.com/akkadotnet/akka.net/issues/7247) +[Akka.Discovery: Make Akka.Discovery less coupled with Akka.Management](https://github.com/akkadotnet/akka.net/issues/7242) +You can [see the full set of changes for Akka.NET v1.5.25 here](https://github.com/akkadotnet/akka.net/milestones/1.5.25). From be375d2a9838f565f212c9da32dba8f843a57316 Mon Sep 17 00:00:00 2001 From: Aaron Stannard Date: Fri, 14 Jun 2024 12:57:35 -0500 Subject: [PATCH 2/2] added commit numbers --- RELEASE_NOTES.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index eacc5d14608..83028babe52 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -15,6 +15,11 @@ Other fixes: You can [see the full set of changes for Akka.NET v1.5.25 here](https://github.com/akkadotnet/akka.net/milestones/1.5.25). +| COMMITS | LOC+ | LOC- | AUTHOR | +| --- | --- | --- | --- | +| 6 | 347 | 44 | Aaron Stannard | +| 2 | 1197 | 1015 | Gregorius Soedharmo | + #### 1.5.24 June 7th 2024 #### Akka.NET v1.5.24 is a patch release for Akka.NET that addresses CVE-2018-8292 and also adds a quality of life improvement to IActorRef serialization.