All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Ignore errors like
tls: failed to send closeNotify alert (but connection was closed anyway)when closing listeners. PR #1216.
- Fixed leader election to track explicit database-issued leadership terms, reducing handoff flakiness and same-client reacquisition edge cases while making reelection and resign target the current leadership lease instead of a stale one. PR #1213.
- Added
Config.ReindexerIndexNamesandReindexerIndexNamesDefault()so the reindexer's target indexes can be customized from the public API. PR #1194.
- Upon a client gaining leadership, its queue maintainer is given more than one opportunity to start. PR #1184.
- Jobs erroring or panicking no longer logs at the error/warn level because this is not indicative of a problem inside of River itself. These log statements have been demoted to info. PR #1190.
- Fix in
Client.Startwhere previously it was possible for a River client that only partially started before erroring to not try to start on subsequentStartinvocations. PR #1187.
riverlog.Middlewarenow supportsMiddlewareConfig.MaxTotalBytes(default 8 MB) to cap total persistedriver:loghistory per job. When the cap is exceeded, oldest log entries are dropped first while retaining the newest entry. Values over 64 MB are clamped to 64 MB. PR #1157.
- Improved
riverlogperformance and reduced memory amplification when appending to large persistedriver:loghistories. PR #1157. - Reduced snooze-path memory amplification by setting
snoozesin metadata updates before marshaling, avoiding an extra full-payload JSON rewrite. PR #1159. - Schema names are now quoted in SQL operations, enabling the use of spaces and other odd characters. PR #1175.
riverpgxv5now adapts JSON parameters forsimple protocol/execquery modes so[]byteJSON payloads are not encoded asbyteain pgx text-mode execution paths. This fixes invalid JSON syntax errors when running through protocol-constrained setups like PgBouncer transaction pooling while preserving normal behavior for explicitbyteaparameters. Fixes #1153. PR #1155.
- Added root River CLI flag
--statement-timeoutso Postgres session statement timeout can be set explicitly for commands like migrations. Explicit flag values take priority over database URL query params, and query params still take priority over built-in defaults. PR #1142.
- Fix connection leak in
Listener.Connectin case whereafterConnectExecfailed. Thanks Johan Kjölhede (@GiGurra)! PR #1147. - Fix missing
ticker.Stopin producer'spollForSettingChanges(@GiGurra). PR #1148. - Fix accidental use of cancelled context for
Notifier.Ping(@GiGurra). PR #1149. - Add jitter to fetch poll loop to prevent producer stampeding (@GiGurra). PR #1150.
- Upgrade supported Go versions to 1.25 and 1.26, and update CI accordingly. PR #1144.
JobCountByQueueAndStatenow returns consistent results across drivers, including requested queues with zero jobs, and deduplicates repeated queue names in input. This resolves an issue with the sqlite driver in River UI reported in riverqueue/riverui#496. PR #1140.
- Fix bug in worker-level stuck job detection. PR #1133.
- Stuck job detection now accounts for worker-level timeouts as well as client-level timeouts. PR #1125.
- Fix possible nil pointer panic when using nil
optsinMigrator.MigrateTx. PR #1117.
- Added
HookPeriodicJobsStartthat can be used to run custom logic when a periodic job enqueuer starts up on a new leader. PR #1084. - Added
Client.Notify().RequestResignandClient.Notify().RequestResignTxfunctions allowing any client to request that the current leader resign. PR #1085. - 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.
- Added
Client.JobUpdatewhich 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.
- 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.
- 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.
- Added
riverlog.LoggerSafelywhich provides a non-panic variant ofriverlog.Loggerfor use when code may or may not have a context logger available. PR #1093.
- Periodic jobs with IDs may now be removed by ID using the new
PeriodicJobBundle.RemoveByIDandPeriodicJobBundle.RemoveManyByID. PR #1071.
- Decrease
serviceutil.MaxAttemptsBeforeResetDefaultfrom 10 to 7, lowering the effective limit on most internal exponential backoffs from ~512 seconds to 64 seconds. Further lowered the leader elector's keep leadership backoff interval to cap out at 4 seconds since leadership without a successful heartbeat will be lost soon after that anyway. PR #1079.
- Fix snoozed events emitted from
rivertest.Workerwhen snooze duration is zero seconds. PR #1057. - Rollbacks now use an uncancelled context so as to not leave transactions in an ambiguous state if a transaction in them fails due to context cancellation. PR #1062.
- Removing periodic jobs with IDs assigned also remove them from ID map. PR #1070.
- Clear periodic jobs also fully clears all those assigned with an ID. PR #1083.
river:"unique"annotations on substructs withinJobArgsstructs are now factored into uniquenessByArgscalculations. PR #1076.- Stop subservices and embedded
baseservice.Serviceon error in the event of a periodic job enqueuer start error. PR #1081.
- The job rescuer now sets
river:rescue_countwith an integer count of how many times the job has been rescued by theJobRescuermaintenance process when it's considered stuck. PR #1047.
- Errors returned from job workers are now logged in full using a
slog.Anyattribute. Previously, only their error text was logged. PR #1051.
- Set
updated_atwhen invoking pilotPeriodicJobUpsert. PR #1045.
- Set minimum Go version to Go 1.24. PR #1032.
- Breaking change:
Client.JobDeleteManynow requires the use ofJobDeleteManyParams.UnsafeAllto delete all jobs without a filter applied. This is a safety feature to make it more difficult to accidentally delete all non-running jobs. This is a minor breaking change, but on a fairly new feature that's not likely to be used on purpose by very many people yet. PR #1033.
- Don't double log fetch errors. PR #1025.
- When snoozing a job with zero duration so that it's retried immediately, subscription events no longer appear incorrectly with a kind of
rivertype.EventKindJobFailed. Instead they're assignedrivertype.EventKindJobSnoozedjust like they would have with a non-zero snooze duration. PR #1037.
HookWorkEnd.WorkEnd in that a new JobRow parameter has been added to the function's signature. Any intergration defining a custom HookWorkEnd hook should update its implementation so the hook continues to be called correctly.
- The project now tests against libSQL, a popular SQLite fork. It's used through the same
riversqlitedriver that SQLite uses. PR #957 - Added
JobDeleteManyoperations that remove many jobs in a single operation according to input criteria. PR #962 - Added
Client.Schema()method to return a client's configured schema. PR #983. - Integrated riverui queries into the driver system to pave the way for multi-driver UI support. PR #983.
- Added
QueueConfiglevelFetchCooldownandFetchPollIntervalsettings to enable queue-specific job fetch intervals. For example, a queue of high-priority jobs could be checked more often to improve responsiveness, while one with slow or time-insensitive tasks could be checked infrequently to reduce database load. PR #994.
- Remove unecessary transactions where a single database operation will do. This reduces the number of subtransactions created which can be an operational benefit it many cases. PR #950
- Bring all driver tests into separate package so they don't leak dependencies. This removes dependencies from the top level
riverpackage that most River installations won't need, thereby reducing the transitive dependency load of most River installations. PR #955. - The reindexer maintenance service now reindexes all
river_jobindexes, including its primary key. This is expected to help in situations where the jobs table has in the past expanded to a very large size (which makes most indexes larger), is now a much more modest size, but has left the indexes in their expanded state. PR #963. - The River CLI now accepts a
--target-versionof 0 withriver migrate-downto run all down migrations and remove all River tables (previously, -1 was used for this; -1 still works, but now 0 also works). PR #966. - Breaking change: The
HookWorkEndinterface'sWorkEndfunction now receives aJobRowparameter in addition to theerrorit received before. Having aJobRowto work with is fairly crucial to most functionality that a hook would implement, and its previous omission was entirely an error. PR #970. - Add maximum bound to each job's
attempted_byarray so that in degenerate cases where a job is run many, many times (say it's snoozed hundreds of times), it doesn't grow to unlimited bounds. PR #974. - A logger passed in via
river.Confignow overrides the default test-based logger when usingrivertest.NewWorker. PR #980. - Cleaner retention periods (
CancelledJobRetentionPeriod,CompletedJobRetentionPeriod,DiscardedJobRetentionPeriod) can be configured to -1 to disable them so that the corresponding type of job is retained indefinitely. PR #990. - Jobs inserted from periodic jobs with IDs now have metadata
river:periodic_job_idset so they can be traced back to the periodic job that inserted them. PR #992. - The unused function
WorkerDefaults.Hookshas been removed. This is technically a breaking change, but this function was a vestigal refactoring artifact that was never used by anything, so in practice it shouldn't be breaking. PR #997. - Periodic job records are upserted immediately through a pilot when a client is started rather than the first time their associated job would run. This doesn't mean they're run immediately (they'll only run if
RunOnStartis enabled), but rather just tracked immediately. PR #998. - The job scheduler still schedules jobs in batches of up to 10,000, but when it encounters a series of consecutive timeouts it assumes that the database is in a degraded state and switches to doing work in a smaller batch size of 1,000 jobs. PR #1013.
- Other maintenance services including the job cleaner, job rescuer, and queue cleaner also prefer a batch size of 10,000, but will fall back to smaller batches of 1,000 on consecutive database timeouts. PR #1016.
- Cleanly error on invalid schema names in
Config.Schema. PR #952. - Jobs rescued by
JobRescuerno longer have their trace set to "TODO". This becomes an empty string instead. PR #1010.
This includes a minor CLI bugfix for riverpro and no other changes, see the v0.23.0 notes for major changes.
- Fixed a riverpro CLI integration point broken in v0.23.0. PR #945
Terminal UI: @almottier wrote a very cool terminal UI for River featuring real-time job monitoring with automatic refresh, job filtering, a job details view providing detailed information (plus look up by ID in the UI or by command line argument), and job actions like retry and cancellation. And as good as all that might sound, go take a look because it's even better in person.
- Preliminary River driver for SQLite (
riverdriver/riversqlite). This driver seems to produce good results as judged by the test suite, but so far has minimal real world vetting. Try it and let us know how it works out. PR #870. - CLI
river migrate-getnow takes a--schemaoption to inject a custom schema into dumped migrations and schema comments are hidden if--schemaoption isn't provided. PR #903. - Added
riverlog.NewMiddlewareCustomContextthat makes the use ofriverlogjob-persisted logging possible with non-slog loggers. PR #919. - Added
RequireInsertedOpts.Schema, allowing an explicit schema to be set when asserting on job inserts withrivertest. PR #926. - When using a driver that doesn't support listen/notify, producers within same process are notified immediately of new job inserts and queue changes (e.g. pause/resume) without having to poll when non-transactional variants are used (i.e.
Insertinstead ofInsertTx). PR #928. - Added
JobListParams.Where, which provides an escape hatch for job listing that runs arbitrary SQL with named parameters. PR #933.
- Optimized the job completer's query
JobSetStateIfRunningMany, resulting in an approximately 15% reduction in its duration when completing 2000 jobs, and around a 15-20% increase inriverbenchthroughput. PR #904. TimeStubhas been removed from therivertestpackage. Its original inclusion was entirely accidentally and it should be considered entirely an internal API. PR #912.- When storing job-persisted logging with
riverlog, if a work run's logging was completely empty, no metadata value is stored at all (previously, an empty value was stored). PR #919. - Changed the internal integration APIs for River Pro. River Pro users must upgrade both libraries as part of this update. PR #929.
- Resuming an already unpaused queue is now fully an no-op, and won't touch the row's
updated_atlike it (unintentionally) did before. PR #870. - Suppress an error log line from the producer that may occur on normal shutdown when operating in poll-only mode. PR #896.
- Added missing help documentation for CLI command
river migrate-list. PR #903. - Correct handling an explicit schema in the reindexer maintenance service. PR #916.
- Return specific explanatory error when attempting to use
JobListParams.MetadatawithJobListTxon SQLite. PR #924. - The reindexer now skips work if artifacts from a failed reindex are present under the assumption that if they are, a new reindex build is likely to fail again. Context cancel timeout is increased from 15 seconds to 1 minute, allowing more time for reindexes to finish. Timeout becomes configurable with
Config.ReindexerTimeout. PR #935. - Accessing
Client.PeriodicJobs()on an insert-only client now panics with a more helpful explanatory error message rather than an unhelpful nil pointer panic. PR #938. - Return an error when adding a new queue at runtime via the
QueueBundleif that queue was already added. PR #929.
- A new
JobArgsWithKindAliasesinterface lets job args implementKindAliasesto register a second kind that their worker will respond to. This provides a way to safely rename job kinds even with jobs using the original kind already in the database. PR #880.
- Job kinds must comply to a format of
\A[\w][\w\-\[\]<>\/.·:+]+\z, mainly in an attempt to eliminate commas and spaces to make format more predictable for an upcoming search UI. This check can be disabled for now usingConfig.SkipJobKindValidation, but this option will likely be removed in a future version of River. The newJobArgsWithKindAliasesinterface (see above) can be used to rename non-compliant kinds. PR #879.
- The
riverdatabasesqlnow fully supports raw connections throughlib/pqrather than justdatabase/sqlthrough Pgx. We don't recommend the use oflib/pqas it's an unmaintained project, but this change should help with compatibility for older projects. PR #883.
- Added
river/riverlogcontaining middleware that injects a context logger to workers that collates log output and persists it with job metadata. PR #844. - Added
JobInsertMiddlewareFuncandWorkerMiddlewareFuncto easily implement middleware with a function instead of a struct. PR #844. - Added
Config.Schemawhich lets a non-default schema be injected explicitly into a River client that'll be used for all database operations. This may be particularly useful for proxies like PgBouncer that may not respect a schema configured insearch_path. PR #848. - Added
rivertype.HookWorkEndhook interface that runs after a job has been worked. PR #863. - Added support for filtering jobs by a list of job IDs and by priorities in
JobListandJobListParams. For more flexible job listing. PR #871.
- Client no longer returns an error if stopped before startup could complete (previously, it returned the unexported
ErrShutdown). PR #841.
- A queue unpausing triggers an immediate fetch so that available jobs in the paused queue may be started faster than before. PR #854.
- Added
QueueUpdateTxAPI so there's a transactional variant of theQueueUpdateAPI from PR #834. PR #838.
- Corrected the serialization of queue control event payloads emitted by
QueueUpdate. PR #834.
- Added a
QueueUpdateAPI to theClientwhich will be used for upcoming functionality. PR #822.
- Set minimum Go version to Go 1.23. PR #811.
- Deprecate
river.JobInsertMiddlewareDefaultsandriver.WorkerMiddlewareDefaultsin favor of the more generalriver.MiddlewareDefaultsembeddable struct. The two former structs will be removed in a future version. PR #815.
- Cleanly error when attempting to add a queue at runtime to a
Clientwhich was not configured to run jobs (noWorkers). PR #826.
Worker.Middleware, introduced fairly recently in 0.17.0 that has a worker's Middleware function now taking a non-generic JobRow parameter instead of a generic Job[T]. We tried not to make this change, but found the existing middleware interface insufficient to provide the necessary range of functionality we wanted, and this is a secondary middleware facility that won't be in use for many users, so it seemed worthwhile.
- Added a new "hooks" API for tying into River functionality at various points like job inserts or working. Differs from middleware in that it doesn't go on the stack and can't modify context, but in some cases is able to run at a more granular level (e.g. for each job insert rather than each batch of inserts). PR #789.
river.Confighas a genericMiddlewaresetting that can be used as a convenient way to configure middlewares that implement multiple middleware interfaces (e.g.JobInsertMiddlewareandWorkerMiddleware). Use of this setting is preferred overConfig.JobInsertMiddlewareandConfig.WorkerMiddleware, which have been deprecated. PR #804.
- The
river.RecordOutputfunction now returns an error if the output is too large. The output is limited to 32MB in size. PR #782. - Breaking change: The
Workerinterface'sMiddlewarefunction now takes aJobRowparameter instead of a genericJob[T]. This was necessary to expand the potential of what middleware can do: by letting the executor extract a middleware stack from a worker before a job is fully unmarshaled, the middleware can also participate in the unmarshaling process. PR #783. JobListhas been reimplemented to use sqlc. PR #795.
rivertest.Worker type that was just introduced. While attempting to round out some edge cases with its design, we realized some of them simply couldn't be solved adequately without changing the overall design such that all tested jobs are inserted into the database. Given the short duration since it was released (over a weekend) it's unlikely many users have adopted it and it seemed best to rip off the bandaid to fix it before it gets widely used.
-
Jobs can now store a recorded "output" value, a JSON-encoded payload set by the job during execution and stored in the job's metadata. The
river.RecordOutputfunction makes it easy to use the job row to store transient/temporary values that are needed for introspection or for other downstream jobs. The output can be accessed using theJobRow.Output()helper method.This output is stored at the same time as the job is completed following execution, so it does not require additional database calls or overhead. Output can be anything that can be stored in a Postgres JSONB field, though for performance reasons it should be limited in size. PR #758.
-
Breaking change: The
rivertest.Workertype now requires all jobs to be inserted into the database. The original design allowed workers to be tested without hitting the database at all. Ultimately this design made it hard to correctly simulate features likeJobCompleteTxand the other potential solutions seemed undesirable.As part of this change, the
WorkandWorkJobmethods now take a transaction argument. The expectation is that a transaction will be opened by the caller and rolled back after test completion. Additionally, the return signature was changed to return aWorkResultstruct alongside the error. The struct includes the post-execution job row as well as the event kind that occurred, making it easy to inspect the job's state after execution.Finally, the implementation was refactored so that it uses the real
river.Clientinsert path, and also uses the same job execution path as real execution. This minimizes the potential for differences in behavior between testing and real execution. PR #766. -
Adjusted panic stack traces to filter out irrelevant frames like the ones generated by the runtime package that constructed the trace, or River's internal rescuing code. This makes the first panic frame reflect the actual panic origin for easier debugging. PR #774.
- Fix error message on unsuccessful client subscribe that erroneously referred to "Workers" not configured. PR #771.
- Fix an issue with encoding unique keys in riverdatabasesql driver. PR #777.
- Exposed
TestConfigstruct onConfigunder theTestfield for configuration that is specific to test environments. For now, the only field on this type isTime, which can be used to set a syntheticTimeGeneratorfor tests. A stubbable time generator was added asrivertest.TimeStubto allow time to be easily stubbed in tests. PR #754. - New
rivertest.Workertype to make it significantly easier to test River workers. Either real or synthetic jobs can be worked using this interface, generally without requiring any database interactions. TheWorkertype provides a realistic execution environment with access to the full range of River features, includingriver.ClientFromContext, middleware (both global and per-worker), and timeouts. PR #753.
- Errors returned from retryable jobs are now logged with warning logs instead of error logs. Error logs are still used for jobs that error after reaching
max_attempts. PR #743. - Remove range variable capture in
forloops and use simplifiedrangesyntax. Each of these requires Go 1.22 or later, which was already our minimum required version since Go 1.23 was released. PR #755.
riverdatabasesqldriver: properly handlenilvalues inbytea[]inputs. This fixes the driver's handling of empty unique keys on insert for non-unique jobs with the newer unique jobs implementation. PR #739.JobCompleteTxnow returnsrivertype.ErrNotFoundif the job doesn't exist instead of panicking. PR #753.
NeverSchedulereturns aPeriodicSchedulethat never runs. This can be used to effectively disable the reindexer or any other maintenance service. PR #718.- Add
SkipUnknownJobCheckclient config option to skip job arg worker validation. PR #731.
-
The reindexer maintenance process has been enabled. As of now, it will reindex only the
river_job_args_indexandriver_jobs_metadata_indexGINindexes, which are more prone to bloat than b-tree indexes. By default it runs daily at midnight UTC, but can be customized on theriver.Configtype viaReindexerSchedule. Most installations will benefit from this process, but it can be disabled altogether usingNeverSchedule. PR #718. -
Periodic jobs now have a
"periodic": trueattribute set in their metadata to make them more easily distinguishable from other types of jobs. PR #728. -
Snoozing a job now causes its
attemptto be decremented, whereas previously themax_attemptswould be incremented. In either case, this avoids allowing a snooze to exhaust a job's retries; however the new behavior also avoids potential issues with wrapping themax_attemptsvalue, and makes it simpler to implement aRetryPolicybased on eitherattemptormax_attempts. The number of snoozes is also tracked in the job's metadata assnoozesfor debugging purposes.The implementation of the builtin
RetryPolicyimplementations is not changed, so this change should not cause any user-facing breakage unless you're relying onattempt - len(errors)for some reason. PR #730. -
ByPerioduniqueness is now based off a job'sScheduledAtinstead of the current time if it has a value. PR #734.
- The River CLI will now respect the standard set of
PG*environment variables likePGHOST,PGPORT,PGDATABASE,PGUSER,PGPASSWORD, andPGSSLMODEto configure a target database when the--database-urlparameter is omitted. PR #702. - Add missing doc for
JobRow.UniqueStates+ revealrivertype.UniqueOptsByStateDefault()to provide access to the default set of unique job states. PR #707.
- Sleep durations are now logged as Go-like duration strings (e.g. "10s") in either text or JSON instead of duration strings in text and nanoseconds in JSON. PR #699.
- Altered the migration comments from
river migrate-getto include the "line" of the migration being run (main, or for River Proworkflowandsequence) to make them more distinguishable. PR #703. - Fewer slice allocations during unique insertions. PR #705.
- Exponential backoffs at degenerately high job attempts (>= 310) no longer risk overflowing
time.Duration. PR #698.
- Dropped internal random generators in favor of
math/rand/v2, which will have the effect of making code fully incompatible with Go 1.21 (go.modhas specified a minimum of 1.22 for some time already though). PR #691.
- 006 migration now tolerates previous existence of a
unique_statescolumn in case it was added separately so that the new index could be raised withCONCURRENTLY. PR #690.
- Cancellation of running jobs relied on a channel that was only being received when in the job fetch routine, meaning that jobs which were cancelled would not be cancelled until the next scheduled fetch. This was fixed by also receiving from the job cancellation channel when in the main producer loop, even if no fetches are happening. PR #678.
- Job insert middleware were not being utilized for periodic jobs. This insertion path has been refactored to rely on the unified insertion path from the client. Fixes #675. PR #679.
- In PR #663 the client was changed to be more aggressive about re-fetching when it had previously fetched a full batch. Unfortunately a clause was missed, which resulted in the client being more aggressive any time even a single job was fetched on the previous attempt. This was corrected with a conditional to ensure it only happens when the last fetch was full. PR #668.
- Expose
JobCancelErrorandJobSnoozeErrortypes to more easily facilitate testing. PR #665.
- Tune the client to be more aggressive about fetching when it just fetched a full batch of jobs, or when it skipped its previous triggered fetch because it was already full. This should bring more consistent throughput to poll-only mode and in cases where there is a backlog of existing jobs but new ones aren't being actively inserted. This will result in increased fetch load on many installations, with the benefit of increased throughput. As before,
FetchCooldownstill limits how frequently these fetches can occur on each client and can be increased to reduce the amount of fetch querying. Thanks Chris Gaffney (@gaffneyc) for the idea, initial implementation, and benchmarks. PR #663.
riverpgxv5driver:Hijack()the underlying listener connection as soon as it is acquired from thepgxpool.Poolin order to prevent the pool from automatically closing it after it reaches its max age. A max lifetime makes sense in the context of a pool with many conns, but a long-lived listener does not need a max lifetime as long as it can ensure the conn remains healthy. PR #661.
-
A middleware system was added for job insertion and execution, providing the ability to extract shared functionality across workers. Both
JobInsertMiddlewareandWorkerMiddlewarecan be configured globally on theClient, andWorkerMiddlewarecan also be added on a per-worker basis using the newMiddlewaremethod onWorker[T]. Middleware can be useful for logging, telemetry, or for building higher level abstractions on top of base River functionality.Despite the interface expansion, users should not encounter any breakage if they're embedding the
WorkerDefaultstype in their workers as recommended. PR #632.
- Breaking change: The advisory lock unique jobs implementation which was deprecated in v0.12.0 has been removed. Users of that feature should first upgrade to v0.12.1 to ensure they don't see any warning logs about using the deprecated advisory lock uniqueness. The new, faster unique implementation will be used automatically as long as the
UniqueOpts.ByStatelist hasn't been customized to remove required states (pending,scheduled,available, andrunning). As of this release, customizingByStatewithout these required states returns an error. PR #614. - Single job inserts are now unified under the hood to use the
InsertManybulk insert query. This should not be noticeable to users, and the unified code path will make it easier to build new features going forward. PR #614.
- Allow
river.JobCancelto accept anilerror as input without panicking. PR #634.
- The
BatchCompleterthat marks jobs as completed can now batch database updates for all states of jobs that have finished execution. Prior to this change, onlycompletedjobs were batched into a singleUPDATEcall, while jobs moving to any other state used a singleUPDATEper job. This change should significantly reduce database and pool contention on high volume system when jobs get retried, snoozed, cancelled, or discarded following execution. PR #617.
- Unique job changes from v0.12.0 / PR #590 introduced a bug with scheduled or retryable unique jobs where they could be considered in conflict with themselves and moved to
discardedby mistake. There was also a possibility of a broken job scheduler if duplicateretryableunique jobs were attempted to be scheduled at the same time. The job scheduling query was corrected to address these issues along with missing test coverage. PR #619.
go install github.com/riverqueue/river/cmd/river@latest
river migrate-up --database-url "$DATABASE_URL"If not using River's internal migration system, the raw SQL can alternatively be dumped with:
go install github.com/riverqueue/river/cmd/river@latest
river migrate-get --version 6 --up > river6.up.sql
river migrate-get --version 6 --down > river6.down.sqlThe migration includes a new index. Users with a very large job table may want to consider raising the index separately using CONCURRENTLY (which must be run outside of a transaction), then run river migrate-up to finalize the process (it will tolerate an index that already exists):
ALTER TABLE river_job ADD COLUMN unique_states BIT(8);
CREATE UNIQUE INDEX CONCURRENTLY river_job_unique_idx ON river_job (unique_key)
WHERE unique_key IS NOT NULL
AND unique_states IS NOT NULL
AND river_job_state_in_bitmask(unique_states, state);go install github.com/riverqueue/river/cmd/river@latest
river migrate-up --database-url "$DATABASE_URL"rivertest.WorkContext, a test function that can be used to initialize a context to test aJobArgs.Workimplementation that will have a client set to context for use withriver.ClientFromContext. PR #526.- A new
river migrate-listcommand is available which lists available migrations and which version a target database is migrated to. PR #534. river versionorriver --versionnow prints River version information. PR #537.Config.JobCleanerTimeoutwas added to allow configuration of the job cleaner query timeout. In some deployments with millions of stale jobs, the cleaner may not be able to complete its query within the default 30 seconds. PR #576.
InsertMany and one in rivermigrate. As before, we try never to make breaking changes, but these ones were deemed worth it because of minimal impact and to help avoid panics.
-
Breaking change:
Client.InsertMany/InsertManyTxnow return the inserted rows rather than merely returning a count of the inserted rows. The new implementations no longer use Postgres'COPY FROMprotocol in order to facilitate return values.Users who relied on the return count can merely wrap the returned rows in a
len()to return to that behavior, or you can continue using the old APIs using their new namesInsertManyFastandInsertManyFastTx. PR #589. -
Breaking change:
rivermigrate.Newnow returns a possible error along with a migrator. An error may be returned, for example, when a migration line is configured that doesn't exist. PR #558.# before migrator := rivermigrate.New(riverpgxv5.New(dbPool), nil) # after migrator, err := rivermigrate.New(riverpgxv5.New(dbPool), nil) if err != nil { // handle error }
-
Unique jobs have been improved to allow bulk insertion of unique jobs via
InsertMany/InsertManyTx, and to allow customizing theByStatelist to add or remove certain states. This enables users to expand the set of unique states to also includecancelledanddiscardedjobs, or to removeretryablefrom uniqueness consideration. This updated implementation maintains the speed advantage of the newer index-backed uniqueness system, while allowing some flexibility in which job states.Unique jobs utilizing
ByArgscan now also opt to have a subset of the job's arguments considered for uniqueness. For example, you could choose to consider only thecustomer_idfield while ignoring thetrace_idfield:type MyJobArgs { CustomerID string `json:"customer_id" river:"unique` TraceID string `json:"trace_id"` }
Any fields considered in uniqueness are also sorted alphabetically in order to guarantee a consistent result, even if the encoded JSON isn't sorted consistently. For example
encoding/jsonencodes struct fields in their defined order, so merely reordering struct fields would previously have been enough to cause a new job to not be considered identical to a pre-existing one with different JSON order.The
UniqueOptstype also gains anExcludeKindoption for cases where uniqueness needs to be guaranteed across multiple job types.In-flight unique jobs using the previous designs will continue to be executed successfully with these changes, so there should be no need for downtime as part of the migration. However the v6 migration adds a new unique job index while also removing the old one, so users with in-flight unique jobs may also wish to avoid removing the old index until the new River release has been deployed in order to guarantee that jobs aren't duplicated by old River code once that index is removed.
Deprecated: The original unique jobs implementation which relied on advisory locks has been deprecated, but not yet removed. The only way to trigger this old code path is with a single insert (
Insert/InsertTx) and usingUniqueOpts.ByStatewith a custom list of states that omits some of the now-required states for unique jobs. Specifically,pending,scheduled,available, andrunningcan not be removed from theByStatelist with the new implementation. These are included in the default list so only the places which customize this attribute need to be updated to opt into the new (much faster) unique jobs. The advisory lock unique implementation will be removed in an upcoming release, and until then emits warning level logs when it's used. -
Deprecated: The
MigrateTxmethod ofrivermigratehas been deprecated. It turns out there are certain combinations of schema changes which cannot be run within a single transaction, and the migrator now prefers to run each migration in its own transaction, one-at-a-time.MigrateTxwill be removed in future version. -
The migrator now produces a better error in case of a non-existent migration line including suggestions for known migration lines that are similar in name to the invalid one. PR #558.
- Fixed a panic that'd occur if
StopAndCancelwas invoked before a client was started. PR #557. - A
PeriodicJobConstructorshould be able to returnnilJobArgsif it wishes to not have any job inserted. However, this was either never working or was broken at some point. It's now fixed. Thanks @semanser! PR #572. - Fixed a nil pointer exception if
Client.Subscribewas called when the client had no configured workers (it still, panics with a more instructive error message now). PR #599.
- Fixed release script that caused CLI to become uninstallable because its reference to
riversharedwasn't updated. PR #541.
- Producer's logs are quieter unless jobs are actively being worked. PR #529.
- River CLI now accepts
postgresql://URL schemes in addition topostgres://. PR #532.
- Derive all internal contexts from user-provided
Clientcontext. This includes the job fetch context, notifier unlisten, and completer. PR #514. - Lowered the
godirectives ingo.modto Go 1.21, which River aims to support. A more modern version of Go is specified with thetoolchaindirective. This should provide more flexibility on the minimum required Go version for programs importing River. PR #522.
database/sqldriver: fix default value ofscheduled_atforInsertManyTxwhen it is not specified inInsertOpts. PR #504.- Change
ColumnExistsquery to respectsearch_path, thereby allowing migrations to be runnable outside of default schema. PR #505.
- Expose
DriveronClientfor additional River Pro integrations. This is not a stable API and should generally not be used by others. PR #497.
- Include
pendingstate inJobListParamsby default so pending jobs are included inJobList/JobListTxresults. PR #477. - Quote strings when using
Client.JobListfunctions with thedatabase/sqldriver. PR #481. - Remove use of
filepathfor interacting with embedded migration files, fixing the migration CLI for Windows. PR #485. - Respect
ScheduledAtif set to a non-zero value byJobArgsWithInsertOpts. This allows for job arg definitions to utilize custom logic at the args level for determining when the job should be scheduled. PR #487.
- Migration version 005 has been altered so that it can run even if the
river_migrationtable isn't present, making it more friendly for projects that aren't using River's internal migration system. PR #465.
go install github.com/riverqueue/river/cmd/river@latest
river migrate-up --database-url "$DATABASE_URL"If not using River's internal migration system, the raw SQL can alternatively be dumped with:
go install github.com/riverqueue/river/cmd/river@latest
river migrate-get --version 5 --up > river5.up.sql
river migrate-get --version 5 --down > river5.down.sqlThe migration includes a new index. Users with a very large job table may want to consider raising the index separately using CONCURRENTLY (which must be run outside of a transaction), then run river migrate-up to finalize the process (it will tolerate an index that already exists):
ALTER TABLE river_job
ADD COLUMN unique_key bytea;
CREATE UNIQUE INDEX CONCURRENTLY river_job_kind_unique_key_idx ON river_job (kind, unique_key) WHERE unique_key IS NOT NULL;go install github.com/riverqueue/river/cmd/river@latest
river migrate-up --database-url "$DATABASE_URL"- Fully functional driver for
database/sqlfor use with packages like Bun and GORM. PR #351. - Queues can be added after a client is initialized using
client.Queues().Add(queueName string, queueConfig QueueConfig). PR #410. - Migration that adds a
linecolumn to theriver_migrationtable so that it can support multiple migration lines. PR #435. --lineflag added to the River CLI. PR #454.
- Tags are now limited to 255 characters in length, and should match the regex
\A[\w][\w\-]+[\w]\z(importantly, they can't contain commas). PR #351. - Many info logging statements have been demoted to debug level. PR #452.
pendingis now part of the default set of unique job states. PR #461.
Config.TestOnlyhas been added. It disables various features in the River client like staggered maintenance service start that are useful in production, but may be somewhat harmful in tests because they make start/stop slower. PR #414.
ErrorHandler. As before, we try never to make breaking changes, but this one was deemed quite important because ErrorHandler was fundamentally lacking important functionality.
-
Breaking change: Add stack trace to
ErrorHandler.HandlePanicFunc. Fixing code only requires adding a newtrace stringargument toHandlePanicFunc. PR #423.# before HandlePanic(ctx context.Context, job *rivertype.JobRow, panicVal any) *ErrorHandlerResult # after HandlePanic(ctx context.Context, job *rivertype.JobRow, panicVal any, trace string) *ErrorHandlerResult
- Pausing or resuming a queue that was already paused or not paused respectively no longer returns
rivertype.ErrNotFound. The same goes for pausing or resuming using the all queues string (*) when no queues are in the database (previously that also returnedrivertype.ErrNotFound). PR #408. - Fix a bug where periodic job constructors were only called once when adding the periodic job rather than being invoked every time the periodic job is scheduled. PR #420.
- Add transaction variants for queue-related client functions:
QueueGetTx,QueueListTx,QueuePauseTx, andQueueResumeTx. PR #402.
- Fix possible Client shutdown panics if the user-provided context is cancelled while jobs are still running. PR #401.
- The default max attempts of 25 can now be customized on a per-client basis using
Config.MaxAttempts. This is in addition to the ability to customize at the job type level withJobArgs, or on a per-job basis usingInsertOpts. PR #383. - Add
JobDelete/JobDeleteTxAPIs onClientto allow permanently deleting any job that's not currently running. PR #390.
- Fix
StopAndCancelto not hang if called in parallel to an ongoingStopcall. PR #376.
- 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.
- 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.
- 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.
RequireNotInsertedtest helper (in addition to the existingRequireInserted) that verifies that a job with matching conditions was not inserted. PR #237.
- The periodic job enqueuer now sets
scheduled_atof inserted jobs to the more precise time of when they were scheduled to run, as opposed to when they were inserted. PR #341.
- Remove use of
github.com/lib/pq, making it once again a test-only dependency. PR #337.
-
Add
pendingjob state. This is currently unused, but will be used to build higher level functionality for staging jobs that are not yet ready to run (for some reason other than their scheduled time being in the future). Pending jobs will never be run or deleted and must first be moved to another state by external code. PR #301. -
Queue status tracking, pause and resume. PR #301.
A useful operational lever is the ability to pause and resume a queue without shutting down clients. In addition to pause/resume being a feature request from #54, as part of the work on River's UI it's been useful to list out the active queues so that they can be displayed and manipulated.
A new
river_queuetable is introduced in the v4 migration for this purpose. Upon startup, every producer in each RiverClientwill make anUPSERTquery to the database to either register the queue as being active, or if it already exists it will instead bump the timestamp to keep it active. This query will be run periodically in each producer as long as theClientis alive, even if the queue is paused. A separate query will delete/purge any queues which have not been active in awhile (currently fixed to 24 hours).QueuePauseandQueueResumeAPIs have been introduced toClientpause and resume a single queue by name, or all queues using the special*value. Each producer will watch for notifications on the relevantLISTEN/NOTIFYtopic unless operating in poll-only mode, in which case they will periodically poll for changes to their queue record in the database.
-
Job insert notifications are now handled within application code rather than within the database using triggers. PR #301.
The initial design for River utilized a trigger on job insert that issued notifications (
NOTIFY) so that listening clients could quickly pick up the work if they were idle. While this is good for lowering latency, it does have the side effect of emitting a large amount of notifications any time there are lots of jobs being inserted. This adds overhead, particularly to high-throughput installations.To improve this situation and reduce overhead in high-throughput installations, the notifications have been refactored to be emitted at the application level. A client-level debouncer ensures that these notifications are not emitted more often than they could be useful. If a queue is due for an insert notification (on a particular Postgres schema), the notification is piggy-backed onto the insert query within the transaction. While this has the impact of increasing insert latency for a certain percentage of cases, the effect should be small.
Additionally, initial releases of River did not properly scope notification topics within the global
LISTEN/NOTIFYnamespace. If two River installations were operating on the same Postgres database but within different schemas (search paths), their notifications would be emitted on a shared topic name. This is no longer the case and all notifications are prefixed with a{schema_name}.string. -
Add
NOT NULLconstraints to the database forriver_job.argsandriver_job.metadata. Normal code paths should never have allowed for null values any way, but this constraint further strengthens the guarantee. PR #301. -
Stricter constraint on
river_job.finalized_atto ensure it is only set when paired with a finalized state (completed, discarded, cancelled). Normal code paths should never have allowed for invalid values any way, but this constraint further strengthens the guarantee. PR #301.
- Update job state references in
./cmd/riverand some documentation torivertype. Thanks Danny Hermes (@dhermes)! 🙏🏻 PR #315.
- Breaking change: There are a number of small breaking changes in the job list API using
JobList/JobListTx:- Now support querying jobs by a list of Job Kinds and States. Also allows for filtering by specific timestamp values. Thank you Jos Kraaijeveld (@thatjos)! 🙏🏻 PR #236.
- Job listing now defaults to ordering by job ID (
JobListOrderByID) instead of a job timestamp dependent on requested job state. The previous ordering behavior is still available withNewJobListParams().OrderBy(JobListOrderByTime, SortOrderAsc). PR #307. - The function
JobListCursorFromJobno longer needs a sort order parameter. Instead, sort order is determined based on the job list parameters that the cursor is subsequently used with. PR #307.
- Breaking change: Client
InsertandInsertTxfunctions now return aJobInsertResultstruct instead of aJobRow. This allows the result to include metadata like the newUniqueSkippedAsDuplicateproperty, so callers can tell whether an inserted job was skipped due to unique constraint. PR #292. - Breaking change: Client
InsertManyandInsertManyTxnow return number of jobs inserted asintinstead ofint64. This change was made to make the type in use a little more idiomatic. PR #293. - Breaking change:
river.JobState*type aliases have been removed. All job state constants should be accessed throughrivertype.JobState*instead. PR #300.
See also the 0.4.0 release blog post with code samples and rationale behind various changes.
- The River client now supports "poll only" mode with
Config.PollOnlywhich makes it avoid issuingLISTENstatements 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, butPollOnlypotentially makes River operable on systems without listen/notify support, like PgBouncer operating in transaction pooling mode. PR #281. - Added
rivertype.JobStates()that returns the full list of possible job states. PR #297.
- New periodic jobs can now be added after a client's already started using
Client.PeriodicJobs().Add()and removed withRemove(). PR #288.
- The level of some of River's common log statements has changed, most often demoting
infostatements todebugso thatinfo-level logging is overall less verbose. PR #275.
- Fixed a bug in the (log-only for now) reindexer service in which it might repeat its work loop multiple times unexpectedly while stopping. PR #280.
- Periodic job enqueuer now bases next run times on each periodic job's last target run time, instead of the time at which the enqueuer is currently running. This is a small difference that will be unnoticeable for most purposes, but makes scheduling of jobs with short cron frequencies a little more accurate. PR #284.
- Fixed a bug in the elector in which it was possible for a resigning, but not completely stopped, elector to reelect despite having just resigned. PR #286.
Although it comes with a number of improvements, there's nothing particularly notable about version 0.1.0. Until now we've only been incrementing the patch version given the project's nascent nature, but from here on we'll try to adhere more closely to semantic versioning, using the patch version for bug fixes, and incrementing the minor version when new functionality is added.
- The River CLI now supports
river benchto benchmark River's job throughput against a database. PR #254. - The River CLI now has a
river migrate-getcommand to dump SQL for River migrations for use in alternative migration frameworks. Use it likeriver migrate-get --up --version 3 > version3.up.sql. PR #273. - The River CLI's
migrate-downandmigrate-upoptions get two new options for--dry-runand--show-sql. They can be combined to easily run a preflight check on a River upgrade to see which migration commands would be run on a database, but without actually running them. PR #273. - The River client gets a new
Client.SubscribeConfigfunction that lets a subscriber specify the maximum size of their subscription channel. PR #258.
- River uses a new job completer that batches up completion work so that large numbers of them can be performed more efficiently. In a purely synthetic (i.e. mostly unrealistic) benchmark, River's job throughput increases ~4.5x. PR #258.
- Changed default client IDs to be a combination of hostname and the time which the client started. This can still be changed by specifying
Config.ID. PR #255. - Notifier refactored for better robustness and testability. PR #253.
- Fixed a problem in
riverpgxv5'sListenerwhere it wouldn't unset an internal connection ifClosereturned an error, making the listener not reusable. Thanks @mfrister for pointing this one out! PR #246.
- Fixed a memory leak caused by not always cancelling the context used to enable jobs to be cancelled remotely. PR #243.
JobListParams.Kinds()has been added so that jobs can now be listed by kind. PR #212.
- The underlying driver system's been entirely revamped so that River's non-test code is now decoupled from
pgx/v5. This will allow additional drivers to be implemented, although there are no additional ones for now. PR #212.
- Fixed a memory leak caused by allocating a new random source on every job execution. Thank you @shawnstephens for reporting ❤️ PR #240.
- Fix a problem where
JobListParams.Queues()didn't filter correctly based on its arguments. PR #212. - Fix a problem in
DebouncedChanwhere it would fire on its "out" channel too often when it was being signaled continuously on its "in" channel. This would have caused work to be fetched more often than intended in busy systems. PR #222.
- 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.
- Tweaked behavior of
JobRetryso that it does actually update theScheduledAttime of the job in all cases where the job is actually being rescheduled. As before, jobs which are already available with a pastScheduledAtwill not be touched by this query so that they retain their place in line. PR #211.
- Fixed a leadership re-election issue that was exposed by the fix in #199. Because we were internally using the same TTL for both an internal timer/ticker and the database update to set the new leader expiration time, a leader wasn't guaranteed to successfully re-elect itself even under normal operation. PR #217.
- Added an
IDsetting to theClientConfigtype to allow users to override client IDs with their own naming convention. Expose the client ID programmatically (in case it's generated) in a newClient.ID()method. PR #206.
- Fix a leadership re-election query bug that would cause past leaders to think they were continuing to win elections. PR #199.
- Added
JobGetandJobGetTxto theClientto enable easily fetching a single job row from code for introspection. [PR #186]. - Added
JobRetryandJobRetryTxto theClientto enable a job to be retried immediately, even if it has already completed, been cancelled, or been discarded. [PR #190].
- Validate queue name on job insertion. Allow queue names with hyphen separators in addition to underscore. PR #184.
- Remove a debug statement from periodic job enqueuer that was accidentally left in. PR #176.
- Added
JobCancelandJobCancelTxto theClientto enable cancellation of jobs. PR #141 and PR #152. - Added
ClientFromContextandClientFromContextSafelyhelpers to extract theClientfrom the worker's context where it is now available to workers. This simplifies making the River client available within your workers for i.e. enqueueing additional jobs. PR #145. - Add
JobListAPI for listing jobs. PR #117. - Added
river validatecommand which fails with a non-zero exit code unless all migrations are applied. PR #170.
- For short
JobSnoozetimes (smaller than the scheduler's run interval) put the job straight into anavailablestate with the specifiedscheduled_attime. This avoids an artificially long delay waiting for the next scheduler run. PR #162.
- Fixed incorrect default value handling for
ScheduledAtoption withInsertMany/InsertManyTx. PR #149. - Add missing
t.Helper()calls inrivertestinternal functions that caused it to report itself as the site of a test failure. PR #151. - Fixed problem where job uniqueness wasn't being respected when used in conjunction with periodic jobs. PR #168.
- Calls to
Stoperror if the client hasn't been started yet. PR #138.
- Fix typo in leadership resignation query to ensure faster new leader takeover. PR #134.
- Elector now uses the same
log/sloginstance configured by its parent client. PR #137. - Notifier now uses the same
log/sloginstance configured by its parent client. PR #140.
- Ensure
ScheduledAtis respected onInsertManyTx. PR #121.
- River CLI
go.sumentries fixed for 0.0.13 release.
- Added
riverdriver/riverdatabasesqldriver to enable River Go migrations through Go's built indatabase/sqlpackage. PR #98.
- Errored jobs that have a very short duration before their next retry (<5 seconds) are set to
availableimmediately instead of being madescheduledand having to wait for the scheduler to make a pass to make them workable. PR #105. riverdriverbecomes its own submodule. It contains types thatriverdriver/riverdatabasesqlandriverdriver/riverpgxv5need to reference. PR #98.- The
river/cmd/riverCLI has been made its own Go module. This is possible now that it uses the exportedriver/rivermigrateAPI, and will help with project maintainability. PR #107.
- Added
river/rivermigratepackage to enable migrations from Go code as an alternative to using the CLI. PR #67.
StopandStopAndCancelhave been changed to respect the provided context argument. When that context is cancelled or times out, those methods will now immediately return with the context's error, even if the Client's shutdown has not yet completed. Apps may need to adjust their graceful shutdown logic to account for this. PR #79.
NewClientno longer errors if it was provided a workers bundle with zero workers. Instead, that check's been moved toClient.Startinstead. This allows adding workers to a bundle that'd like to reference a River client by lettingAddWorkerbe invoked after a client reference is available fromNewClient. PR #87.
- Added
Example_scheduledJob, demonstrating how to schedule a job to be run in the future. - Added
Stoppedmethod toClientto make it easier to wait for graceful shutdown to complete.
- Fixed a panic in the periodic job enqueuer caused by sometimes trying to reset a
time.Tickerwith a negative or zero duration. Fixed in PR #73.
DefaultClientRetryPolicy: calculate the next attempt based on the current time instead of the time the prior attempt began.
- DATABASE MIGRATION: Database schema v3 was introduced in v0.0.8 and contained an obvious flaw preventing it from running against existing tables. This migration was altered to execute the migration in multiple steps.
- License changed from LGPLv3 to MPL-2.0.
- DATABASE MIGRATION: Database schema v3, alter river_job tags column to set a default of
[]and add not null constraint.
- Constants renamed so that adjectives like
DefaultandMinbecome suffixes instead of prefixes. So for example,DefaultFetchCooldownbecomesFetchCooldownDefault. - Rename
AttemptError.NumtoAttemptError.Attemptto better fit with the name ofJobRow.Attempt. - Document
JobState,AttemptError, and all fields its fields. - A
NULLtags value read from a database job is left as[]string(nil)onJobRow.Tagsrather than a zero-element slice of[]string{}.appendandlenboth work on anilslice, so this should be functionally identical.
JobRow,JobState, and other related types move intoriver/rivertypeso they can more easily be shared amongst packages. Most of the River API doesn't change becauseJobRowis embedded onriver.Job, which doesn't move.
- Remove
replacedirective from the project'sgo.modso that it's possible to install River CLI with@latest.
- Allow River clients to be created with a driver with
nildatabase pool for use in testing. - Update River test helpers API to use River drivers like
riverdriver/riverpgxv5to make them agnostic to the third party database package in use. - Document
Config.JobTimeout's default value. - Functionally disable the
Reindexerqueue maintenance service. It'd previously only operated on currently unused indexes anyway, indexes probably do not need to be rebuilt except under fairly rare circumstances, and it needs more work to make sure it's shored up against edge cases like indexes that fail to rebuild before a client restart.
- Fix license detection issues with
riverdriver/riverpgxv5submodule. - Ensure that river requires the
riverpgxv5module with the same version.
- Pin own
riverpgxv5dependency to v0.0.1 and make it a direct locally-replaced dependency. This should allow projects to import versioned deps of both river andriverpgxv5.
- This is the initial prerelease of River.