Skip to content

Commit

Permalink
Prepare version 0.6.1 (#365)
Browse files Browse the repository at this point in the history
Prepare version 0.6.1 for release, including the changes from #350 (no
premature rescue for jobs with long custom timeouts), #363 (exit with
status 1 in case of bad command/flags) in CLI, and #364 (fix migration
version 4 to be re-runnable).
  • Loading branch information
brandur authored May 21, 2024
1 parent 8264a24 commit 64baafd
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed

- River now considers per-worker timeout overrides when rescuing jobs so that jobs with a long custom timeout won't be rescued prematurely. [PR #350](https://github.com/riverqueue/river/pull/350).
- River CLI now exits with status 1 in the case of a problem with commands or flags, like an unknown command or missing required flag. [PR #363](https://github.com/riverqueue/river/pull/363).
- Fix migration version 4 (from 0.5.0) so that the up migration can be re-run after it was originally rolled back. [PR #364](https://github.com/riverqueue/river/pull/364).

## [0.6.0] - 2024-05-08

Expand Down
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ require (
github.com/jackc/pgerrcode v0.0.0-20220416144525-469b46aa5efa
github.com/jackc/pgx/v5 v5.5.5
github.com/jackc/puddle/v2 v2.2.1
github.com/riverqueue/river/riverdriver v0.6.0
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.6.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.6.0
github.com/riverqueue/river/rivertype v0.6.0
github.com/riverqueue/river/riverdriver v0.6.1
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.6.1
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.6.1
github.com/riverqueue/river/rivertype v0.6.1
github.com/robfig/cron/v3 v3.0.1
github.com/stretchr/testify v1.9.0
go.uber.org/goleak v1.3.0
Expand Down
2 changes: 1 addition & 1 deletion riverdriver/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ go 1.21.4

replace github.com/riverqueue/river/rivertype => ../rivertype

require github.com/riverqueue/river/rivertype v0.6.0
require github.com/riverqueue/river/rivertype v0.6.1
4 changes: 2 additions & 2 deletions riverdriver/riverdatabasesql/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ replace github.com/riverqueue/river/rivertype => ../../rivertype

require (
github.com/lib/pq v1.10.9
github.com/riverqueue/river/riverdriver v0.6.0
github.com/riverqueue/river/rivertype v0.6.0
github.com/riverqueue/river/riverdriver v0.6.1
github.com/riverqueue/river/rivertype v0.6.1
github.com/stretchr/testify v1.9.0
)

Expand Down
4 changes: 2 additions & 2 deletions riverdriver/riverpgxv5/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ replace github.com/riverqueue/river/rivertype => ../../rivertype
require (
github.com/jackc/pgx/v5 v5.5.0
github.com/jackc/puddle/v2 v2.2.1
github.com/riverqueue/river/riverdriver v0.6.0
github.com/riverqueue/river/rivertype v0.6.0
github.com/riverqueue/river/riverdriver v0.6.1
github.com/riverqueue/river/rivertype v0.6.1
github.com/stretchr/testify v1.9.0
)

Expand Down

0 comments on commit 64baafd

Please sign in to comment.