Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare v0.0.22 release #220

Merged
merged 1 commit into from
Feb 19, 2024
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: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.21] - 2024-02-19
## [0.0.22] - 2024-02-19

### Fixed

- Brings in another leadership election fix similar to #217 in which a TTL equal to the elector's run interval plus a configured TTL padding is also used for the initial attempt to gain leadership (#217 brought it in for reelection only). [PR #219](https://github.com/riverqueue/river/pull/219).

## [0.0.21] - 2024-02-19
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Doh, had put the "fixed" note above under the wrong header. Of course. Fixed here.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I swear, we're gonna need a CI check for this 😆


### Changed

- Tweaked behavior of `JobRetry` so that it does actually update the `ScheduledAt` time of the job in all cases where the job is actually being rescheduled. As before, jobs which are already available with a past `ScheduledAt` will not be touched by this query so that they retain their place in line. [PR #211](https://github.com/riverqueue/river/pull/211).
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ require (
github.com/jackc/pgx/v5 v5.5.3
github.com/jackc/puddle/v2 v2.2.1
github.com/oklog/ulid/v2 v2.1.0
github.com/riverqueue/river/riverdriver v0.0.21
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.0.21
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.0.21
github.com/riverqueue/river/riverdriver v0.0.22
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.0.22
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.0.22
github.com/robfig/cron/v3 v3.0.1
github.com/spf13/cobra v1.8.0
github.com/stretchr/testify v1.8.4
Expand Down
2 changes: 1 addition & 1 deletion riverdriver/riverdatabasesql/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replace github.com/riverqueue/river/riverdriver => ../
require (
github.com/jackc/pgx/v5 v5.5.0
github.com/lib/pq v1.10.9
github.com/riverqueue/river/riverdriver v0.0.21
github.com/riverqueue/river/riverdriver v0.0.22
github.com/stretchr/testify v1.8.1
)

Expand Down
2 changes: 1 addition & 1 deletion riverdriver/riverpgxv5/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replace github.com/riverqueue/river/riverdriver => ../

require (
github.com/jackc/pgx/v5 v5.5.0
github.com/riverqueue/river/riverdriver v0.0.21
github.com/riverqueue/river/riverdriver v0.0.22
github.com/stretchr/testify v1.8.1
)

Expand Down
Loading