Skip to content

Bump Akka.Persistence.Sql.Hosting from 1.5.37 to 1.5.67#4

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/nuget/src/Akka.Persistence.Sql.Hosting-1.5.67
Open

Bump Akka.Persistence.Sql.Hosting from 1.5.37 to 1.5.67#4
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/nuget/src/Akka.Persistence.Sql.Hosting-1.5.67

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 21, 2026

Copy link
Copy Markdown

Updated Akka.Persistence.Sql.Hosting from 1.5.37 to 1.5.67.

Release notes

Sourced from Akka.Persistence.Sql.Hosting's releases.

1.5.67

1.5.67 April 28th 2026

Changes:

  • 221943384cd7f61eaaf979411344f669709e6ae4 Update RELEASE_NOTES.md for 1.5.67 release (#​588)
  • 6c02bce834f38d245068f83a7ebc58c37a26d82d Bump AkkaHostingVersion from 1.5.65 to 1.5.67 (#​587)
  • a26352c8dcf49c510d08e52d607dadc54c3d8597 Bump AkkaVersion to 1.5.67 and AkkaHostingVersion to 1.5.65 (#​586)
  • 14713945ff92861b06969070e96b5954b932e1dd Bump AkkaVersion and AkkaHostingVersion to 1.5.64 (#​584)

This list of changes was auto generated.

1.5.62

1.5.62 March 26th 2026

Changes:

  • c41d3953722aca5b2129f8a815759aa218780133 Update RELEASE_NOTES.md for 1.5.62 release (#​583)
  • 6a0909628ae57e869035a8cc86048bc7c357f59f Bump AkkaVersion and AkkaHostingVersion to 1.5.62 (#​582)
  • ca9187730045735df76e8be909df63b67a047a08 Merge pull request #​581 from Arkatufus/Fix-SqlServer-2016-TagTable-compatibility
  • 35a5db02320a2d8878dc3217df625b6c2230bdbc Extract only latest release block for GitHub release body (#​578)

This list of changes was auto generated.

1.5.60.1

1.5.60.1 February 14th 2026

1.5.59 January 26th 2026

1.5.55.1 October 29th 2025

Improved API

This release introduces the simplified Akka.Hosting 1.5.55.1 API for connectivity health checks, eliminating redundant parameter passing:

New Simplified API (Recommended):

journalBuilder: journal =>
{
    journal.WithConnectivityCheck(); // Options automatically accessed from builder
}

Previous API (Still Supported):

journalBuilder: journal =>
{
    journal.WithConnectivityCheck(journalOptions); // Explicit parameter passing
}

The new API automatically accesses options from builder.Options, making the code cleaner and less error-prone. The previous API is marked as [Obsolete] but remains functional for backward compatibility.

  • Update WithConnectivityCheck() extension methods to use simplified Akka.Hosting 1.5.55.1 API pattern
  • Add comprehensive integration tests for simplified API
  • Update documentation with examples for both API styles

1.5.55 October 26th 2025

Adds new WithConnectivityCheck() methods for proactive database connectivity verification with customizable tags. Supports all database providers (SQL Server, PostgreSQL, MySQL, SQLite).

1.5.53 October 14th 2025

Critical Bug Fix
... (truncated)

1.5.59

1.5.59 January 26th 2026

1.5.55.1 October 29th 2025

Improved API

This release introduces the simplified Akka.Hosting 1.5.55.1 API for connectivity health checks, eliminating redundant parameter passing:

New Simplified API (Recommended):

journalBuilder: journal =>
{
    journal.WithConnectivityCheck(); // Options automatically accessed from builder
}

Previous API (Still Supported):

journalBuilder: journal =>
{
    journal.WithConnectivityCheck(journalOptions); // Explicit parameter passing
}

The new API automatically accesses options from builder.Options, making the code cleaner and less error-prone. The previous API is marked as [Obsolete] but remains functional for backward compatibility.

  • Update WithConnectivityCheck() extension methods to use simplified Akka.Hosting 1.5.55.1 API pattern
  • Add comprehensive integration tests for simplified API
  • Update documentation with examples for both API styles

1.5.55 October 26th 2025

Adds new WithConnectivityCheck() methods for proactive database connectivity verification with customizable tags. Supports all database providers (SQL Server, PostgreSQL, MySQL, SQLite).

1.5.53 October 14th 2025

Critical Bug Fix

This release fixes a critical regression introduced in v1.5.51.1 where IWriteEventAdapter and IReadEventAdapter instances were not being applied when loading events using BySequenceNr queries. This caused event tagging and other event adapter functionality to fail in production scenarios.

1.5.55.1

1.5.55.1 October 29th 2025

Improved API

This release introduces the simplified Akka.Hosting 1.5.55.1 API for connectivity health checks, eliminating redundant parameter passing:

New Simplified API (Recommended):

journalBuilder: journal =>
{
    journal.WithConnectivityCheck(); // Options automatically accessed from builder
}

Previous API (Still Supported):

journalBuilder: journal =>
{
    journal.WithConnectivityCheck(journalOptions); // Explicit parameter passing
}

The new API automatically accesses options from builder.Options, making the code cleaner and less error-prone. The previous API is marked as [Obsolete] but remains functional for backward compatibility.

  • Update WithConnectivityCheck() extension methods to use simplified Akka.Hosting 1.5.55.1 API pattern
  • Add comprehensive integration tests for simplified API
  • Update documentation with examples for both API styles

Changes:

  • adc37425266a1e6da38f080e3f26f740080461e4 Delete CONNECTIVITY_HEALTH_CHECKS_REPORT.md
  • 1a135d79afe3005c793b89b5184453409aa5245a Implement simplified connectivity health check API (#​563)

This list of changes was auto generated.

1.5.55

1.5.55 October 26th 2025

Adds new WithConnectivityCheck() methods for proactive database connectivity verification with customizable tags. Supports all database providers (SQL Server, PostgreSQL, MySQL, SQLite).

Changes:

  • ef75bc986ae83910386d5f04a22684a2b9f96eb4 Prepare v1.5.55 release (#​561)
  • 10f8a538d649e941e7e167e104a1f3b79e296669 Upgrade to Akka.Hosting v1.5.55 stable (#​560)
  • 4ca79e7a1cb330a24f3a93b0fce41af40b07dc7a Add customizable tags parameter to health check methods (#​559)
  • 23780145c5f0716576e46a6cf5c491e54adaf3af Add SQL connectivity health checks for all database providers (#​558) [ #​678 ]

This list of changes was auto generated.

1.5.53

1.5.53 October 14th 2025

Critical Bug Fix

This release fixes a critical regression introduced in v1.5.51.1 where IWriteEventAdapter and IReadEventAdapter instances were not being applied when loading events using BySequenceNr queries. This caused event tagging and other event adapter functionality to fail in production scenarios.

1.5.51.1 October 2nd 2025

1.5.51 October 1st 2025

1.5.44 June 23rd 2025

1.5.42 May 22nd 2025

1.5.40.1 April 7th 2025

Changes:

  • bb138a3f8a9a6cb39aadc35199d04d8b2cf8d6f8 Update RELEASE_NOTES.md for 1.5.53 release (#​557) [ #​552 ]
  • a3117b7ace05e1d34ca2039ac0893d2abec8a543 Add runtime reproduction test for event adapter regression in v1.5.51.1 (#​554) [ #​552, #​669 ]
  • a63bccd6aa6381105d4c1bd4f7027acc387ee725 Bump AkkaVersion and AkkaHostingVersion to 1.5.53 (#​555)

This list of changes was auto generated.

1.5.51.1

1.5.51.1 October 2nd 2025

1.5.51 October 1st 2025

1.5.44 June 23rd 2025

1.5.42 May 22nd 2025

1.5.40.1 April 7th 2025

Changes:

  • 2756708b92d47cbcb02b584ceee3e680e4b249cf Update RELEASE_NOTES.md for 1.5.51.1 release (#​551)
  • b29602e0a94f3d76960f370b2110b201c6c5158a Fix health check registration in SQL persistence hosting extensions (#​549) [ #​666 ]
  • 01ce9cceb54194e4255d42c679c3afe26dab78db Add Akka.Hosting v1.5.51 health check documentation to README (#​548)

This list of changes was auto generated.

1.5.51

1.5.51 October 1st 2025

1.5.44 June 23rd 2025

1.5.42 May 22nd 2025

1.5.40.1 April 7th 2025

Changes:

  • 097be1d0660d243623dd3ffcc49ecdd5007b2f5c Update RELEASE_NOTES.md for 1.5.51 release (#​547)
  • 4fe066c4f661454b787cff1ce1bb7bcbffd9d671 Update Akka versions to 1.5.51 (#​546)

This list of changes was auto generated.

1.5.44

1.5.44 June 23rd 2025

1.5.42 May 22nd 2025

1.5.40.1 April 7th 2025

Changes:

  • ce74e679451dc5221cd2201721b23dbf41afd899 Update RELEASE_NOTES.md for 1.5.44 release (#​544)
  • a96db076f15076b39fa115649a3c896aed07581d Bump AkkaVersion and AkkaHostingVersion to 1.5.44 (#​543)
  • 723ccad175ebad4c610813027edf11575bc19f38 Add missing using keyword (#​542)
  • c0d6d7a708a6a9fe276b2d05b958882d4259bc3a Improve journal delete performance (#​538)

This list of changes was auto generated.

1.5.42

1.5.42 May 22nd 2025

1.5.40.1 April 7th 2025

Changes:

  • 4aad9c4e3de0cefa3efd0d9e216d6f1e58ffd6b1 Update RELEASE_NOTES.md for 1.5.42 (#​540)
  • e9e115e57a10fa71b9b68ae8e425398f98841879 Bump AkkaVersion to 1.5.42, integrate CancellationToken changes (#​535)
  • b6d93c1e44411ce755de7a14be040058d35ba01a Fix SqlServerRetryPolicy GetNextDelay returning negative TimeSpan (#​539)
  • 2cc2ce3e8d205111da00577bb5f8c75e424c6288 docs: set the correct default value for autoInitialize on HostingExtensions.cs (#​537)
  • 0777acc3ddd0c63cee627a9d422688b71afebfee build(deps): bump xunit from 2.8.1 to 2.9.3 (#​506)

This list of changes was auto generated.

1.5.40.1

1.5.40.1 April 7th 2025

Changes:

  • e615f4522692318718ecf76b2d03691bec3efc6a Update RELEASE_NOTES.md for 1.5.40.1 release (#​532)
  • ed1cef3a6e694fc9439f45d54fa380e67af0d535 Bugfix #​530 (#​531)

This list of changes was auto generated.

1.5.40

1.5.40 March 24th 2025

Akka.Persistence.Sql 1.5.40 contains a mission-critical bugfix from Akka 1.5.40 that fixes the SelectAsync NullReferenceException issue

Changes:

  • 476645895055a695a2375a67713c02c1911410d0 Update RELEASE_NOTES.md, wrong date (#​526)
  • 2f14969e0eea8ab214ad35fdb3e93bbc4e6a52de Update RELEASE_NOTES.md for 1.5.40 release (#​524)
  • 26e5eda3535ad64d3075b8c5d816d49b0c4924d3 Bump AkkaVersion to 1.5.40 (#​525)
  • 7a5328b2b62ded325de4494be59cb6390d907eb8 Bump AkkaVersion and AkkaHostingVersion to 1.5.39 (#​523)

This list of changes was auto generated.

1.5.38.1

1.5.38.1 March 11th 2025

Changes:

  • e034a57789a7a982fd18e385311298adc055df01 Update RELEASE_NOTES.md for 1.5.38.1 release (#​522)
  • 6b3cc5be8e6eed50eb232374e1072e372f69547f Fix BaseByteArrayJournalDao stream resiliency problem (#​521)

This list of changes was auto generated.

1.5.38

1.5.38 Feb 18 2025

Changes:

  • f7b49ab0e5be9405264cd25018837614f82575f2 Update RELEASE_NOTES.md (#​520)
  • a970ef6a125309e4bac445dba139021c3c89b1c0 Bump AkkaVersion and AkkaHostingVersion from 1.5.37 to 1.5.38 (#​519)
  • 50c585d6368f301be5b4e314c1d7a531938182bf Fix memory leak caused by QueryThrottler (#​518)

This list of changes was auto generated.

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 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.Sql.Hosting
  dependency-version: 1.5.67
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels May 21, 2026
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.

0 participants