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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.23.1] - 2025-06-04

This includes a minor CLI bugfix for riverpro and no other changes, see the v0.23.0 notes for major changes.

### Fixed

- Fixed a riverpro CLI integration point broken in v0.23.0. [PR #945](https://github.com/riverqueue/river/pull/945)
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.24.1
require (
github.com/jackc/pgx/v5 v5.7.5
github.com/lmittmann/tint v1.1.1
github.com/riverqueue/river v0.23.0
github.com/riverqueue/river/riverdriver v0.23.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.23.0
github.com/riverqueue/river/riverdriver/riversqlite v0.23.0
github.com/riverqueue/river/rivershared v0.23.0
github.com/riverqueue/river/rivertype v0.23.0
github.com/riverqueue/river v0.23.1
github.com/riverqueue/river/riverdriver v0.23.1
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.23.1
github.com/riverqueue/river/riverdriver/riversqlite v0.23.1
github.com/riverqueue/river/rivershared v0.23.1
github.com/riverqueue/river/rivertype v0.23.1
github.com/spf13/cobra v1.9.1
github.com/stretchr/testify v1.10.0
modernc.org/sqlite v1.37.1
Expand Down
12 changes: 6 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ require (
github.com/jackc/pgx/v5 v5.7.4
github.com/jackc/puddle/v2 v2.2.2
github.com/lib/pq v1.10.9
github.com/riverqueue/river/riverdriver v0.23.0
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.23.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.23.0
github.com/riverqueue/river/riverdriver/riversqlite v0.23.0
github.com/riverqueue/river/rivershared v0.23.0
github.com/riverqueue/river/rivertype v0.23.0
github.com/riverqueue/river/riverdriver v0.23.1
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.23.1
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.23.1
github.com/riverqueue/river/riverdriver/riversqlite v0.23.1
github.com/riverqueue/river/rivershared v0.23.1
github.com/riverqueue/river/rivertype v0.23.1
github.com/robfig/cron/v3 v3.0.1
github.com/stretchr/testify v1.10.0
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.23.0
toolchain go1.24.1

require (
github.com/riverqueue/river/rivertype v0.23.0
github.com/riverqueue/river/rivertype v0.23.1
github.com/stretchr/testify v1.10.0
)

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

require (
github.com/lib/pq v1.10.9
github.com/riverqueue/river v0.23.0
github.com/riverqueue/river/riverdriver v0.23.0
github.com/riverqueue/river/rivershared v0.23.0
github.com/riverqueue/river/rivertype v0.23.0
github.com/riverqueue/river v0.23.1
github.com/riverqueue/river/riverdriver v0.23.1
github.com/riverqueue/river/rivershared v0.23.1
github.com/riverqueue/river/rivertype v0.23.1
github.com/stretchr/testify v1.10.0
)

Expand Down
8 changes: 4 additions & 4 deletions riverdriver/riverpgxv5/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ toolchain go1.24.1
require (
github.com/jackc/pgx/v5 v5.7.4
github.com/jackc/puddle/v2 v2.2.2
github.com/riverqueue/river v0.23.0
github.com/riverqueue/river/riverdriver v0.23.0
github.com/riverqueue/river/rivershared v0.23.0
github.com/riverqueue/river/rivertype v0.23.0
github.com/riverqueue/river v0.23.1
github.com/riverqueue/river/riverdriver v0.23.1
github.com/riverqueue/river/rivershared v0.23.1
github.com/riverqueue/river/rivertype v0.23.1
github.com/stretchr/testify v1.10.0
)

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.23.0
toolchain go1.24.1

require (
github.com/riverqueue/river v0.23.0
github.com/riverqueue/river/riverdriver v0.23.0
github.com/riverqueue/river/rivershared v0.23.0
github.com/riverqueue/river/rivertype v0.23.0
github.com/riverqueue/river v0.23.1
github.com/riverqueue/river/riverdriver v0.23.1
github.com/riverqueue/river/rivershared v0.23.1
github.com/riverqueue/river/rivertype v0.23.1
github.com/stretchr/testify v1.10.0
github.com/tidwall/gjson v1.18.0
github.com/tidwall/sjson v1.2.5
Expand Down
6 changes: 3 additions & 3 deletions rivershared/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ toolchain go1.24.1

require (
github.com/jackc/pgx/v5 v5.7.5
github.com/riverqueue/river v0.23.0
github.com/riverqueue/river/riverdriver v0.23.0
github.com/riverqueue/river/rivertype v0.23.0
github.com/riverqueue/river v0.23.1
github.com/riverqueue/river/riverdriver v0.23.1
github.com/riverqueue/river/rivertype v0.23.1
github.com/stretchr/testify v1.10.0
go.uber.org/goleak v1.3.0
golang.org/x/mod v0.24.0
Expand Down