Bump Akka.Hosting from 1.5.31.1 to 1.5.48 #293
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updated Akka.Hosting from 1.5.31.1 to 1.5.48.
Release notes
Sourced from Akka.Hosting's releases.
1.5.48
1.5.48 August 22nd 2025
This release does not include the new healthcheck feature introduced in Akka.Hosting 1.5.47-beta1.
1.5.47-beta1
1.5.47-beta1 July 24th 2025
Introduces new health check functionality and completey replaces Akka.HealthChecks
Problems with Akka.HealthChecks
There are a few major problems with Akka.HealthChecks:
How This Feature Solves Them
HealthCheckService.HealthCheckService- if you call any of theWithHealthCheckoverloads on theAkkaConfigurationBuilder, those types will automatically be registered with theMicrosoft.Extensions.Diagnostics.HealthChecks.HealthCheckServiceand they will "just work." No additional API calls required - happens automatically.ActorSystemliveness check - if it's dead, the check fails. And an Akka.Cluster "have we joined the cluster yet?" readiness check.These are not enabled by default - you have to opt-in to turning them on.
You can see what the outputs of this look like by running:
This will expose the output of both of these healthchecks as pretty-printed JSON at http://localhost:5000/healthz
{ "status": "Healthy", "totalDuration": "00:00:00.0002317", "checks": [ { "name": "ActorSystem Available", "status": "Healthy", "duration": "00:00:00.0000138", "description": "ActorSystem is running.", "tags": [ "akka" ], "data": {} }, { "name": "cluster.join", "status": "Healthy", "duration": "00:00:00.0000248", "description": "Successfully joined Akka.NET cluster after [0:00:06.3427821].", "tags": [ "ready", ... (truncated) ## 1.5.46 #### 1.5.46 July 17th 2025 #### * [Bump AkkaVersion from 1.5.45 to 1.5.46](https://github.com/akkadotnet/akka.net/releases/tag/1.5.46) ## 1.5.45 #### 1.5.45 July 7th 2025 #### * [Bump AkkaVersion from 1.5.44 to 1.5.45](https://github.com/akkadotnet/akka.net/releases/tag/1.5.45) ## 1.5.44 #### 1.5.44 June 23rd 2025 #### * [Bump AkkaVersion from 1.5.40 to 1.5.44](https://github.com/akkadotnet/akka.net/releases/tag/1.5.44) * [Add persistence testkit support](https://github.com/akkadotnet/Akka.Hosting/pull/610) ## 1.5.42 #### 1.5.42 May 21st 2025 #### * [Bump AkkaVersion from 1.5.40 to 1.5.42](https://github.com/akkadotnet/akka.net/releases/tag/1.5.42) * [Fix `.WithDistributedData()` to start `DistributedDataProvider` automatically](https://github.com/akkadotnet/Akka.Hosting/pull/597) ## 1.5.40 #### 1.5.40 March 24th 2025 #### * [Bump AkkaVersion from 1.5.39 to 1.5.40](https://github.com/akkadotnet/akka.net/releases/tag/1.5.40) ## 1.5.39 #### 1.5.39 March 17th 2025 #### * [Bump AkkaVersion from 1.5.38 to 1.5.39](https://github.com/akkadotnet/akka.net/releases/tag/1.5.39) ## 1.5.38 #### 1.5.38 February 17th 2025 #### * [Bump AkkaVersion from 1.5.37 to 1.5.38](https://github.com/akkadotnet/akka.net/releases/tag/1.5.38) ## 1.5.37.2 #### 1.5.37.2 February 5th 2024 #### * [Akka.Hosting.TestKit: Fixed issue with `xUnitLogger` throwing `NotImplementedException` when used with scoped logging](https://github.com/akkadotnet/Akka.Hosting/pull/570). ## 1.5.37.1 #### 1.5.37 January 23rd 2025 #### Moving all of our BCL dependencies to 8.0 created issues for our .NET 6-9 users when adopting Akka.NET packages that only targeted .NET Standard, so for the time being we're normalizing everything back to 6.0 * [Bump Akka.NET to 1.5.37](https://github.com/akkadotnet/akka.net/releases/tag/1.5.37) ## 1.5.37 #### 1.5.37 January 23rd 2025 #### Moving all of our BCL dependencies to 8.0 created issues for our .NET 6-9 users when adopting Akka.NET packages that only targeted .NET Standard, so for the time being we're normalizing everything back to 6.0 * [Bump Akka.NET to 1.5.37](https://github.com/akkadotnet/akka.net/releases/tag/1.5.37) ## 1.5.36 #### 1.5.36 January 22nd 2025 #### * [Bump Akka.NET to 1.5.36](https://github.com/akkadotnet/akka.net/releases/tag/1.5.36) ## 1.5.35 #### 1.5.35 January 13th 2025 #### * [Bump Akka.NET to 1.5.35](https://github.com/akkadotnet/akka.net/releases/tag/1.5.35) * [Bump Microsoft.Extensions.* packages to 8.0.X](https://github.com/akkadotnet/Akka.Hosting/pull/553) * [Bump Microsoft.Bcl.AsyncInterfaces to 8.0.X](https://github.com/akkadotnet/Akka.Hosting/pull/553) * [Bump System.Text.Json to 8.0.X](https://github.com/akkadotnet/Akka.Hosting/pull/553) ## 1.5.34 #### 1.5.34 January 7th 2025 #### * [Bump Akka.NET to 1.5.34](https://github.com/akkadotnet/akka.net/releases/tag/1.5.34) ## 1.5.33 #### 1.5.33 December 24th 2024 #### * [Bump Akka.NET to 1.5.33](https://github.com/akkadotnet/akka.net/releases/tag/1.5.33) * Resolved `nullability` issues with Akka.Hosting.TestKit APIs ## 1.5.32 #### 1.5.32 December 4th 2024 #### * [Bump Akka.NET to 1.5.32](https://github.com/akkadotnet/akka.net/releases/tag/1.5.32) * [Cluster: Add global scoped DData setting extension method](https://github.com/akkadotnet/Akka.Hosting/pull/527) * [Core: Fix CVE-2024-43485](https://github.com/akkadotnet/Akka.Hosting/pull/529) Commits viewable in [compare view](https://github.com/akkadotnet/Akka.Hosting/compare/1.5.31.1...1.5.48). </details> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>