From 923bc7fba3744f39a172760c06f7c0d72462d8b6 Mon Sep 17 00:00:00 2001 From: Gregorius Soedharmo Date: Tue, 11 Jun 2024 00:28:25 +0700 Subject: [PATCH] Update RELEASE_NOTES.md for 1.5.24 release (#465) * Update RELEASE_NOTES.md for 1.5.24 release * fix release date --- RELEASE_NOTES.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 816e6a16..b280a52e 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,27 @@ +## [1.5.24] / 10 June 2024 + +* [Update Akka.NET to 1.5.24](https://github.com/akkadotnet/akka.net/releases/tag/1.5.24) +* [Add ShardedDaemonProcess integration](https://github.com/akkadotnet/Akka.Hosting/pull/463) + +You can now start `ShardedDaemonProcess` host and proxy using Akka.Hosting through 2 new _Akka.Cluster.Hosting_ extension methods + +```csharp +public static AkkaConfigurationBuilder WithShardedDaemonProcess( + this AkkaConfigurationBuilder builder, + string name, + int numberOfInstances, + Func> entityPropsFactory, + ClusterDaemonOptions? options = null) +``` + +```csharp +public static AkkaConfigurationBuilder WithShardedDaemonProcessProxy( + this AkkaConfigurationBuilder builder, + string name, + int numberOfInstances, + string role) +``` + ## [1.5.22] / 4 June 2024 * [Update Akka.NET to 1.5.22](https://github.com/akkadotnet/akka.net/releases/tag/1.5.22)