Skip to content

Commit

Permalink
Update RELEASE_NOTES.md for 1.5.24 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkatufus committed Jun 10, 2024
1 parent f67decc commit 7e8efbf
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## [1.5.24] / 11 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<TKey>(
this AkkaConfigurationBuilder builder,
string name,
int numberOfInstances,
Func<ActorSystem, IActorRegistry, IDependencyResolver, Func<int, Props>> entityPropsFactory,
ClusterDaemonOptions? options = null)
```

```csharp
public static AkkaConfigurationBuilder WithShardedDaemonProcessProxy<TKey>(
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)
Expand Down

0 comments on commit 7e8efbf

Please sign in to comment.