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

Tee up release v0.0.24 #245

Merged
merged 1 commit into from Mar 1, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.24] - 2024-02-29

### Fixed

- Fixed a memory leak caused by not always cancelling the context used to enable jobs to be cancelled remotely. [PR #243](https://github.com/riverqueue/river/pull/243).
Expand Down
8 changes: 4 additions & 4 deletions go.mod
Expand Up @@ -15,10 +15,10 @@ 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.23
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.0.23
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.0.23
github.com/riverqueue/river/rivertype v0.0.23
github.com/riverqueue/river/riverdriver v0.0.24
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.0.24
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.0.24
github.com/riverqueue/river/rivertype v0.0.24
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/go.mod
Expand Up @@ -4,4 +4,4 @@ go 1.21.4

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

require github.com/riverqueue/river/rivertype v0.0.23
require github.com/riverqueue/river/rivertype v0.0.24
4 changes: 2 additions & 2 deletions riverdriver/riverdatabasesql/go.mod
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.0.23
github.com/riverqueue/river/rivertype v0.0.23
github.com/riverqueue/river/riverdriver v0.0.24
github.com/riverqueue/river/rivertype v0.0.24
github.com/stretchr/testify v1.8.1
)

Expand Down
4 changes: 2 additions & 2 deletions riverdriver/riverpgxv5/go.mod
Expand Up @@ -8,8 +8,8 @@ replace github.com/riverqueue/river/rivertype => ../../rivertype

require (
github.com/jackc/pgx/v5 v5.5.0
github.com/riverqueue/river/riverdriver v0.0.23
github.com/riverqueue/river/rivertype v0.0.23
github.com/riverqueue/river/riverdriver v0.0.24
github.com/riverqueue/river/rivertype v0.0.24
github.com/stretchr/testify v1.8.1
)

Expand Down