Skip to content

Commit

Permalink
Update RELEASE_NOTES.md for 1.5.1 release (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkatufus authored Mar 16, 2023
1 parent 0d9fbcd commit 346e028
Showing 1 changed file with 43 additions and 1 deletion.
44 changes: 43 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,48 @@
#### 1.5.1 March 16 2023 ####

* [Update Akka.NET v1.5.1](https://github.com/akkadotnet/akka.net/releases/tag/1.5.1)
* [Bump Azure.Storage.Blobs to 12.15.0](https://github.com/petabridge/Akka.Persistence.Azure/pull/287)
* [Add multi journal support](https://github.com/petabridge/Akka.Persistence.Azure/pull/272)

**Multi Journal Support**

You can now add more than one Akka.Persistence.Azure settings and use them singularly for different Akka plugins.

In the example below, we set up two separate journal options with two distinct identifier, one is being used as default persistence plugin, and the other are being used as the journal for cluster sharding.

```csharp
var persistenceJournal = new AzureTableStorageJournalOptions(true)
{
Identifier = "azure-journal",
ConnectionString = connectionString
};
var shardJournal = new AzureTableStorageJournalOptions(false)
{
Identifier = "azure-shard-journal",
ConnectionString = shardConnectionString
};
builder
.WithClustering()
.WithAzureTableJournal(persistenceJournal)
.WithAzureTableJournal(shardJournal)
.WithAzureBlobsSnapshotStore(new AzureBlobSnapshotOptions
{
ConnectionString = connectionString
})
.WithShardRegion<ShardRegionKey>(
"region-1",
Customer.Props,
new MessageExtractor(10),
new ShardOptions
{
JournalOptions = shardJournal,
StateStoreMode = StateStoreMode.Persistence
});
```

#### 1.5.0 March 02 2023 ####

* [Targets Akka.NET v1.5.0](https://github.com/akkadotnet/akka.net/releases/tag/1.4.43)
* [Targets Akka.NET v1.5.0](https://github.com/akkadotnet/akka.net/releases/tag/1.5.0)
* [Targets Akka.Hosting v1.5.0](https://github.com/akkadotnet/Akka.Hosting/releases/tag/1.5.0)

#### 0.9.2 September 27 2022 ####
Expand Down

0 comments on commit 346e028

Please sign in to comment.