Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.30.0] - 2026-01-11

### Fixed

- Fix possible nil pointer panic when using nil `opts` in `Migrator.MigrateTx`. [PR #1117](https://github.com/riverqueue/river/pull/1117).
Expand Down
12 changes: 6 additions & 6 deletions cmd/river/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ toolchain go1.25.2
require (
github.com/jackc/pgx/v5 v5.8.0
github.com/lmittmann/tint v1.1.2
github.com/riverqueue/river v0.29.0
github.com/riverqueue/river/riverdriver v0.29.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.29.0
github.com/riverqueue/river/riverdriver/riversqlite v0.29.0
github.com/riverqueue/river/rivershared v0.29.0
github.com/riverqueue/river/rivertype v0.29.0
github.com/riverqueue/river v0.30.0
github.com/riverqueue/river/riverdriver v0.30.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.30.0
github.com/riverqueue/river/riverdriver/riversqlite v0.30.0
github.com/riverqueue/river/rivershared v0.30.0
github.com/riverqueue/river/rivertype v0.30.0
github.com/spf13/cobra v1.10.2
github.com/stretchr/testify v1.11.1
modernc.org/sqlite v1.42.2
Expand Down
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ require (
github.com/jackc/pgerrcode v0.0.0-20240316143900-6e2875d9b438
github.com/jackc/pgx/v5 v5.8.0
github.com/jackc/puddle/v2 v2.2.2
github.com/riverqueue/river/riverdriver v0.29.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.29.0
github.com/riverqueue/river/rivershared v0.29.0
github.com/riverqueue/river/rivertype v0.29.0
github.com/riverqueue/river/riverdriver v0.30.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.30.0
github.com/riverqueue/river/rivershared v0.30.0
github.com/riverqueue/river/rivertype v0.30.0
github.com/robfig/cron/v3 v3.0.1
github.com/stretchr/testify v1.11.1
github.com/tidwall/gjson v1.18.0
Expand Down
2 changes: 1 addition & 1 deletion riverdriver/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.24.0
toolchain go1.25.2

require (
github.com/riverqueue/river/rivertype v0.29.0
github.com/riverqueue/river/rivertype v0.30.0
github.com/stretchr/testify v1.11.1
)

Expand Down
10 changes: 5 additions & 5 deletions riverdriver/riverdatabasesql/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ toolchain go1.25.2
require (
github.com/jackc/pgx/v5 v5.8.0
github.com/lib/pq v1.10.9
github.com/riverqueue/river v0.29.0
github.com/riverqueue/river/riverdriver v0.29.0
github.com/riverqueue/river/rivershared v0.29.0
github.com/riverqueue/river/rivertype v0.29.0
github.com/riverqueue/river v0.30.0
github.com/riverqueue/river/riverdriver v0.30.0
github.com/riverqueue/river/rivershared v0.30.0
github.com/riverqueue/river/rivertype v0.30.0
github.com/stretchr/testify v1.11.1
)

Expand All @@ -20,7 +20,7 @@ require (
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.29.0 // indirect
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.30.0 // indirect
github.com/tidwall/gjson v1.18.0 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
Expand Down
14 changes: 7 additions & 7 deletions riverdriver/riverdrivertest/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ require (
github.com/jackc/pgerrcode v0.0.0-20240316143900-6e2875d9b438
github.com/jackc/pgx/v5 v5.8.0
github.com/lib/pq v1.10.9
github.com/riverqueue/river v0.29.0
github.com/riverqueue/river/riverdriver v0.29.0
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.29.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.29.0
github.com/riverqueue/river/riverdriver/riversqlite v0.29.0
github.com/riverqueue/river/rivershared v0.29.0
github.com/riverqueue/river/rivertype v0.29.0
github.com/riverqueue/river v0.30.0
github.com/riverqueue/river/riverdriver v0.30.0
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.30.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.30.0
github.com/riverqueue/river/riverdriver/riversqlite v0.30.0
github.com/riverqueue/river/rivershared v0.30.0
github.com/riverqueue/river/rivertype v0.30.0
github.com/stretchr/testify v1.11.1
github.com/tidwall/gjson v1.18.0
github.com/tidwall/sjson v1.2.5
Expand Down
6 changes: 3 additions & 3 deletions riverdriver/riverpgxv5/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ toolchain go1.25.2
require (
github.com/jackc/pgx/v5 v5.8.0
github.com/jackc/puddle/v2 v2.2.2
github.com/riverqueue/river/riverdriver v0.29.0
github.com/riverqueue/river/rivershared v0.29.0
github.com/riverqueue/river/rivertype v0.29.0
github.com/riverqueue/river/riverdriver v0.30.0
github.com/riverqueue/river/rivershared v0.30.0
github.com/riverqueue/river/rivertype v0.30.0
github.com/stretchr/testify v1.11.1
)

Expand Down
8 changes: 4 additions & 4 deletions riverdriver/riversqlite/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ go 1.24.0
toolchain go1.25.2

require (
github.com/riverqueue/river v0.29.0
github.com/riverqueue/river/riverdriver v0.29.0
github.com/riverqueue/river/rivershared v0.29.0
github.com/riverqueue/river/rivertype v0.29.0
github.com/riverqueue/river v0.30.0
github.com/riverqueue/river/riverdriver v0.30.0
github.com/riverqueue/river/rivershared v0.30.0
github.com/riverqueue/river/rivertype v0.30.0
github.com/stretchr/testify v1.11.1
github.com/tidwall/gjson v1.18.0
github.com/tidwall/sjson v1.2.5
Expand Down
8 changes: 4 additions & 4 deletions rivershared/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ toolchain go1.25.2

require (
github.com/jackc/pgx/v5 v5.8.0
github.com/riverqueue/river v0.29.0
github.com/riverqueue/river/riverdriver v0.29.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.29.0
github.com/riverqueue/river/rivertype v0.29.0
github.com/riverqueue/river v0.30.0
github.com/riverqueue/river/riverdriver v0.30.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.30.0
github.com/riverqueue/river/rivertype v0.30.0
github.com/stretchr/testify v1.11.1
go.uber.org/goleak v1.3.0
golang.org/x/mod v0.31.0
Expand Down
Loading