Skip to content

Commit b3834f9

Browse files
Update RELEASE_NOTES.md for 1.5.52 release (#671)
1 parent 33fc3f0 commit b3834f9

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

Directory.Build.props

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
22
<PropertyGroup>
33
<Copyright>Copyright © 2013-2025 Akka.NET Team</Copyright>
44
<Authors>Akka.NET Team</Authors>
5-
<VersionPrefix>1.5.51.1</VersionPrefix>
6-
<PackageReleaseNotes>**Bug Fixes**
7-
* [Fix journal health check registration without event adapters](https://github.com/akkadotnet/Akka.Hosting/pull/667) - resolved [issue #666](https://github.com/akkadotnet/Akka.Hosting/issues/666) where journal health checks were not being registered when using `.WithHealthCheck()` without adding event adapters</PackageReleaseNotes>
5+
<VersionPrefix>1.5.52</VersionPrefix>
6+
<PackageReleaseNotes>**API Changes**
7+
* [Deprecate JournalOptions.Adapters property in favor of callback API](https://github.com/akkadotnet/Akka.Hosting/pull/669) - resolved [issue #665](https://github.com/akkadotnet/Akka.Hosting/issues/665) by deprecating the `JournalOptions.Adapters` property. Users should migrate to the unified callback pattern: `builder.WithJournal(options, journal =&gt; journal.AddWriteEventAdapter&lt;T&gt;(...))`. The deprecated property will be removed in v1.6.0.
8+
9+
**Updates**
10+
* [Bump Akka version from 1.5.51 to 1.5.52](https://github.com/akkadotnet/akka.net/releases/tag/1.5.52)</PackageReleaseNotes>
811
<PackageIcon>akkalogo.png</PackageIcon>
912
<PackageProjectUrl>
1013
https://github.com/akkadotnet/Akka.Hosting
@@ -46,4 +49,4 @@
4649
<IncludeSymbols>true</IncludeSymbols>
4750
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
4851
</PropertyGroup>
49-
</Project>
52+
</Project>

RELEASE_NOTES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
#### 1.5.52 October 9th 2025 ####
2+
3+
**API Changes**
4+
* [Deprecate JournalOptions.Adapters property in favor of callback API](https://github.com/akkadotnet/Akka.Hosting/pull/669) - resolved [issue #665](https://github.com/akkadotnet/Akka.Hosting/issues/665) by deprecating the `JournalOptions.Adapters` property. Users should migrate to the unified callback pattern: `builder.WithJournal(options, journal => journal.AddWriteEventAdapter<T>(...))`. The deprecated property will be removed in v1.6.0.
5+
6+
**Updates**
7+
* [Bump Akka version from 1.5.51 to 1.5.52](https://github.com/akkadotnet/akka.net/releases/tag/1.5.52)
8+
19
#### 1.5.51.1 October 2nd 2025 ####
210

311
**Bug Fixes**

0 commit comments

Comments
 (0)