Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Oct 28, 2025

Updated Akka.Persistence.Azure from 1.5.51.1 to 1.5.55.

Release notes

Sourced from Akka.Persistence.Azure's releases.

1.5.55

1.5.55 October 27 2025

This release adds proactive connectivity health checks for Azure persistence backends, implementing the feature requested in Akka.Hosting#​678.

New Features:

Connectivity checks are now available for both Azure Table Storage journal and Azure Blob Storage snapshot store. These are opt-in health checks that proactively verify backend connectivity regardless of recent operation activity, helping detect database outages during idle periods.

Improved API:

With Akka.Hosting 1.5.55.1, the connectivity check API has been simplified. Options are now automatically accessed from the builder, eliminating redundant parameter passing.

Usage Example:

var journalOptions = new AzureTableStorageJournalOptions(isDefault: true)
{
    ConnectionString = connectionString,
    TableName = "akkajournal",
    AutoInitialize = true
};

var snapshotOptions = new AzureBlobSnapshotOptions(isDefault: true)
{
    ConnectionString = connectionString,
    ContainerName = "akka-snapshots",
    AutoInitialize = true
};

builder
    .WithAzureTableJournal(journalOptions, journal =>
    {
        journal.WithConnectivityCheck(); // Simplified API!
    })
    .WithAzureBlobsSnapshotStore(snapshotOptions, snapshot =>
    {
        snapshot.WithConnectivityCheck(); // Simplified API!
    });

The connectivity checks support all Azure SDK connection methods (connection string, ServiceUri + TokenCredential, and factory methods) and include proper tagging for filtering in health check endpoints.

Backward Compatibility:

The old API signature (passing options explicitly) is still supported for backward compatibility with older versions of Akka.Hosting.

... (truncated)

1.5.53

What's Changed

Full Changelog: petabridge/Akka.Persistence.Azure@1.5.51.1...1.5.53

Commits viewable in compare view.

Dependabot compatibility score

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 commands and options

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)

---
updated-dependencies:
- dependency-name: Akka.Persistence.Azure
  dependency-version: 1.5.55
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Oct 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant