Skip to content

build(deps): bump github.com/riverqueue/river/rivertype from 0.39.0 to 0.44.0 in /backend - #95

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/backend/github.com/riverqueue/river/rivertype-0.44.0
Closed

build(deps): bump github.com/riverqueue/river/rivertype from 0.39.0 to 0.44.0 in /backend#95
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/backend/github.com/riverqueue/river/rivertype-0.44.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 24, 2026

Copy link
Copy Markdown
Contributor

Bumps github.com/riverqueue/river/rivertype from 0.39.0 to 0.44.0.

Release notes

Sourced from github.com/riverqueue/river/rivertype's releases.

v0.44.0

Added

  • Added EventKindJobInterrupted, emitted when a running job is interrupted because its client is shutting down, the job was cancelled, and has been made immediately available to be worked again. [PR #1290](riverqueue/river#1290).

Changed

  • Jobs that didn't finish in time organically while a client was stopping and had to have their context cancelled no longer have this cancellation counted as an error. attempt is reset to the number it was before the job started working, errors is left unchanged, and state is made available so jobs are eligible to be retried immediately. [PR #1290](riverqueue/river#1290)

Fixed

  • Write timestamps in SQLite to always include three digits after the second like .000. Previously, they may have been truncated down to just .0 in the case of trailing zeroes. [PR #1349](riverqueue/river#1349)
  • Job completion events now reflect the job's persisted outcome when it differs from the transition requested by the worker. For example, a job completed with JobCompleteTx before its worker returns an error emits job_completed, and a remotely cancelled job whose worker errors or snoozes emits job_cancelled. Applications subscribed only to job_failed or job_snoozed should note that these events may instead be delivered to job_completed or job_cancelled subscribers. [PR #1350](riverqueue/river#1350)

v0.43.0

Added

  • Added JobListParams.TagsAll and JobListParams.TagsAny for filtering jobs that match every or any exact tag, respectively. [PR #1339](riverqueue/river#1339).

Fixed

  • testsignal no longer imports riversharedtest, so testify, go-spew, goleak, and yaml are no longer linked into production binaries that use River. WaitTimeout moved to rivershared/util/testutil, with riversharedtest.WaitTimeout kept as a wrapper around it. [PR #1342](riverqueue/river#1342).

v0.42.0

Added

v0.41.1

Fixed

  • Fixed JobRescuer incorrectly rescuing jobs whose worker timeout of zero inherits a client-level Config.JobTimeout of -1 (no timeout). [PR #1331](riverqueue/river#1331).

v0.41.0

Added

  • Added rivertype.HookMetricEmit for receiving metrics emitted by River. Initial metrics report the duration of successful job fetches with JobGetAvailableDurationMetric and the number of jobs fetched with JobGetAvailableCountMetric. [PR #1285](riverqueue/river#1285).
  • The riversqlite driver is now tested against Turso, an in-process SQLite-compatible database written in Rust. [PR #1311](riverqueue/river#1311).

Changed

  • Added Config.Plugins for extensions that should be installed as both hooks and middleware. Config.Hooks and Config.Middleware remain available for hook-only and middleware-only registration. [PR #1284](riverqueue/river#1284).
  • Reduce producer keep alive interval from 1 minute to 30 seconds. [PR #1319](riverqueue/river#1319).

Fixed

  • Guard against empty job slice returned by JobSetStateIfRunningMany when a job has been deleted mid-run. [PR #1308](riverqueue/river#1308).
  • Fixed JobRescuer pagination so a full batch of running jobs with disabled or longer worker-specific timeouts can't prevent later stuck jobs from being rescued. [PR #1318](riverqueue/river#1318).
  • If a job fails to unmarshal from JSON during job rescue or job execution, back off using the retry schedule and eventually discard it, similar to any other error that might occur. [PR #1324](riverqueue/river#1324).
  • Fixed JobListOrderByFinalizedAt validation so finalized states are accepted while non-finalized states are rejected. [PR #1327](riverqueue/river#1327).

... (truncated)

Changelog

Sourced from github.com/riverqueue/river/rivertype's changelog.

[0.44.0] - 2026-08-18

Added

  • Added EventKindJobInterrupted, emitted when a running job is interrupted because its client is shutting down, the job was cancelled, and has been made immediately available to be worked again. [PR #1290](riverqueue/river#1290).

Changed

  • Jobs that didn't finish in time organically while a client was stopping and had to have their context cancelled no longer have this cancellation counted as an error. attempt is reset to the number it was before the job started working, errors is left unchanged, and state is made available so jobs are eligible to be retried immediately. [PR #1290](riverqueue/river#1290)

Fixed

  • Write timestamps in SQLite to always include three digits after the second like .000. Previously, they may have been truncated down to just .0 in the case of trailing zeroes. [PR #1349](riverqueue/river#1349)
  • Job completion events now reflect the job's persisted outcome when it differs from the transition requested by the worker. For example, a job completed with JobCompleteTx before its worker returns an error emits job_completed, and a remotely cancelled job whose worker errors or snoozes emits job_cancelled. Applications subscribed only to job_failed or job_snoozed should note that these events may instead be delivered to job_completed or job_cancelled subscribers. [PR #1350](riverqueue/river#1350)

[0.43.0] - 2026-08-05

Added

  • Added JobListParams.TagsAll and JobListParams.TagsAny for filtering jobs that match every or any exact tag, respectively. [PR #1339](riverqueue/river#1339).

Fixed

  • testsignal no longer imports riversharedtest, so testify, go-spew, goleak, and yaml are no longer linked into production binaries that use River. WaitTimeout moved to rivershared/util/testutil, with riversharedtest.WaitTimeout kept as a wrapper around it. [PR #1342](riverqueue/river#1342).

[0.42.0] - 2026-07-31

Added

[0.41.1] - 2026-07-29

Fixed

  • Fixed JobRescuer incorrectly rescuing jobs whose worker timeout of zero inherits a client-level Config.JobTimeout of -1 (no timeout). [PR #1331](riverqueue/river#1331).

[0.41.0] - 2026-07-23

Added

  • Added rivertype.HookMetricEmit for receiving metrics emitted by River. Initial metrics report the duration of successful job fetches with JobGetAvailableDurationMetric and the number of jobs fetched with JobGetAvailableCountMetric. [PR #1285](riverqueue/river#1285).
  • The riversqlite driver is now tested against Turso, an in-process SQLite-compatible database written in Rust. [PR #1311](riverqueue/river#1311).

Changed

  • Added Config.Plugins for extensions that should be installed as both hooks and middleware. Config.Hooks and Config.Middleware remain available for hook-only and middleware-only registration. [PR #1284](riverqueue/river#1284).
  • Reduce producer keep alive interval from 1 minute to 30 seconds. [PR #1319](riverqueue/river#1319).
  • Add context helpers that name timeouts for easy attribution on where they happened. [PR #1329](riverqueue/river#1329).

... (truncated)

Commits
  • d675f7d Prepare version 0.44.0 (#1352)
  • 0b7bcc7 Remove post-persist ambiguity and have events match emitted state (#1350)
  • 7054a22 Bump the go-dependencies group across 3 directories with 2 updates (#1351)
  • a29542b Fix SQLite timestamp millisecond formatting to always include 3 digits (#1349)
  • 7ac5a2c Bump the go-dependencies group across 3 directories with 1 update (#1345)
  • fdf6cdf Make jobs cancelled due to a soft stop immediately available (#1290)
  • 238776f Don't allow testsignal to pick up non-stdlib dependencies (#1343)
  • 60435dc Prepare version 0.43.0 (#1344)
  • 25de710 Stop linking testify into production binaries via testsignal (#1342)
  • 2c09762 Bump the go-dependencies group across 3 directories with 2 updates (#1340)
  • Additional 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)

Bumps [github.com/riverqueue/river/rivertype](https://github.com/riverqueue/river) from 0.39.0 to 0.44.0.
- [Release notes](https://github.com/riverqueue/river/releases)
- [Changelog](https://github.com/riverqueue/river/blob/master/CHANGELOG.md)
- [Commits](riverqueue/river@v0.39.0...v0.44.0)

---
updated-dependencies:
- dependency-name: github.com/riverqueue/river/rivertype
  dependency-version: 0.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Aug 24, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 31, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #116.

@dependabot dependabot Bot closed this Aug 31, 2026
@dependabot
dependabot Bot deleted the dependabot/go_modules/backend/github.com/riverqueue/river/rivertype-0.44.0 branch August 31, 2026 10:55
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 go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants