Skip to content

Bump the akka group with 1 update - #1710

Open
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/nuget/akka-a6eddf3c2d
Open

Bump the akka group with 1 update#1710
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/nuget/akka-a6eddf3c2d

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 29, 2026

Copy link
Copy Markdown
Contributor

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

Release notes

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

1.5.70

1.5.70 July 23rd 2026

New Feature — FromEnd Query Offset

Query the last N events by tag using a new Offset.FromEnd(count) offset type. Instead of streaming from a known forward offset, you specify how many recent events to return — useful for "get me the last 10 events tagged X" scenarios without knowing the current offset upfront.

// Get the last 3 events tagged "green"
var lastThree = ReadJournal
    .CurrentEventsByTag("green", Offset.FromEnd(3))
    .RunWith(Sink.Seq<EventEnvelope>(), materializer);

// If fewer than 3 events exist, returns all of them
var allEvents = ReadJournal
    .CurrentEventsByTag("green", Offset.FromEnd(100))
    .RunWith(Sink.Seq<EventEnvelope>(), materializer);

Changes:

  • 0c111df3d1685457e285cebe404ca3ab2b3b65c3 Bump version to 1.5.70 (#​594)
  • 4af1943319e2ac159d0adbd3acef67bbbbedc1f2 Fix journal delete transaction retry scope (#​592) [ #​591, linq2db/linq2db#​4910 ]
  • e21db6a0dc9681c025d27e111c3eb0ba5fc33a40 Bump version to 1.5.70-beta1 and update release notes (#​590)
  • 9e31b80b2e34b623abd66fa3cfb6e5705972aa26 spike: FromEnd (last-N) query offset — design validation (DO NOT MERGE) (#​589) [ akkadotnet/akka.net#​8244 ]

This list of changes was auto generated.

1.5.70-beta1

1.5.70-beta1 June 24th 2026

New Feature — FromEnd Query Offset

Query the last N events by tag using a new Offset.FromEnd(count) offset type. Instead of streaming from a known forward offset, you specify how many recent events to return — useful for "get me the last 10 events tagged X" scenarios without knowing the current offset upfront.

// Get the last 3 events tagged "green"
var lastThree = ReadJournal
    .CurrentEventsByTag("green", Offset.FromEnd(3))
    .RunWith(Sink.Seq<EventEnvelope>(), materializer);

// If fewer than 3 events exist, returns all of them
var allEvents = ReadJournal
    .CurrentEventsByTag("green", Offset.FromEnd(100))
    .RunWith(Sink.Seq<EventEnvelope>(), materializer);

Changes:

  • e21db6a0dc9681c025d27e111c3eb0ba5fc33a40 Bump version to 1.5.70-beta1 and update release notes (#​590)
  • 9e31b80b2e34b623abd66fa3cfb6e5705972aa26 spike: FromEnd (last-N) query offset — design validation (DO NOT MERGE) (#​589) [ akkadotnet/akka.net#​8244 ]

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps Akka.Persistence.Sql.Hosting from 1.5.67 to 1.5.70

---
updated-dependencies:
- dependency-name: Akka.Persistence.Sql.Hosting
  dependency-version: 1.5.70
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: akka
...

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 Jul 29, 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