Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -305,3 +305,4 @@ __pycache__/
*.btm.cs
*.odx.cs
*.xsd.cs
/.claude
26 changes: 19 additions & 7 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,24 @@
<PropertyGroup>
<Copyright>Copyright © 2013-$([System.DateTime]::Now.Year) Akka.NET Team</Copyright>
<Authors>Akka.NET Team</Authors>
<VersionPrefix>1.5.37</VersionPrefix>
<PackageReleaseNotes>* Update to [Akka.NET v1.5.37](https://github.com/akkadotnet/akka.net/releases/tag/1.5.35)
* Update to [Akka.Hosting v1.5.37](https://github.com/akkadotnet/Akka.Hosting/releases/tag/1.5.35)
* [Revert: Bump all Microsoft.Extensions.* dependency to 8.0.x](https://github.com/akkadotnet/Akka.Management/pull/3105)
* [Bump Azure.Identity to 1.13.2](https://github.com/akkadotnet/Akka.Management/pull/3076)
* [Bump Grpc.Tools to 2.69.0](https://github.com/akkadotnet/Akka.Management/pull/3050)</PackageReleaseNotes>
<VersionPrefix>1.5.48</VersionPrefix>
<PackageReleaseNotes>**Major Feature: Akka.Discovery.Dns**

This release introduces the new [**Akka.Discovery.Dns** module](https://github.com/akkadotnet/Akka.Management/tree/dev/src/discovery/dns/Akka.Discovery.Dns), providing native DNS-based service discovery for Akka.NET clusters! This powerful addition enables:

* **DNS-based Service Discovery**: Automatically discover Akka.NET nodes using DNS SRV and A records
* **Cloud-Native Integration**: Seamlessly integrate with Kubernetes DNS, Azure DNS, AWS Route 53, and other DNS providers
* **Zero-Configuration Discovery**: Works out-of-the-box with standard DNS infrastructure
* **Cluster Bootstrap Support**: Full integration with Akka.Management cluster bootstrap for automatic cluster formation

The DNS discovery mechanism is ideal for containerized environments, cloud deployments, and any infrastructure with DNS-based service registration.

**Other Improvements:**

* Update to [Akka.NET v1.5.48](https://github.com/akkadotnet/akka.net/releases/tag/1.5.48)
* Update to [Akka.Hosting v1.5.48](https://github.com/akkadotnet/Akka.Hosting/releases/tag/1.5.48)
* [Make AWS ECS Service discovery mechanism public and non-sealed for extensibility](https://github.com/akkadotnet/Akka.Management/pull/3375) - AWS ECS discovery can now be extended and customized
* [Bump Azure.Identity dependencies](https://github.com/akkadotnet/Akka.Management/pull/3373)</PackageReleaseNotes>
<PackageIconUrl>https://getakka.net/images/akkalogo.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/akkadotnet/Akka.Management</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
Expand Down Expand Up @@ -50,4 +62,4 @@
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
</Project>
</Project>
Loading