Skip to content

Commit

Permalink
Prepare release v0.3.0 (#303)
Browse files Browse the repository at this point in the history
Prep release of `v0.3.0`. This is a relatively small one containing
mainly #281 and #297, but I think it's not a bad idea to cut a release
since we haven't done one in a while, and to get these additive changes
out ahead of the number of breaking changes that'll probably come with
the next release.
  • Loading branch information
brandur authored Apr 16, 2024
1 parent 2985f68 commit 06f9447
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 @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0] - 2024-04-15

### Added

- The River client now supports "poll only" mode with `Config.PollOnly` which makes it avoid issuing `LISTEN` statements to wait for new events like a leadership resignation or new job available. The program instead polls periodically to look for changes. A leader resigning or a new job being available will be noticed less quickly, but `PollOnly` potentially makes River operable on systems without listen/notify support, like PgBouncer operating in transaction pooling mode. [PR #281](https://github.com/riverqueue/river/pull/281).
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.2.0
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.2.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.2.0
github.com/riverqueue/river/rivertype v0.2.0
github.com/riverqueue/river/riverdriver v0.3.0
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.3.0
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.3.0
github.com/riverqueue/river/rivertype v0.3.0
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.2.0
require github.com/riverqueue/river/rivertype v0.3.0
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.2.0
github.com/riverqueue/river/rivertype v0.2.0
github.com/riverqueue/river/riverdriver v0.3.0
github.com/riverqueue/river/rivertype v0.3.0
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.2.0
github.com/riverqueue/river/rivertype v0.2.0
github.com/riverqueue/river/riverdriver v0.3.0
github.com/riverqueue/river/rivertype v0.3.0
github.com/stretchr/testify v1.9.0
)

Expand Down

0 comments on commit 06f9447

Please sign in to comment.