Skip to content

Commit ccbe042

Browse files
authored
Prepare version 0.29.0 (#1110)
Prepare version 0.29.0. We pull the changes from RC1 into the main 0.29.0 release. [skip ci]
1 parent ff4bb63 commit ccbe042

File tree

9 files changed

+41
-41
lines changed

9 files changed

+41
-41
lines changed

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.29.0] - 2025-12-22
11+
1012
### Added
1113

14+
- Added `HookPeriodicJobsStart` that can be used to run custom logic when a periodic job enqueuer starts up on a new leader. [PR #1084](https://github.com/riverqueue/river/pull/1084).
15+
- Added `Client.Notify().RequestResign` and `Client.Notify().RequestResignTx` functions allowing any client to request that the current leader resign. [PR #1085](https://github.com/riverqueue/river/pull/1085).
1216
- Basic stuck detection after a job's exceeded its timeout and still not returned after the executor's initiated context cancellation and waited a short margin for the cancellation to take effect. [PR #1097](https://github.com/riverqueue/river/pull/1097).
1317
- Added `Client.JobUpdate` which can be used to persist job output partway through a running work function instead of having to wait until the job is completed. [PR #1098](https://github.com/riverqueue/river/pull/1098).
14-
- Add a little more error flavor for when encountering a deadline exceeded error on leadership election suggesting that the user may want to try increasing their database pool size. [PR #1101](https://github.com/riverqueue/river/pull/1101).
15-
- When migrating without an outer transaction, insert/delete version rows immediately after executing migration SQL so that in case a later migration fails, the migrator knows where to restart from. [PR #1106](https://github.com/riverqueue/river/pull/1106).
16-
17-
## [0.29.0-rc.1] - 2025-12-04
1818

19-
### Added
19+
### Changed
2020

21-
- Added `HookPeriodicJobsStart` that can be used to run custom logic when a periodic job enqueuer starts up on a new leader. [PR #1084](https://github.com/riverqueue/river/pull/1084).
22-
- Added `Client.Notify().RequestResign` and `Client.Notify().RequestResignTx` functions allowing any client to request that the current leader resign. [PR #1085](https://github.com/riverqueue/river/pull/1085).
21+
- Add a little more error flavor for when encountering a deadline exceeded error on leadership election suggesting that the user may want to try increasing their database pool size. [PR #1101](https://github.com/riverqueue/river/pull/1101).
22+
- When migrating without an outer transaction, insert/delete version rows immediately after executing migration SQL so that in case a later migration fails, the migrator knows where to restart from. [PR #1106](https://github.com/riverqueue/river/pull/1106).
2323

2424
## [0.28.0] - 2025-11-23
2525

cmd/river/go.mod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ toolchain go1.25.2
77
require (
88
github.com/jackc/pgx/v5 v5.7.6
99
github.com/lmittmann/tint v1.1.2
10-
github.com/riverqueue/river v0.29.0-rc.1
11-
github.com/riverqueue/river/riverdriver v0.29.0-rc.1
12-
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.29.0-rc.1
13-
github.com/riverqueue/river/riverdriver/riversqlite v0.29.0-rc.1
14-
github.com/riverqueue/river/rivershared v0.29.0-rc.1
15-
github.com/riverqueue/river/rivertype v0.29.0-rc.1
10+
github.com/riverqueue/river v0.29.0
11+
github.com/riverqueue/river/riverdriver v0.29.0
12+
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.29.0
13+
github.com/riverqueue/river/riverdriver/riversqlite v0.29.0
14+
github.com/riverqueue/river/rivershared v0.29.0
15+
github.com/riverqueue/river/rivertype v0.29.0
1616
github.com/spf13/cobra v1.10.2
1717
github.com/stretchr/testify v1.11.1
1818
modernc.org/sqlite v1.41.0

go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ require (
88
github.com/jackc/pgerrcode v0.0.0-20240316143900-6e2875d9b438
99
github.com/jackc/pgx/v5 v5.7.6
1010
github.com/jackc/puddle/v2 v2.2.2
11-
github.com/riverqueue/river/riverdriver v0.29.0-rc.1
12-
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.29.0-rc.1
13-
github.com/riverqueue/river/rivershared v0.29.0-rc.1
14-
github.com/riverqueue/river/rivertype v0.29.0-rc.1
11+
github.com/riverqueue/river/riverdriver v0.29.0
12+
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.29.0
13+
github.com/riverqueue/river/rivershared v0.29.0
14+
github.com/riverqueue/river/rivertype v0.29.0
1515
github.com/robfig/cron/v3 v3.0.1
1616
github.com/stretchr/testify v1.11.1
1717
github.com/tidwall/gjson v1.18.0

riverdriver/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.24.0
55
toolchain go1.25.2
66

77
require (
8-
github.com/riverqueue/river/rivertype v0.29.0-rc.1
8+
github.com/riverqueue/river/rivertype v0.29.0
99
github.com/stretchr/testify v1.11.1
1010
)
1111

riverdriver/riverdatabasesql/go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ toolchain go1.25.2
77
require (
88
github.com/jackc/pgx/v5 v5.7.6
99
github.com/lib/pq v1.10.9
10-
github.com/riverqueue/river v0.29.0-rc.1
11-
github.com/riverqueue/river/riverdriver v0.29.0-rc.1
12-
github.com/riverqueue/river/rivershared v0.29.0-rc.1
13-
github.com/riverqueue/river/rivertype v0.29.0-rc.1
10+
github.com/riverqueue/river v0.29.0
11+
github.com/riverqueue/river/riverdriver v0.29.0
12+
github.com/riverqueue/river/rivershared v0.29.0
13+
github.com/riverqueue/river/rivertype v0.29.0
1414
github.com/stretchr/testify v1.11.1
1515
)
1616

@@ -20,7 +20,7 @@ require (
2020
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
2121
github.com/jackc/puddle/v2 v2.2.2 // indirect
2222
github.com/pmezard/go-difflib v1.0.0 // indirect
23-
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.29.0-rc.1 // indirect
23+
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.29.0 // indirect
2424
github.com/tidwall/gjson v1.18.0 // indirect
2525
github.com/tidwall/match v1.1.1 // indirect
2626
github.com/tidwall/pretty v1.2.1 // indirect

riverdriver/riverdrivertest/go.mod

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ require (
99
github.com/jackc/pgerrcode v0.0.0-20240316143900-6e2875d9b438
1010
github.com/jackc/pgx/v5 v5.7.6
1111
github.com/lib/pq v1.10.9
12-
github.com/riverqueue/river v0.29.0-rc.1
13-
github.com/riverqueue/river/riverdriver v0.29.0-rc.1
14-
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.29.0-rc.1
15-
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.29.0-rc.1
16-
github.com/riverqueue/river/riverdriver/riversqlite v0.29.0-rc.1
17-
github.com/riverqueue/river/rivershared v0.29.0-rc.1
18-
github.com/riverqueue/river/rivertype v0.29.0-rc.1
12+
github.com/riverqueue/river v0.29.0
13+
github.com/riverqueue/river/riverdriver v0.29.0
14+
github.com/riverqueue/river/riverdriver/riverdatabasesql v0.29.0
15+
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.29.0
16+
github.com/riverqueue/river/riverdriver/riversqlite v0.29.0
17+
github.com/riverqueue/river/rivershared v0.29.0
18+
github.com/riverqueue/river/rivertype v0.29.0
1919
github.com/stretchr/testify v1.11.1
2020
github.com/tidwall/gjson v1.18.0
2121
github.com/tidwall/sjson v1.2.5

riverdriver/riverpgxv5/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ toolchain go1.25.2
77
require (
88
github.com/jackc/pgx/v5 v5.7.6
99
github.com/jackc/puddle/v2 v2.2.2
10-
github.com/riverqueue/river/riverdriver v0.29.0-rc.1
11-
github.com/riverqueue/river/rivershared v0.29.0-rc.1
12-
github.com/riverqueue/river/rivertype v0.29.0-rc.1
10+
github.com/riverqueue/river/riverdriver v0.29.0
11+
github.com/riverqueue/river/rivershared v0.29.0
12+
github.com/riverqueue/river/rivertype v0.29.0
1313
github.com/stretchr/testify v1.11.1
1414
)
1515

riverdriver/riversqlite/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ go 1.24.0
55
toolchain go1.25.2
66

77
require (
8-
github.com/riverqueue/river v0.29.0-rc.1
9-
github.com/riverqueue/river/riverdriver v0.29.0-rc.1
10-
github.com/riverqueue/river/rivershared v0.29.0-rc.1
11-
github.com/riverqueue/river/rivertype v0.29.0-rc.1
8+
github.com/riverqueue/river v0.29.0
9+
github.com/riverqueue/river/riverdriver v0.29.0
10+
github.com/riverqueue/river/rivershared v0.29.0
11+
github.com/riverqueue/river/rivertype v0.29.0
1212
github.com/stretchr/testify v1.11.1
1313
github.com/tidwall/gjson v1.18.0
1414
github.com/tidwall/sjson v1.2.5

rivershared/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ toolchain go1.25.2
66

77
require (
88
github.com/jackc/pgx/v5 v5.7.6
9-
github.com/riverqueue/river v0.29.0-rc.1
10-
github.com/riverqueue/river/riverdriver v0.29.0-rc.1
11-
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.29.0-rc.1
12-
github.com/riverqueue/river/rivertype v0.29.0-rc.1
9+
github.com/riverqueue/river v0.29.0
10+
github.com/riverqueue/river/riverdriver v0.29.0
11+
github.com/riverqueue/river/riverdriver/riverpgxv5 v0.29.0
12+
github.com/riverqueue/river/rivertype v0.29.0
1313
github.com/stretchr/testify v1.11.1
1414
go.uber.org/goleak v1.3.0
1515
golang.org/x/mod v0.31.0

0 commit comments

Comments
 (0)