Skip to content

Commit

Permalink
prepare v0.18.0 (#780)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgentry authored Feb 20, 2025
1 parent 0f6987b commit fce1b07
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 22 deletions.
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.18.0] - 2025-02-20

⚠️ Version 0.18.0 has breaking changes for the `rivertest.Worker` type that was just introduced. While attempting to round out some edge cases with its design, we realized some of them simply couldn't be solved adequately without changing the overall design such that all tested jobs are inserted into the database. Given the short duration since it was released (over a weekend) it's unlikely many users have adopted it and it seemed best to rip off the bandaid to fix it before it gets widely used.

### Added
Expand Down
10 changes: 5 additions & 5 deletions cmd/river/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ toolchain go1.23.5
require (
github.com/jackc/pgx/v5 v5.7.2
github.com/lmittmann/tint v1.0.7
github.com/riverqueue/river v0.17.0
github.com/riverqueue/river/riverdriver v0.17.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.17.0
github.com/riverqueue/river/rivershared v0.17.0
github.com/riverqueue/river/rivertype v0.17.0
github.com/riverqueue/river v0.18.0
github.com/riverqueue/river/riverdriver v0.18.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.18.0
github.com/riverqueue/river/rivershared v0.18.0
github.com/riverqueue/river/rivertype v0.18.0
github.com/spf13/cobra v1.9.1
github.com/stretchr/testify v1.10.0
)
Expand Down
10 changes: 5 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ require (
github.com/jackc/pgerrcode v0.0.0-20220416144525-469b46aa5efa
github.com/jackc/pgx/v5 v5.7.2
github.com/jackc/puddle/v2 v2.2.2
github.com/riverqueue/river/riverdriver v0.17.0
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.17.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.17.0
github.com/riverqueue/river/rivershared v0.17.0
github.com/riverqueue/river/rivertype v0.17.0
github.com/riverqueue/river/riverdriver v0.18.0
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.18.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.18.0
github.com/riverqueue/river/rivershared v0.18.0
github.com/riverqueue/river/rivertype v0.18.0
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.22.0
toolchain go1.23.5

require (
github.com/riverqueue/river/rivertype v0.17.0
github.com/riverqueue/river/rivertype v0.18.0
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 @@ -7,10 +7,10 @@ toolchain go1.23.5
require (
github.com/jackc/pgx/v5 v5.7.2
github.com/lib/pq v1.10.9
github.com/riverqueue/river v0.17.0
github.com/riverqueue/river/riverdriver v0.17.0
github.com/riverqueue/river/rivershared v0.17.0
github.com/riverqueue/river/rivertype v0.17.0
github.com/riverqueue/river v0.18.0
github.com/riverqueue/river/riverdriver v0.18.0
github.com/riverqueue/river/rivershared v0.18.0
github.com/riverqueue/river/rivertype v0.18.0
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.23.5
require (
github.com/jackc/pgx/v5 v5.7.2
github.com/jackc/puddle/v2 v2.2.2
github.com/riverqueue/river v0.17.0
github.com/riverqueue/river/riverdriver v0.17.0
github.com/riverqueue/river/rivershared v0.17.0
github.com/riverqueue/river/rivertype v0.17.0
github.com/riverqueue/river v0.18.0
github.com/riverqueue/river/riverdriver v0.18.0
github.com/riverqueue/river/rivershared v0.18.0
github.com/riverqueue/river/rivertype v0.18.0
github.com/stretchr/testify v1.10.0
)

Expand Down
6 changes: 3 additions & 3 deletions rivershared/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ go 1.22.0
toolchain go1.23.5

require (
github.com/riverqueue/river v0.17.0
github.com/riverqueue/river/riverdriver v0.17.0
github.com/riverqueue/river/rivertype v0.17.0
github.com/riverqueue/river v0.18.0
github.com/riverqueue/river/riverdriver v0.18.0
github.com/riverqueue/river/rivertype v0.18.0
github.com/stretchr/testify v1.10.0
go.uber.org/goleak v1.3.0
golang.org/x/mod v0.23.0
Expand Down

0 comments on commit fce1b07

Please sign in to comment.