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)