|
1 |
| -#### 1.5.7-beta1 May 9th 2023 #### |
| 1 | +#### 1.5.7 May 17th 2023 #### |
2 | 2 |
|
3 |
| -*Placeholder for nightlies* |
| 3 | +Akka.NET v1.5.7 is a significant release that introduces a [major new reliable message delivery feature to Akka.NET and Akka.Cluster.Sharding](https://getakka.net/articles/actors/reliable-delivery.html): `Akka.Delivery`. |
| 4 | + |
| 5 | +**`Akka.Delivery`** |
| 6 | + |
| 7 | +Akka.Delivery is a reliable delivery system that leverages built-in actors, serialization, and persistence to help guarantee that all messages sent from one producer to one consumer will be delivered, in-order, even across process restarts / actor restarts / network outages. |
| 8 | + |
| 9 | +Akka.Delivery's functionality is divded across four libraries: |
| 10 | + |
| 11 | +* Akka - defines the base definitions for all messages, the `ProducerController` type, and the `ConsumerController` type; |
| 12 | +* Akka.Cluster - contains the serialization definitions for Akka.Delivery; |
| 13 | +* Akka.Persistence - contains the `EventSourcedProducerQueue` implementation, an optional feature that can be used to make the `ProducerController`'s outbound delivery queue persisted to the Akka.Persistence Journal and SnapshotStore; and |
| 14 | +* Akka.Cluster.Sharding - contains the definitions for the `ShardingProducerController` and `ShardingConsumerController`. |
| 15 | + |
| 16 | +We've documented how these features work in the following two detailed articles official website: |
| 17 | + |
| 18 | +* "[Reliable Message Delivery with Akka.Delivery](https://getakka.net/articles/actors/reliable-delivery.html)" |
| 19 | +* "[Reliable Delivery over Akka.Cluster.Sharding](https://getakka.net/articles/clustering/cluster-sharding-delivery.html)" |
| 20 | + |
| 21 | +If you want to see the [full set of changes made in Akka.NET v1.5.7, click here](https://github.com/akkadotnet/akka.net/milestone/86?closed=1). |
| 22 | + |
| 23 | +| COMMITS | LOC+ | LOC- | AUTHOR | |
| 24 | +| --- | --- | --- | --- | |
| 25 | +| 9 | 13972 | 135 | Aaron Stannard | |
| 26 | +| 6 | 92 | 88 | Ebere Abanonu | |
| 27 | +| 4 | 803 | 807 | Simon Cropp | |
| 28 | +| 3 | 70 | 53 | Gregorius Soedharmo | |
| 29 | +| 3 | 3 | 3 | dependabot[bot] | |
4 | 30 |
|
5 | 31 | #### 1.5.6 May 8th 2023 ####
|
6 | 32 |
|
|
0 commit comments