{"id":8560852,"name":"github.com/riverqueue/river","ecosystem":"go","description":"Package river is a robust high-performance job processing system for Go and\nPostgres.\n\nSee homepage, docs, and godoc, as well as the River UI.\n\nBeing built for Postgres, River encourages the use of the same database for\napplication data and job queue. By enqueueing jobs transactionally along with\nother database changes, whole classes of distributed systems problems are\navoided. Jobs are guaranteed to be enqueued if their transaction commits, are\nremoved if their transaction rolls back, and aren't visible for work _until_\ncommit. See transactional enqueueing for more background on this philosophy.\n\nJobs are defined in struct pairs, with an implementation of `JobArgs` and one\nof `Worker`.\n\nJob args contain `json` annotations and define how jobs are serialized to and\nfrom the database, along with a \"kind\", a stable string that uniquely identifies\nthe job.\n\nWorkers expose a `Work` function that dictates how jobs run.\n\nJobs are uniquely identified by their \"kind\" string. Workers are registered on\nstart up so that River knows how to assign jobs to workers:\n\nA River `Client` provides an interface for job insertion and manages job\nprocessing and maintenance services. A client's created with a database pool,\ndriver, and config struct containing a `Workers` bundle and other settings.\nHere's a client `Client` working one queue (`\"default\"`) with up to 100 worker\ngoroutines at a time:\n\n## Insert-only clients\n\nIt's often desirable to have a client that'll be used for inserting jobs, but\nnot working them. This is possible by omitting the `Queues` configuration, and\nskipping the call to `Start`:\n\n`Workers` can also be omitted, but it's better to include it so River can check\nthat inserted job kinds have a worker that can run them.\n\n## Stopping\n\nThe client should also be stopped on program shutdown:\n\nThere are some complexities around ensuring clients stop cleanly, but also in a\ntimely manner. See graceful shutdown for more details on River's stop modes.\n\n`Client.InsertTx` is used in conjunction with an instance of job args to\ninsert a job to work on a transaction:\n\nSee the `InsertAndWork` example for complete code.\n\nBatch job insertion for efficiently inserting many jobs at once using\nPostgres `COPY FROM`.\n\nCancelling jobs from inside a work function.\n\nError and panic handling.\n\nMultiple queues to better guarantee job throughput, worker availability,\nand isolation between components.\n\nPeriodic and cron jobs.\n\nScheduled jobs that run automatically at their scheduled time in the\nfuture.\n\nSnoozing jobs from inside a work function.\n\nSubscriptions to queue activity and statistics, providing easy hooks for\ntelemetry like logging and metrics.\n\nTest helpers to verify that jobs are inserted as expected.\n\nTransactional job completion to guarantee job completion commits with\nother changes in a transaction.\n\nUnique jobs by args, period, queue, and state.\n\nWeb UI for inspecting and interacting with jobs and queues.\n\nWork functions for simplified worker implementation.\n\n## Cross language enqueueing\n\nRiver supports inserting jobs in some non-Go languages which are then worked by Go implementations. This may be desirable in performance sensitive cases so that jobs can take advantage of Go's fast runtime.\n\nSee developing River.\n\nExample_batchInsert demonstrates how many jobs can be inserted for work as\npart of a single operation.\n\n\nExample_completeJobWithinTx demonstrates how to transactionally complete\na job alongside other database changes being made.\n\n\nExample_cronJob demonstrates how to create a cron job with a more complex\nschedule using a third party cron package to parse more elaborate crontab\nsyntax.\n\n\nExample_customInsertOpts demonstrates the use of a job with custom\njob-specific insertion options.\n\n\nExample_errorHandler demonstrates how to use the ErrorHandler interface for\ncustom application telemetry.\n\n\nExample_globalHooks demonstrates the use of hooks to modify River behavior\nwhich are global to a River client.\n\n\nExample_globalMiddleware demonstrates the use of middleware to modify River\nbehavior which are global to a River client.\n\n\nExample_gracefulShutdown demonstrates a realistic-looking stop loop for\nRiver. It listens for SIGINT/SIGTERM (like might be received by a Ctrl+C\nlocally or on a platform like Heroku to stop a process) and when received,\ntries a soft stop that waits for work to finish. If it doesn't finish in\ntime, a second SIGINT/SIGTERM will initiate a hard stop that cancels all jobs\nusing context cancellation. A third will give up on the stop procedure and\nexit uncleanly.\n\n\nExample_insertAndWork demonstrates how to register job workers, start a\nclient, and insert a job on it to be worked.\n\n\nExample_jobArgsHooks demonstrates the use of hooks to modify River behavior.\n\n\nExample_jobCancel demonstrates how to permanently cancel a job from within\nWork using JobCancel.\n\n\nExample_jobCancelFromClient demonstrates how to permanently cancel a job from\nany Client using JobCancel.\n\n\nExample_jobSnooze demonstrates how to snooze a job from within Work using\nJobSnooze. The job will be run again after 5 minutes and the snooze attempt\nwill decrement the job's attempt count, ensuring that one can snooze as many\ntimes as desired without being impacted by the max attempts.\n\n\nExample_periodicJob demonstrates the use of a periodic job.\n\n\nExample_queuePause demonstrates how to pause queues to prevent them from\nworking new jobs, and later resume them.\n\n\nExample_scheduledJob demonstrates how to schedule a job to be worked in the\nfuture.\n\n\nExample_subscription demonstrates the use of client subscriptions to receive\nevents containing information about worked jobs.\n\n\nExample_uniqueJob demonstrates the use of a job with custom\njob-specific insertion options.\n\n\nExample_workFunc demonstrates the use of river.WorkFunc, which can be used to\neasily add a worker with only a function instead of having to implement a\nfull worker struct.","homepage":"https://github.com/riverqueue/river","licenses":"MPL-2.0","normalized_licenses":["MPL-2.0"],"repository_url":"https://github.com/riverqueue/river","keywords_array":[],"namespace":"github.com/riverqueue","versions_count":97,"first_release_published_at":"2023-11-08T17:42:39.000Z","latest_release_published_at":"2026-05-22T17:53:58.000Z","latest_release_number":"v0.38.0","last_synced_at":"2026-05-30T20:01:54.858Z","created_at":"2023-11-09T01:26:35.521Z","updated_at":"2026-05-30T20:01:54.859Z","registry_url":"https://pkg.go.dev/github.com/riverqueue/river","install_command":"go get github.com/riverqueue/river","documentation_url":"https://pkg.go.dev/github.com/riverqueue/river#section-documentation","metadata":{},"repo_metadata":{"id":206463343,"uuid":"716228772","full_name":"riverqueue/river","owner":"riverqueue","description":"Fast and reliable background jobs in Go","archived":false,"fork":false,"pushed_at":"2025-10-07T22:31:15.000Z","size":3688,"stargazers_count":4485,"open_issues_count":34,"forks_count":124,"subscribers_count":22,"default_branch":"master","last_synced_at":"2025-10-08T00:21:42.099Z","etag":null,"topics":["background-jobs","go","golang","postgres","postgresql","queue"],"latest_commit_sha":null,"homepage":"https://riverqueue.com","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/riverqueue.png","metadata":{"files":{"readme":"docs/README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-11-08T17:43:41.000Z","updated_at":"2025-10-07T23:35:30.000Z","dependencies_parsed_at":"2023-11-10T12:49:35.845Z","dependency_job_id":"7488a394-7227-43ef-b523-0fe5c7d2bd1d","html_url":"https://github.com/riverqueue/river","commit_stats":{"total_commits":369,"total_committers":22,"mean_commits":"16.772727272727273","dds":0.3577235772357723,"last_synced_commit":"e9b751fc9fbcd81213f768aa7ac2c90b87f7b439"},"previous_names":["riverqueue/river"],"tags_count":386,"template":false,"template_full_name":null,"purl":"pkg:github/riverqueue/river","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/riverqueue","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/sbom","scorecard":{"id":135746,"data":{"date":"2025-08-04","repo":{"name":"github.com/riverqueue/river","commit":"5980899509bbbcee177366bc7b998fa6045ec351"},"scorecard":{"version":"v5.2.1-28-gc1d103a9","commit":"c1d103a9bb9f635ec7260bf9aa0699466fa4be0e"},"score":5.9,"checks":[{"name":"Dangerous-Workflow","score":10,"reason":"no dangerous workflow patterns detected","details":null,"documentation":{"short":"Determines if the project's GitHub Action workflows avoid dangerous patterns.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#dangerous-workflow"}},{"name":"Code-Review","score":10,"reason":"all changesets reviewed","details":null,"documentation":{"short":"Determines if the project requires human code review before pull requests (aka merge requests) are merged.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#code-review"}},{"name":"Packaging","score":-1,"reason":"packaging workflow not detected","details":["Warn: no GitHub/GitLab publishing workflow detected."],"documentation":{"short":"Determines if the project is published as a package that others can easily download, install, easily update, and uninstall.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#packaging"}},{"name":"Maintained","score":10,"reason":"30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#maintained"}},{"name":"CII-Best-Practices","score":0,"reason":"no effort to earn an OpenSSF best practices badge detected","details":null,"documentation":{"short":"Determines if the project has an OpenSSF (formerly CII) Best Practices Badge.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#cii-best-practices"}},{"name":"Binary-Artifacts","score":10,"reason":"no binaries found in the repo","details":null,"documentation":{"short":"Determines if the project has generated executable (binary) artifacts in the source repository.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#binary-artifacts"}},{"name":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Info: jobLevel 'contents' permission set to 'read': .github/workflows/ci.yaml:248","Info: jobLevel 'pull-requests' permission set to 'read': .github/workflows/ci.yaml:250","Warn: no topLevel permission defined: .github/workflows/ci.yaml:1","Info: no jobLevel write permissions found"],"documentation":{"short":"Determines if the project's workflows follow the principle of least privilege.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#token-permissions"}},{"name":"Pinned-Dependencies","score":1,"reason":"dependency not pinned by hash detected -- score normalized to 1","details":["Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yaml:62: update your workflow using https://app.stepsecurity.io/secureworkflow/riverqueue/river/ci.yaml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yaml:65: update your workflow using https://app.stepsecurity.io/secureworkflow/riverqueue/river/ci.yaml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yaml:87: update your workflow using https://app.stepsecurity.io/secureworkflow/riverqueue/river/ci.yaml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yaml:92: update your workflow using https://app.stepsecurity.io/secureworkflow/riverqueue/river/ci.yaml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yaml:113: update your workflow using https://app.stepsecurity.io/secureworkflow/riverqueue/river/ci.yaml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yaml:253: update your workflow using https://app.stepsecurity.io/secureworkflow/riverqueue/river/ci.yaml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yaml:259: update your workflow using https://app.stepsecurity.io/secureworkflow/riverqueue/river/ci.yaml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yaml:262: update your workflow using https://app.stepsecurity.io/secureworkflow/riverqueue/river/ci.yaml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yaml:283: update your workflow using https://app.stepsecurity.io/secureworkflow/riverqueue/river/ci.yaml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yaml:286: update your workflow using https://app.stepsecurity.io/secureworkflow/riverqueue/river/ci.yaml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yaml:304: update your workflow using https://app.stepsecurity.io/secureworkflow/riverqueue/river/ci.yaml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yaml:310: update your workflow using https://app.stepsecurity.io/secureworkflow/riverqueue/river/ci.yaml/master?enable=pin","Info:   0 out of   9 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of   3 third-party GitHubAction dependencies pinned","Info:   1 out of   1 goCommand dependencies pinned"],"documentation":{"short":"Determines if the project has declared and pinned the dependencies of its build process.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#pinned-dependencies"}},{"name":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE:0","Info: FSF or OSI recognized license: Mozilla Public License 2.0: LICENSE:0"],"documentation":{"short":"Determines if the project has defined a license.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#license"}},{"name":"Fuzzing","score":0,"reason":"project is not fuzzed","details":["Warn: no fuzzer integrations found"],"documentation":{"short":"Determines if the project uses fuzzing.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#fuzzing"}},{"name":"Branch-Protection","score":-1,"reason":"internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration","details":null,"documentation":{"short":"Determines if the default and release branches are protected with GitHub's branch protection settings.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#branch-protection"}},{"name":"Security-Policy","score":0,"reason":"security policy file not detected","details":["Warn: no security policy file detected","Warn: no security file to analyze","Warn: no security file to analyze","Warn: no security file to analyze"],"documentation":{"short":"Determines if the project has published a security policy.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#security-policy"}},{"name":"Signed-Releases","score":-1,"reason":"no releases found","details":null,"documentation":{"short":"Determines if the project cryptographically signs release artifacts.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#signed-releases"}},{"name":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 30 are checked with a SAST tool"],"documentation":{"short":"Determines if the project uses static code analysis.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#sast"}},{"name":"Vulnerabilities","score":10,"reason":"0 existing vulnerabilities detected","details":null,"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/c1d103a9bb9f635ec7260bf9aa0699466fa4be0e/docs/checks.md#vulnerabilities"}}]},"last_synced_at":"2025-08-16T06:27:17.275Z","repository_id":206463343,"created_at":"2025-08-16T06:27:17.275Z","updated_at":"2025-08-16T06:27:17.275Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000715,"owners_count":26082911,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"},"owner_record":{"login":"riverqueue","name":"riverqueue","uuid":"136755925","kind":"organization","description":null,"email":null,"website":null,"location":null,"twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/136755925?v=4","repositories_count":1,"last_synced_at":"2023-11-08T17:30:21.616Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/riverqueue","funding_links":[],"total_stars":null,"followers":null,"following":null,"created_at":"2023-11-08T17:30:21.620Z","updated_at":"2023-11-08T17:30:21.620Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/riverqueue","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/riverqueue/repositories"},"tags":[{"name":"riverdriver/riversqlite/v0.26.0","sha":"3941f3eca03eeea40c8b2cdbbff50179217ba2c5","kind":"tag","published_at":"2025-10-08T01:24:55.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riversqlite/v0.26.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riversqlite/v0.26.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friversqlite%2Fv0.26.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friversqlite%2Fv0.26.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friversqlite%2Fv0.26.0/manifests"},{"name":"cmd/river/v0.26.0","sha":"3941f3eca03eeea40c8b2cdbbff50179217ba2c5","kind":"tag","published_at":"2025-10-08T01:24:55.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.26.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.26.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.26.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.26.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.26.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.26.0","sha":"3941f3eca03eeea40c8b2cdbbff50179217ba2c5","kind":"tag","published_at":"2025-10-08T01:24:55.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.26.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.26.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.26.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.26.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.26.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.26.0","sha":"3941f3eca03eeea40c8b2cdbbff50179217ba2c5","kind":"tag","published_at":"2025-10-08T01:24:55.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.26.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.26.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.26.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.26.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.26.0/manifests"},{"name":"rivertype/v0.26.0","sha":"3941f3eca03eeea40c8b2cdbbff50179217ba2c5","kind":"tag","published_at":"2025-10-08T01:24:55.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.26.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.26.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.26.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.26.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.26.0/manifests"},{"name":"rivershared/v0.26.0","sha":"3941f3eca03eeea40c8b2cdbbff50179217ba2c5","kind":"tag","published_at":"2025-10-08T01:24:55.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.26.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.26.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.26.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.26.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.26.0/manifests"},{"name":"riverdriver/v0.26.0","sha":"3941f3eca03eeea40c8b2cdbbff50179217ba2c5","kind":"tag","published_at":"2025-10-08T01:24:55.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.26.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.26.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.26.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.26.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.26.0/manifests"},{"name":"v0.26.0","sha":"3941f3eca03eeea40c8b2cdbbff50179217ba2c5","kind":"commit","published_at":"2025-10-08T01:24:44.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.26.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.26.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.26.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.26.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.26.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.25.0","sha":"96877cf9a7de5fa3ee1be7fef2230106973c95ef","kind":"tag","published_at":"2025-09-15T13:57:44.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.25.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.25.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.25.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.25.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.25.0/manifests"},{"name":"riverdriver/riversqlite/v0.25.0","sha":"96877cf9a7de5fa3ee1be7fef2230106973c95ef","kind":"tag","published_at":"2025-09-15T13:57:44.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riversqlite/v0.25.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riversqlite/v0.25.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friversqlite%2Fv0.25.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friversqlite%2Fv0.25.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friversqlite%2Fv0.25.0/manifests"},{"name":"rivershared/v0.25.0","sha":"96877cf9a7de5fa3ee1be7fef2230106973c95ef","kind":"tag","published_at":"2025-09-15T13:57:44.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.25.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.25.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.25.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.25.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.25.0/manifests"},{"name":"rivertype/v0.25.0","sha":"96877cf9a7de5fa3ee1be7fef2230106973c95ef","kind":"tag","published_at":"2025-09-15T13:57:44.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.25.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.25.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.25.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.25.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.25.0/manifests"},{"name":"riverdriver/v0.25.0","sha":"96877cf9a7de5fa3ee1be7fef2230106973c95ef","kind":"tag","published_at":"2025-09-15T13:57:44.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.25.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.25.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.25.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.25.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.25.0/manifests"},{"name":"cmd/river/v0.25.0","sha":"96877cf9a7de5fa3ee1be7fef2230106973c95ef","kind":"tag","published_at":"2025-09-15T13:57:44.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.25.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.25.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.25.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.25.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.25.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.25.0","sha":"96877cf9a7de5fa3ee1be7fef2230106973c95ef","kind":"tag","published_at":"2025-09-15T13:57:44.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.25.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.25.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.25.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.25.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.25.0/manifests"},{"name":"v0.25.0","sha":"96877cf9a7de5fa3ee1be7fef2230106973c95ef","kind":"commit","published_at":"2025-09-15T13:57:27.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.25.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.25.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.25.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.25.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.25.0/manifests"},{"name":"cmd/river/v0.24.0","sha":"3cfef1a63d8dc58b795d8a3958ba5d36cf02a217","kind":"tag","published_at":"2025-08-16T20:18:40.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.24.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.24.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.24.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.24.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.24.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.24.0","sha":"3cfef1a63d8dc58b795d8a3958ba5d36cf02a217","kind":"tag","published_at":"2025-08-16T20:18:40.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.24.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.24.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.24.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.24.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.24.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.24.0","sha":"3cfef1a63d8dc58b795d8a3958ba5d36cf02a217","kind":"tag","published_at":"2025-08-16T20:18:40.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.24.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.24.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.24.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.24.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.24.0/manifests"},{"name":"riverdriver/riversqlite/v0.24.0","sha":"3cfef1a63d8dc58b795d8a3958ba5d36cf02a217","kind":"tag","published_at":"2025-08-16T20:18:40.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riversqlite/v0.24.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riversqlite/v0.24.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friversqlite%2Fv0.24.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friversqlite%2Fv0.24.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friversqlite%2Fv0.24.0/manifests"},{"name":"riverdriver/v0.24.0","sha":"3cfef1a63d8dc58b795d8a3958ba5d36cf02a217","kind":"tag","published_at":"2025-08-16T20:18:40.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.24.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.24.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.24.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.24.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.24.0/manifests"},{"name":"rivershared/v0.24.0","sha":"3cfef1a63d8dc58b795d8a3958ba5d36cf02a217","kind":"tag","published_at":"2025-08-16T20:18:40.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.24.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.24.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.24.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.24.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.24.0/manifests"},{"name":"rivertype/v0.24.0","sha":"3cfef1a63d8dc58b795d8a3958ba5d36cf02a217","kind":"tag","published_at":"2025-08-16T20:18:40.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.24.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.24.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.24.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.24.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.24.0/manifests"},{"name":"v0.24.0","sha":"3cfef1a63d8dc58b795d8a3958ba5d36cf02a217","kind":"commit","published_at":"2025-08-16T20:18:21.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.24.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.24.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.24.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.24.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.24.0/manifests"},{"name":"rivershared/v0.23.1","sha":"63b49174d4b86c9b47ab991a78d7e6c89827b368","kind":"tag","published_at":"2025-06-04T18:09:13.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.23.1","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.23.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.23.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.23.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.23.1/manifests"},{"name":"riverdriver/v0.23.1","sha":"63b49174d4b86c9b47ab991a78d7e6c89827b368","kind":"tag","published_at":"2025-06-04T18:09:13.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.23.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.23.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.23.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.23.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.23.1/manifests"},{"name":"riverdriver/riversqlite/v0.23.1","sha":"63b49174d4b86c9b47ab991a78d7e6c89827b368","kind":"tag","published_at":"2025-06-04T18:09:13.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riversqlite/v0.23.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riversqlite/v0.23.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friversqlite%2Fv0.23.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friversqlite%2Fv0.23.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friversqlite%2Fv0.23.1/manifests"},{"name":"cmd/river/v0.23.1","sha":"63b49174d4b86c9b47ab991a78d7e6c89827b368","kind":"tag","published_at":"2025-06-04T18:09:13.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.23.1","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.23.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.23.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.23.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.23.1/manifests"},{"name":"riverdriver/riverpgxv5/v0.23.1","sha":"63b49174d4b86c9b47ab991a78d7e6c89827b368","kind":"tag","published_at":"2025-06-04T18:09:13.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.23.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.23.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.23.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.23.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.23.1/manifests"},{"name":"riverdriver/riverdatabasesql/v0.23.1","sha":"63b49174d4b86c9b47ab991a78d7e6c89827b368","kind":"tag","published_at":"2025-06-04T18:09:13.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.23.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.23.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.23.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.23.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.23.1/manifests"},{"name":"rivertype/v0.23.1","sha":"63b49174d4b86c9b47ab991a78d7e6c89827b368","kind":"tag","published_at":"2025-06-04T18:09:13.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.23.1","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.23.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.23.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.23.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.23.1/manifests"},{"name":"v0.23.1","sha":"63b49174d4b86c9b47ab991a78d7e6c89827b368","kind":"commit","published_at":"2025-06-04T18:08:55.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.23.1","html_url":"https://github.com/riverqueue/river/releases/tag/v0.23.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.23.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.23.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.23.1/manifests"},{"name":"rivertype/v0.23.0","sha":"99e45ec023354d8670f3314fe1909b85e860ecd0","kind":"tag","published_at":"2025-06-04T15:43:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.23.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.23.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.23.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.23.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.23.0/manifests"},{"name":"cmd/river/v0.23.0","sha":"99e45ec023354d8670f3314fe1909b85e860ecd0","kind":"tag","published_at":"2025-06-04T15:43:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.23.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.23.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.23.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.23.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.23.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.23.0","sha":"99e45ec023354d8670f3314fe1909b85e860ecd0","kind":"tag","published_at":"2025-06-04T15:43:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.23.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.23.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.23.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.23.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.23.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.23.0","sha":"99e45ec023354d8670f3314fe1909b85e860ecd0","kind":"tag","published_at":"2025-06-04T15:43:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.23.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.23.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.23.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.23.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.23.0/manifests"},{"name":"riverdriver/riversqlite/v0.23.0","sha":"99e45ec023354d8670f3314fe1909b85e860ecd0","kind":"tag","published_at":"2025-06-04T15:43:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riversqlite/v0.23.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riversqlite/v0.23.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friversqlite%2Fv0.23.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friversqlite%2Fv0.23.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friversqlite%2Fv0.23.0/manifests"},{"name":"riverdriver/v0.23.0","sha":"99e45ec023354d8670f3314fe1909b85e860ecd0","kind":"tag","published_at":"2025-06-04T15:43:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.23.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.23.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.23.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.23.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.23.0/manifests"},{"name":"rivershared/v0.23.0","sha":"99e45ec023354d8670f3314fe1909b85e860ecd0","kind":"tag","published_at":"2025-06-04T15:43:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.23.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.23.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.23.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.23.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.23.0/manifests"},{"name":"v0.23.0","sha":"99e45ec023354d8670f3314fe1909b85e860ecd0","kind":"commit","published_at":"2025-06-04T15:42:46.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.23.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.23.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.23.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.23.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.23.0/manifests"},{"name":"rivertype/v0.22.0","sha":"8fd0a3b224555ef831552b2c03a192e0224d5f32","kind":"tag","published_at":"2025-05-10T19:04:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.22.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.22.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.22.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.22.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.22.0/manifests"},{"name":"cmd/river/v0.22.0","sha":"8fd0a3b224555ef831552b2c03a192e0224d5f32","kind":"tag","published_at":"2025-05-10T19:04:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.22.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.22.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.22.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.22.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.22.0/manifests"},{"name":"riverdriver/v0.22.0","sha":"8fd0a3b224555ef831552b2c03a192e0224d5f32","kind":"tag","published_at":"2025-05-10T19:04:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.22.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.22.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.22.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.22.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.22.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.22.0","sha":"8fd0a3b224555ef831552b2c03a192e0224d5f32","kind":"tag","published_at":"2025-05-10T19:04:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.22.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.22.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.22.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.22.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.22.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.22.0","sha":"8fd0a3b224555ef831552b2c03a192e0224d5f32","kind":"tag","published_at":"2025-05-10T19:04:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.22.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.22.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.22.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.22.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.22.0/manifests"},{"name":"rivershared/v0.22.0","sha":"8fd0a3b224555ef831552b2c03a192e0224d5f32","kind":"tag","published_at":"2025-05-10T19:04:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.22.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.22.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.22.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.22.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.22.0/manifests"},{"name":"v0.22.0","sha":"8fd0a3b224555ef831552b2c03a192e0224d5f32","kind":"commit","published_at":"2025-05-10T19:03:47.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.22.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.22.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.22.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.22.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.22.0/manifests"},{"name":"riverdriver/v0.21.0","sha":"3eb92534b641b23cb4393154e3913f6245854c9a","kind":"tag","published_at":"2025-05-03T01:37:55.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.21.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.21.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.21.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.21.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.21.0/manifests"},{"name":"rivertype/v0.21.0","sha":"3eb92534b641b23cb4393154e3913f6245854c9a","kind":"tag","published_at":"2025-05-03T01:37:55.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.21.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.21.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.21.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.21.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.21.0/manifests"},{"name":"rivershared/v0.21.0","sha":"3eb92534b641b23cb4393154e3913f6245854c9a","kind":"tag","published_at":"2025-05-03T01:37:55.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.21.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.21.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.21.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.21.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.21.0/manifests"},{"name":"cmd/river/v0.21.0","sha":"3eb92534b641b23cb4393154e3913f6245854c9a","kind":"tag","published_at":"2025-05-03T01:37:55.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.21.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.21.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.21.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.21.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.21.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.21.0","sha":"3eb92534b641b23cb4393154e3913f6245854c9a","kind":"tag","published_at":"2025-05-03T01:37:55.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.21.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.21.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.21.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.21.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.21.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.21.0","sha":"3eb92534b641b23cb4393154e3913f6245854c9a","kind":"tag","published_at":"2025-05-03T01:37:55.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.21.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.21.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.21.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.21.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.21.0/manifests"},{"name":"v0.21.0","sha":"3eb92534b641b23cb4393154e3913f6245854c9a","kind":"commit","published_at":"2025-05-03T01:37:52.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.21.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.21.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.21.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.21.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.21.0/manifests"},{"name":"rivershared/v0.20.2","sha":"b5f550989cbc0925c5bf23db657393cba1b74df1","kind":"tag","published_at":"2025-04-09T02:07:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.20.2","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.20.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.20.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.20.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.20.2/manifests"},{"name":"rivertype/v0.20.2","sha":"b5f550989cbc0925c5bf23db657393cba1b74df1","kind":"tag","published_at":"2025-04-09T02:07:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.20.2","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.20.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.20.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.20.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.20.2/manifests"},{"name":"riverdriver/v0.20.2","sha":"b5f550989cbc0925c5bf23db657393cba1b74df1","kind":"tag","published_at":"2025-04-09T02:07:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.20.2","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.20.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.20.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.20.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.20.2/manifests"},{"name":"riverdriver/riverpgxv5/v0.20.2","sha":"b5f550989cbc0925c5bf23db657393cba1b74df1","kind":"tag","published_at":"2025-04-09T02:07:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.20.2","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.20.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.20.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.20.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.20.2/manifests"},{"name":"riverdriver/riverdatabasesql/v0.20.2","sha":"b5f550989cbc0925c5bf23db657393cba1b74df1","kind":"tag","published_at":"2025-04-09T02:07:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.20.2","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.20.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.20.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.20.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.20.2/manifests"},{"name":"cmd/river/v0.20.2","sha":"b5f550989cbc0925c5bf23db657393cba1b74df1","kind":"tag","published_at":"2025-04-09T02:07:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.20.2","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.20.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.20.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.20.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.20.2/manifests"},{"name":"v0.20.2","sha":"b5f550989cbc0925c5bf23db657393cba1b74df1","kind":"commit","published_at":"2025-04-09T02:07:08.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.20.2","html_url":"https://github.com/riverqueue/river/releases/tag/v0.20.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.20.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.20.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.20.2/manifests"},{"name":"rivershared/v0.20.1","sha":"5914ddda6dcdb967fc982d9c12e932cb0f216f52","kind":"tag","published_at":"2025-04-06T01:46:08.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.20.1","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.20.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.20.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.20.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.20.1/manifests"},{"name":"riverdriver/v0.20.1","sha":"5914ddda6dcdb967fc982d9c12e932cb0f216f52","kind":"tag","published_at":"2025-04-06T01:46:08.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.20.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.20.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.20.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.20.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.20.1/manifests"},{"name":"riverdriver/riverpgxv5/v0.20.1","sha":"5914ddda6dcdb967fc982d9c12e932cb0f216f52","kind":"tag","published_at":"2025-04-06T01:46:08.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.20.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.20.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.20.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.20.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.20.1/manifests"},{"name":"riverdriver/riverdatabasesql/v0.20.1","sha":"5914ddda6dcdb967fc982d9c12e932cb0f216f52","kind":"tag","published_at":"2025-04-06T01:46:08.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.20.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.20.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.20.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.20.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.20.1/manifests"},{"name":"cmd/river/v0.20.1","sha":"5914ddda6dcdb967fc982d9c12e932cb0f216f52","kind":"tag","published_at":"2025-04-06T01:46:08.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.20.1","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.20.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.20.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.20.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.20.1/manifests"},{"name":"rivertype/v0.20.1","sha":"5914ddda6dcdb967fc982d9c12e932cb0f216f52","kind":"tag","published_at":"2025-04-06T01:46:08.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.20.1","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.20.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.20.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.20.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.20.1/manifests"},{"name":"v0.20.1","sha":"5914ddda6dcdb967fc982d9c12e932cb0f216f52","kind":"commit","published_at":"2025-04-06T01:46:03.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.20.1","html_url":"https://github.com/riverqueue/river/releases/tag/v0.20.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.20.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.20.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.20.1/manifests"},{"name":"riverdriver/v0.20.0","sha":"5fedf932b27af30c74f5ade32e2fcc616721fc61","kind":"tag","published_at":"2025-04-04T16:24:58.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.20.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.20.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.20.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.20.0/manifests"},{"name":"rivertype/v0.20.0","sha":"5fedf932b27af30c74f5ade32e2fcc616721fc61","kind":"tag","published_at":"2025-04-04T16:24:58.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.20.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.20.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.20.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.20.0/manifests"},{"name":"cmd/river/v0.20.0","sha":"5fedf932b27af30c74f5ade32e2fcc616721fc61","kind":"tag","published_at":"2025-04-04T16:24:58.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.20.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.20.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.20.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.20.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.20.0","sha":"5fedf932b27af30c74f5ade32e2fcc616721fc61","kind":"tag","published_at":"2025-04-04T16:24:58.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.20.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.20.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.20.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.20.0/manifests"},{"name":"rivershared/v0.20.0","sha":"5fedf932b27af30c74f5ade32e2fcc616721fc61","kind":"tag","published_at":"2025-04-04T16:24:58.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.20.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.20.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.20.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.20.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.20.0","sha":"5fedf932b27af30c74f5ade32e2fcc616721fc61","kind":"tag","published_at":"2025-04-04T16:24:58.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.20.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.20.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.20.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.20.0/manifests"},{"name":"v0.20.0","sha":"5fedf932b27af30c74f5ade32e2fcc616721fc61","kind":"commit","published_at":"2025-04-04T16:24:52.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.20.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.20.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.20.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.20.0/manifests"},{"name":"rivershared/v0.19.0","sha":"c7e50d861d1bb2d17332bbcc0a131ef78768da7b","kind":"tag","published_at":"2025-03-17T06:05:35.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.19.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.19.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.19.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.19.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.19.0/manifests"},{"name":"cmd/river/v0.19.0","sha":"c7e50d861d1bb2d17332bbcc0a131ef78768da7b","kind":"tag","published_at":"2025-03-17T06:05:35.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.19.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.19.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.19.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.19.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.19.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.19.0","sha":"c7e50d861d1bb2d17332bbcc0a131ef78768da7b","kind":"tag","published_at":"2025-03-17T06:05:35.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.19.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.19.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.19.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.19.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.19.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.19.0","sha":"c7e50d861d1bb2d17332bbcc0a131ef78768da7b","kind":"tag","published_at":"2025-03-17T06:05:35.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.19.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.19.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.19.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.19.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.19.0/manifests"},{"name":"riverdriver/v0.19.0","sha":"c7e50d861d1bb2d17332bbcc0a131ef78768da7b","kind":"tag","published_at":"2025-03-17T06:05:35.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.19.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.19.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.19.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.19.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.19.0/manifests"},{"name":"rivertype/v0.19.0","sha":"c7e50d861d1bb2d17332bbcc0a131ef78768da7b","kind":"tag","published_at":"2025-03-17T06:05:35.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.19.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.19.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.19.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.19.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.19.0/manifests"},{"name":"v0.19.0","sha":"c7e50d861d1bb2d17332bbcc0a131ef78768da7b","kind":"commit","published_at":"2025-03-17T06:05:13.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.19.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.19.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.19.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.19.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.19.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.18.0","sha":"fce1b076f6170054a8e4827450856f99183f1e8b","kind":"tag","published_at":"2025-02-20T15:56:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.18.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.18.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.18.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.18.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.18.0/manifests"},{"name":"rivertype/v0.18.0","sha":"fce1b076f6170054a8e4827450856f99183f1e8b","kind":"tag","published_at":"2025-02-20T15:56:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.18.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.18.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.18.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.18.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.18.0/manifests"},{"name":"rivershared/v0.18.0","sha":"fce1b076f6170054a8e4827450856f99183f1e8b","kind":"tag","published_at":"2025-02-20T15:56:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.18.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.18.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.18.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.18.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.18.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.18.0","sha":"fce1b076f6170054a8e4827450856f99183f1e8b","kind":"tag","published_at":"2025-02-20T15:56:14.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.18.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.18.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.18.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.18.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.18.0/manifests"},{"name":"cmd/river/v0.18.0","sha":"fce1b076f6170054a8e4827450856f99183f1e8b","kind":"tag","published_at":"2025-02-20T15:56:14.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.18.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.18.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.18.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.18.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.18.0/manifests"},{"name":"riverdriver/v0.18.0","sha":"fce1b076f6170054a8e4827450856f99183f1e8b","kind":"tag","published_at":"2025-02-20T15:56:14.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.18.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.18.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.18.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.18.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.18.0/manifests"},{"name":"v0.18.0","sha":"fce1b076f6170054a8e4827450856f99183f1e8b","kind":"commit","published_at":"2025-02-20T15:56:09.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.18.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.18.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.18.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.18.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.18.0/manifests"},{"name":"rivertype/v0.17.0","sha":"0a8ee30d2e521f8083f2f061a1a3546980e2e99a","kind":"tag","published_at":"2025-02-15T20:58:32.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.17.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.17.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.17.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.17.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.17.0","sha":"0a8ee30d2e521f8083f2f061a1a3546980e2e99a","kind":"tag","published_at":"2025-02-15T20:58:32.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.17.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.17.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.17.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.17.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.17.0","sha":"0a8ee30d2e521f8083f2f061a1a3546980e2e99a","kind":"tag","published_at":"2025-02-15T20:58:32.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.17.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.17.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.17.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.17.0/manifests"},{"name":"riverdriver/v0.17.0","sha":"0a8ee30d2e521f8083f2f061a1a3546980e2e99a","kind":"tag","published_at":"2025-02-15T20:58:32.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.17.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.17.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.17.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.17.0/manifests"},{"name":"rivershared/v0.17.0","sha":"0a8ee30d2e521f8083f2f061a1a3546980e2e99a","kind":"tag","published_at":"2025-02-15T20:58:32.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.17.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.17.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.17.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.17.0/manifests"},{"name":"cmd/river/v0.17.0","sha":"0a8ee30d2e521f8083f2f061a1a3546980e2e99a","kind":"tag","published_at":"2025-02-15T20:58:32.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.17.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.17.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.17.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.17.0/manifests"},{"name":"v0.17.0","sha":"0a8ee30d2e521f8083f2f061a1a3546980e2e99a","kind":"commit","published_at":"2025-02-15T20:58:24.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.17.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.17.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.17.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.17.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.16.0","sha":"8043b5749ac6895963b77338e402ddeb503e47fc","kind":"tag","published_at":"2025-01-28T15:24:51.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.16.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.16.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.16.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.16.0/manifests"},{"name":"rivertype/v0.16.0","sha":"8043b5749ac6895963b77338e402ddeb503e47fc","kind":"tag","published_at":"2025-01-28T15:24:51.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.16.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.16.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.16.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.16.0/manifests"},{"name":"rivershared/v0.16.0","sha":"8043b5749ac6895963b77338e402ddeb503e47fc","kind":"tag","published_at":"2025-01-28T15:24:51.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.16.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.16.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.16.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.16.0/manifests"},{"name":"riverdriver/v0.16.0","sha":"8043b5749ac6895963b77338e402ddeb503e47fc","kind":"tag","published_at":"2025-01-28T15:24:51.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.16.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.16.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.16.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.16.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.16.0","sha":"8043b5749ac6895963b77338e402ddeb503e47fc","kind":"tag","published_at":"2025-01-28T15:24:51.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.16.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.16.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.16.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.16.0/manifests"},{"name":"cmd/river/v0.16.0","sha":"8043b5749ac6895963b77338e402ddeb503e47fc","kind":"tag","published_at":"2025-01-28T15:24:51.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.16.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.16.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.16.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.16.0/manifests"},{"name":"v0.16.0","sha":"8043b5749ac6895963b77338e402ddeb503e47fc","kind":"commit","published_at":"2025-01-28T15:22:59.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.16.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.16.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.16.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.16.0/manifests"},{"name":"cmd/river/v0.15.0","sha":"58d30fbf3b05ed4e91e32d4253e02b1aead03d8a","kind":"tag","published_at":"2024-12-27T04:11:25.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.15.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.15.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.15.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.15.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.15.0","sha":"58d30fbf3b05ed4e91e32d4253e02b1aead03d8a","kind":"tag","published_at":"2024-12-27T04:11:22.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.15.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.15.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.15.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.15.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.15.0","sha":"58d30fbf3b05ed4e91e32d4253e02b1aead03d8a","kind":"tag","published_at":"2024-12-27T04:11:22.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.15.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.15.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.15.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.15.0/manifests"},{"name":"rivertype/v0.15.0","sha":"58d30fbf3b05ed4e91e32d4253e02b1aead03d8a","kind":"tag","published_at":"2024-12-27T04:11:22.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.15.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.15.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.15.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.15.0/manifests"},{"name":"riverdriver/v0.15.0","sha":"58d30fbf3b05ed4e91e32d4253e02b1aead03d8a","kind":"tag","published_at":"2024-12-27T04:11:22.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.15.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.15.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.15.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.15.0/manifests"},{"name":"rivershared/v0.15.0","sha":"58d30fbf3b05ed4e91e32d4253e02b1aead03d8a","kind":"tag","published_at":"2024-12-27T04:11:22.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.15.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.15.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.15.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.15.0/manifests"},{"name":"v0.15.0","sha":"58d30fbf3b05ed4e91e32d4253e02b1aead03d8a","kind":"commit","published_at":"2024-12-27T04:10:58.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.15.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.15.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.15.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.15.0/manifests"},{"name":"cmd/river/v0.14.3","sha":"bf286e428bbe93c15d5232e3da5a6b281ce29f0e","kind":"tag","published_at":"2024-12-15T20:02:52.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.14.3","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.14.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.14.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.14.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.14.3/manifests"},{"name":"rivertype/v0.14.3","sha":"bf286e428bbe93c15d5232e3da5a6b281ce29f0e","kind":"tag","published_at":"2024-12-15T20:02:49.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.14.3","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.14.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.14.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.14.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.14.3/manifests"},{"name":"rivershared/v0.14.3","sha":"bf286e428bbe93c15d5232e3da5a6b281ce29f0e","kind":"tag","published_at":"2024-12-15T20:02:49.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.14.3","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.14.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.14.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.14.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.14.3/manifests"},{"name":"riverdriver/v0.14.3","sha":"bf286e428bbe93c15d5232e3da5a6b281ce29f0e","kind":"tag","published_at":"2024-12-15T20:02:49.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.14.3","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.14.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.14.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.14.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.14.3/manifests"},{"name":"riverdriver/riverpgxv5/v0.14.3","sha":"bf286e428bbe93c15d5232e3da5a6b281ce29f0e","kind":"tag","published_at":"2024-12-15T20:02:49.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.14.3","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.14.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.14.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.14.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.14.3/manifests"},{"name":"riverdriver/riverdatabasesql/v0.14.3","sha":"bf286e428bbe93c15d5232e3da5a6b281ce29f0e","kind":"tag","published_at":"2024-12-15T20:02:49.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.14.3","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.14.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.14.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.14.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.14.3/manifests"},{"name":"v0.14.3","sha":"bf286e428bbe93c15d5232e3da5a6b281ce29f0e","kind":"commit","published_at":"2024-12-15T20:02:11.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.14.3","html_url":"https://github.com/riverqueue/river/releases/tag/v0.14.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.14.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.14.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.14.3/manifests"},{"name":"cmd/river/v0.14.2","sha":"e96d14c06a6efc05dddff32d5dea2f5e7f4605e4","kind":"tag","published_at":"2024-11-16T20:42:39.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.14.2","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.14.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.14.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.14.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.14.2/manifests"},{"name":"rivertype/v0.14.2","sha":"e96d14c06a6efc05dddff32d5dea2f5e7f4605e4","kind":"tag","published_at":"2024-11-16T20:42:35.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.14.2","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.14.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.14.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.14.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.14.2/manifests"},{"name":"riverdriver/riverdatabasesql/v0.14.2","sha":"e96d14c06a6efc05dddff32d5dea2f5e7f4605e4","kind":"tag","published_at":"2024-11-16T20:42:35.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.14.2","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.14.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.14.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.14.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.14.2/manifests"},{"name":"riverdriver/riverpgxv5/v0.14.2","sha":"e96d14c06a6efc05dddff32d5dea2f5e7f4605e4","kind":"tag","published_at":"2024-11-16T20:42:35.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.14.2","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.14.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.14.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.14.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.14.2/manifests"},{"name":"riverdriver/v0.14.2","sha":"e96d14c06a6efc05dddff32d5dea2f5e7f4605e4","kind":"tag","published_at":"2024-11-16T20:42:35.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.14.2","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.14.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.14.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.14.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.14.2/manifests"},{"name":"rivershared/v0.14.2","sha":"e96d14c06a6efc05dddff32d5dea2f5e7f4605e4","kind":"tag","published_at":"2024-11-16T20:42:35.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.14.2","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.14.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.14.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.14.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.14.2/manifests"},{"name":"v0.14.2","sha":"e96d14c06a6efc05dddff32d5dea2f5e7f4605e4","kind":"commit","published_at":"2024-11-16T20:42:24.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.14.2","html_url":"https://github.com/riverqueue/river/releases/tag/v0.14.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.14.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.14.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.14.2/manifests"},{"name":"cmd/river/v0.14.1","sha":"a34a5c2317375c8c1c6099e90c175c9103e7870d","kind":"tag","published_at":"2024-11-04T22:47:58.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.14.1","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.14.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.14.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.14.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.14.1/manifests"},{"name":"rivertype/v0.14.1","sha":"a34a5c2317375c8c1c6099e90c175c9103e7870d","kind":"tag","published_at":"2024-11-04T22:47:49.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.14.1","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.14.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.14.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.14.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.14.1/manifests"},{"name":"riverdriver/riverdatabasesql/v0.14.1","sha":"a34a5c2317375c8c1c6099e90c175c9103e7870d","kind":"tag","published_at":"2024-11-04T22:47:49.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.14.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.14.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.14.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.14.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.14.1/manifests"},{"name":"riverdriver/riverpgxv5/v0.14.1","sha":"a34a5c2317375c8c1c6099e90c175c9103e7870d","kind":"tag","published_at":"2024-11-04T22:47:49.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.14.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.14.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.14.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.14.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.14.1/manifests"},{"name":"riverdriver/v0.14.1","sha":"a34a5c2317375c8c1c6099e90c175c9103e7870d","kind":"tag","published_at":"2024-11-04T22:47:49.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.14.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.14.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.14.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.14.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.14.1/manifests"},{"name":"rivershared/v0.14.1","sha":"a34a5c2317375c8c1c6099e90c175c9103e7870d","kind":"tag","published_at":"2024-11-04T22:47:49.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.14.1","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.14.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.14.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.14.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.14.1/manifests"},{"name":"v0.14.1","sha":"a34a5c2317375c8c1c6099e90c175c9103e7870d","kind":"commit","published_at":"2024-11-04T22:47:18.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.14.1","html_url":"https://github.com/riverqueue/river/releases/tag/v0.14.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.14.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.14.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.14.1/manifests"},{"name":"cmd/river/v0.14.0","sha":"c5214361b948b546505f7f5acdd64c50bb0acf07","kind":"tag","published_at":"2024-11-03T19:52:17.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.14.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.14.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.14.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.14.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.14.0","sha":"c5214361b948b546505f7f5acdd64c50bb0acf07","kind":"tag","published_at":"2024-11-03T19:52:11.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.14.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.14.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.14.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.14.0/manifests"},{"name":"rivershared/v0.14.0","sha":"c5214361b948b546505f7f5acdd64c50bb0acf07","kind":"tag","published_at":"2024-11-03T19:52:11.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.14.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.14.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.14.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.14.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.14.0","sha":"c5214361b948b546505f7f5acdd64c50bb0acf07","kind":"tag","published_at":"2024-11-03T19:52:11.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.14.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.14.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.14.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.14.0/manifests"},{"name":"rivertype/v0.14.0","sha":"c5214361b948b546505f7f5acdd64c50bb0acf07","kind":"tag","published_at":"2024-11-03T19:52:11.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.14.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.14.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.14.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.14.0/manifests"},{"name":"riverdriver/v0.14.0","sha":"c5214361b948b546505f7f5acdd64c50bb0acf07","kind":"tag","published_at":"2024-11-03T19:52:11.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.14.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.14.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.14.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.14.0/manifests"},{"name":"v0.14.0","sha":"c5214361b948b546505f7f5acdd64c50bb0acf07","kind":"commit","published_at":"2024-11-03T19:51:42.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.14.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.14.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.14.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.14.0/manifests"},{"name":"cmd/river/v0.13.0","sha":"9b5f7dbf1bdf1ce5450e329b4ae7eb8c6502f46f","kind":"tag","published_at":"2024-10-08T02:55:56.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.13.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.13.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.13.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.13.0/manifests"},{"name":"rivershared/v0.13.0","sha":"100977553479a7471919c2e1c93e6b8e1564efa7","kind":"tag","published_at":"2024-10-08T02:01:08.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.13.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.13.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.13.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.13.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.13.0","sha":"100977553479a7471919c2e1c93e6b8e1564efa7","kind":"tag","published_at":"2024-10-08T02:01:08.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.13.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.13.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.13.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.13.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.13.0","sha":"100977553479a7471919c2e1c93e6b8e1564efa7","kind":"tag","published_at":"2024-10-08T02:01:08.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.13.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.13.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.13.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.13.0/manifests"},{"name":"riverdriver/v0.13.0","sha":"100977553479a7471919c2e1c93e6b8e1564efa7","kind":"tag","published_at":"2024-10-08T02:01:08.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.13.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.13.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.13.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.13.0/manifests"},{"name":"rivertype/v0.13.0","sha":"100977553479a7471919c2e1c93e6b8e1564efa7","kind":"tag","published_at":"2024-10-08T02:01:08.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.13.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.13.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.13.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.13.0/manifests"},{"name":"v0.13.0","sha":"100977553479a7471919c2e1c93e6b8e1564efa7","kind":"commit","published_at":"2024-10-08T02:00:53.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.13.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.13.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.13.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.13.0/manifests"},{"name":"cmd/river/v0.13.0-rc.1","sha":"ed32320c24a1b1fa9a1ad9e4530c68d1fe0ee28b","kind":"tag","published_at":"2024-10-05T20:26:54.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.13.0-rc.1","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.13.0-rc.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.13.0-rc.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.13.0-rc.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.13.0-rc.1/manifests"},{"name":"rivershared/v0.13.0-rc.1","sha":"ed32320c24a1b1fa9a1ad9e4530c68d1fe0ee28b","kind":"tag","published_at":"2024-10-05T20:26:41.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.13.0-rc.1","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.13.0-rc.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.13.0-rc.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.13.0-rc.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.13.0-rc.1/manifests"},{"name":"rivertype/v0.13.0-rc.1","sha":"ed32320c24a1b1fa9a1ad9e4530c68d1fe0ee28b","kind":"tag","published_at":"2024-10-05T20:26:41.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.13.0-rc.1","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.13.0-rc.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.13.0-rc.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.13.0-rc.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.13.0-rc.1/manifests"},{"name":"riverdriver/riverpgxv5/v0.13.0-rc.1","sha":"ed32320c24a1b1fa9a1ad9e4530c68d1fe0ee28b","kind":"tag","published_at":"2024-10-05T20:26:41.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.13.0-rc.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.13.0-rc.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.13.0-rc.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.13.0-rc.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.13.0-rc.1/manifests"},{"name":"riverdriver/v0.13.0-rc.1","sha":"ed32320c24a1b1fa9a1ad9e4530c68d1fe0ee28b","kind":"tag","published_at":"2024-10-05T20:26:41.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.13.0-rc.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.13.0-rc.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.13.0-rc.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.13.0-rc.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.13.0-rc.1/manifests"},{"name":"riverdriver/riverdatabasesql/v0.13.0-rc.1","sha":"ed32320c24a1b1fa9a1ad9e4530c68d1fe0ee28b","kind":"tag","published_at":"2024-10-05T20:26:41.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.13.0-rc.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.13.0-rc.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.13.0-rc.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.13.0-rc.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.13.0-rc.1/manifests"},{"name":"v0.13.0-rc.1","sha":"ed32320c24a1b1fa9a1ad9e4530c68d1fe0ee28b","kind":"commit","published_at":"2024-10-05T20:26:27.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.13.0-rc.1","html_url":"https://github.com/riverqueue/river/releases/tag/v0.13.0-rc.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.13.0-rc.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.13.0-rc.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.13.0-rc.1/manifests"},{"name":"cmd/river/v0.12.1","sha":"bb8997ed9028b9498037f527ae49c155eb8d3622","kind":"tag","published_at":"2024-09-26T16:36:10.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.12.1","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.12.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.12.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.12.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.12.1/manifests"},{"name":"riverdriver/riverdatabasesql/v0.12.1","sha":"bb8997ed9028b9498037f527ae49c155eb8d3622","kind":"tag","published_at":"2024-09-26T16:36:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.12.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.12.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.12.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.12.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.12.1/manifests"},{"name":"riverdriver/v0.12.1","sha":"bb8997ed9028b9498037f527ae49c155eb8d3622","kind":"tag","published_at":"2024-09-26T16:36:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.12.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.12.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.12.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.12.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.12.1/manifests"},{"name":"rivershared/v0.12.1","sha":"bb8997ed9028b9498037f527ae49c155eb8d3622","kind":"tag","published_at":"2024-09-26T16:36:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.12.1","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.12.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.12.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.12.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.12.1/manifests"},{"name":"rivertype/v0.12.1","sha":"bb8997ed9028b9498037f527ae49c155eb8d3622","kind":"tag","published_at":"2024-09-26T16:36:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.12.1","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.12.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.12.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.12.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.12.1/manifests"},{"name":"riverdriver/riverpgxv5/v0.12.1","sha":"bb8997ed9028b9498037f527ae49c155eb8d3622","kind":"tag","published_at":"2024-09-26T16:36:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.12.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.12.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.12.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.12.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.12.1/manifests"},{"name":"v0.12.1","sha":"bb8997ed9028b9498037f527ae49c155eb8d3622","kind":"commit","published_at":"2024-09-26T16:35:44.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.12.1","html_url":"https://github.com/riverqueue/river/releases/tag/v0.12.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.12.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.12.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.12.1/manifests"},{"name":"cmd/river/v0.12.0","sha":"5e3533556d8e6fc77ae11ce36577113055a82434","kind":"tag","published_at":"2024-09-23T19:44:40.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.12.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.12.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.12.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.12.0/manifests"},{"name":"rivershared/v0.12.0","sha":"b0866b6d0cac65fde25eaee72e20f74e4bcdb9c5","kind":"tag","published_at":"2024-09-23T19:28:37.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.12.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.12.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.12.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.12.0/manifests"},{"name":"riverdriver/v0.12.0","sha":"b0866b6d0cac65fde25eaee72e20f74e4bcdb9c5","kind":"tag","published_at":"2024-09-23T19:28:37.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.12.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.12.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.12.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.12.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.12.0","sha":"b0866b6d0cac65fde25eaee72e20f74e4bcdb9c5","kind":"tag","published_at":"2024-09-23T19:28:37.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.12.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.12.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.12.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.12.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.12.0","sha":"b0866b6d0cac65fde25eaee72e20f74e4bcdb9c5","kind":"tag","published_at":"2024-09-23T19:28:37.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.12.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.12.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.12.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.12.0/manifests"},{"name":"rivertype/v0.12.0","sha":"b0866b6d0cac65fde25eaee72e20f74e4bcdb9c5","kind":"tag","published_at":"2024-09-23T19:28:37.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.12.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.12.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.12.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.12.0/manifests"},{"name":"v0.12.0","sha":"b0866b6d0cac65fde25eaee72e20f74e4bcdb9c5","kind":"commit","published_at":"2024-09-23T19:28:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.12.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.12.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.12.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.12.0/manifests"},{"name":"cmd/river/v0.12.0-rc.1","sha":"18bcb34afebb090fbcf1468e8ed1414ef6fe2466","kind":"tag","published_at":"2024-09-22T20:29:41.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.12.0-rc.1","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.12.0-rc.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.12.0-rc.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.12.0-rc.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.12.0-rc.1/manifests"},{"name":"rivertype/v0.12.0-rc.1","sha":"84c531b19b5c16b5bd65cacf71e11217ee5259a0","kind":"tag","published_at":"2024-09-22T20:19:48.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.12.0-rc.1","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.12.0-rc.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.12.0-rc.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.12.0-rc.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.12.0-rc.1/manifests"},{"name":"rivershared/v0.12.0-rc.1","sha":"84c531b19b5c16b5bd65cacf71e11217ee5259a0","kind":"tag","published_at":"2024-09-22T20:19:48.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.12.0-rc.1","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.12.0-rc.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.12.0-rc.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.12.0-rc.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.12.0-rc.1/manifests"},{"name":"riverdriver/v0.12.0-rc.1","sha":"84c531b19b5c16b5bd65cacf71e11217ee5259a0","kind":"tag","published_at":"2024-09-22T20:19:48.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.12.0-rc.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.12.0-rc.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.12.0-rc.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.12.0-rc.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.12.0-rc.1/manifests"},{"name":"riverdriver/riverdatabasesql/v0.12.0-rc.1","sha":"84c531b19b5c16b5bd65cacf71e11217ee5259a0","kind":"tag","published_at":"2024-09-22T20:19:48.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.12.0-rc.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.12.0-rc.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.12.0-rc.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.12.0-rc.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.12.0-rc.1/manifests"},{"name":"riverdriver/riverpgxv5/v0.12.0-rc.1","sha":"84c531b19b5c16b5bd65cacf71e11217ee5259a0","kind":"tag","published_at":"2024-09-22T20:19:48.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.12.0-rc.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.12.0-rc.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.12.0-rc.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.12.0-rc.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.12.0-rc.1/manifests"},{"name":"v0.12.0-rc.1","sha":"84c531b19b5c16b5bd65cacf71e11217ee5259a0","kind":"commit","published_at":"2024-09-22T20:17:59.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.12.0-rc.1","html_url":"https://github.com/riverqueue/river/releases/tag/v0.12.0-rc.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.12.0-rc.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.12.0-rc.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.12.0-rc.1/manifests"},{"name":"cmd/river/v0.11.4","sha":"6068e6655d1e183bf89ac9ea5a879a4856f475e4","kind":"tag","published_at":"2024-08-20T14:15:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.11.4","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.11.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.11.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.11.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.11.4/manifests"},{"name":"riverdriver/riverdatabasesql/v0.11.4","sha":"6068e6655d1e183bf89ac9ea5a879a4856f475e4","kind":"tag","published_at":"2024-08-20T14:14:58.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.11.4","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.11.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.11.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.11.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.11.4/manifests"},{"name":"rivertype/v0.11.4","sha":"6068e6655d1e183bf89ac9ea5a879a4856f475e4","kind":"tag","published_at":"2024-08-20T14:14:58.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.11.4","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.11.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.11.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.11.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.11.4/manifests"},{"name":"rivershared/v0.11.4","sha":"6068e6655d1e183bf89ac9ea5a879a4856f475e4","kind":"tag","published_at":"2024-08-20T14:14:58.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.11.4","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.11.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.11.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.11.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.11.4/manifests"},{"name":"riverdriver/v0.11.4","sha":"6068e6655d1e183bf89ac9ea5a879a4856f475e4","kind":"tag","published_at":"2024-08-20T14:14:58.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.11.4","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.11.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.11.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.11.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.11.4/manifests"},{"name":"riverdriver/riverpgxv5/v0.11.4","sha":"6068e6655d1e183bf89ac9ea5a879a4856f475e4","kind":"tag","published_at":"2024-08-20T14:14:58.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.11.4","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.11.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.11.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.11.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.11.4/manifests"},{"name":"v0.11.4","sha":"6068e6655d1e183bf89ac9ea5a879a4856f475e4","kind":"commit","published_at":"2024-08-20T14:14:36.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.11.4","html_url":"https://github.com/riverqueue/river/releases/tag/v0.11.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.11.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.11.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.11.4/manifests"},{"name":"cmd/river/v0.11.3","sha":"c9b154fcfa434b27e857eb7f08e4a87d9579edff","kind":"commit","published_at":"2024-08-20T13:54:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.11.3","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.11.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.11.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.11.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.11.3/manifests"},{"name":"riverdriver/v0.11.3","sha":"a3c841b314877f2238734cd6f62cdb8faac1add2","kind":"tag","published_at":"2024-08-19T14:59:43.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.11.3","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.11.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.11.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.11.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.11.3/manifests"},{"name":"riverdriver/riverdatabasesql/v0.11.3","sha":"a3c841b314877f2238734cd6f62cdb8faac1add2","kind":"tag","published_at":"2024-08-19T14:59:43.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.11.3","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.11.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.11.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.11.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.11.3/manifests"},{"name":"riverdriver/riverpgxv5/v0.11.3","sha":"a3c841b314877f2238734cd6f62cdb8faac1add2","kind":"tag","published_at":"2024-08-19T14:59:43.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.11.3","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.11.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.11.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.11.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.11.3/manifests"},{"name":"rivertype/v0.11.3","sha":"a3c841b314877f2238734cd6f62cdb8faac1add2","kind":"tag","published_at":"2024-08-19T14:59:43.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.11.3","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.11.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.11.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.11.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.11.3/manifests"},{"name":"rivershared/v0.11.3","sha":"a3c841b314877f2238734cd6f62cdb8faac1add2","kind":"tag","published_at":"2024-08-19T14:59:43.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.11.3","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.11.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.11.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.11.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.11.3/manifests"},{"name":"v0.11.3","sha":"a3c841b314877f2238734cd6f62cdb8faac1add2","kind":"commit","published_at":"2024-08-19T14:59:03.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.11.3","html_url":"https://github.com/riverqueue/river/releases/tag/v0.11.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.11.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.11.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.11.3/manifests"},{"name":"cmd/river/v0.11.2","sha":"da1cfad9fecaf759ca0592b227e47937897fa152","kind":"tag","published_at":"2024-08-09T04:08:24.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.11.2","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.11.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.11.2/manifests"},{"name":"riverdriver/riverpgxv5/v0.11.2","sha":"9796c45939fbb31638ad2fa61b3c8ee226966a70","kind":"tag","published_at":"2024-08-09T03:59:52.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.11.2","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.11.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.11.2/manifests"},{"name":"riverdriver/v0.11.2","sha":"9796c45939fbb31638ad2fa61b3c8ee226966a70","kind":"tag","published_at":"2024-08-09T03:59:52.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.11.2","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.11.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.11.2/manifests"},{"name":"rivershared/v0.11.2","sha":"9796c45939fbb31638ad2fa61b3c8ee226966a70","kind":"tag","published_at":"2024-08-09T03:59:52.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.11.2","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.11.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.11.2/manifests"},{"name":"riverdriver/riverdatabasesql/v0.11.2","sha":"9796c45939fbb31638ad2fa61b3c8ee226966a70","kind":"tag","published_at":"2024-08-09T03:59:52.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.11.2","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.11.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.11.2/manifests"},{"name":"rivertype/v0.11.2","sha":"9796c45939fbb31638ad2fa61b3c8ee226966a70","kind":"tag","published_at":"2024-08-09T03:59:52.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.11.2","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.11.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.11.2/manifests"},{"name":"v0.11.2","sha":"9796c45939fbb31638ad2fa61b3c8ee226966a70","kind":"commit","published_at":"2024-08-09T03:59:23.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.11.2","html_url":"https://github.com/riverqueue/river/releases/tag/v0.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.11.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.11.2/manifests"},{"name":"cmd/river/v0.11.1","sha":"ab7f61624fd342d2dae98427ffd5ed1c778bc0e7","kind":"tag","published_at":"2024-08-06T03:36:30.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.11.1","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.11.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.11.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.11.1/manifests"},{"name":"rivertype/v0.11.1","sha":"527de9e7fc76116451efd7103283d40cfab6d9a9","kind":"tag","published_at":"2024-08-06T03:16:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.11.1","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.11.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.11.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.11.1/manifests"},{"name":"rivershared/v0.11.1","sha":"527de9e7fc76116451efd7103283d40cfab6d9a9","kind":"tag","published_at":"2024-08-06T03:16:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.11.1","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.11.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.11.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.11.1/manifests"},{"name":"riverdriver/v0.11.1","sha":"527de9e7fc76116451efd7103283d40cfab6d9a9","kind":"tag","published_at":"2024-08-06T03:16:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.11.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.11.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.11.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.11.1/manifests"},{"name":"riverdriver/riverpgxv5/v0.11.1","sha":"527de9e7fc76116451efd7103283d40cfab6d9a9","kind":"tag","published_at":"2024-08-06T03:16:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.11.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.11.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.11.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.11.1/manifests"},{"name":"riverdriver/riverdatabasesql/v0.11.1","sha":"527de9e7fc76116451efd7103283d40cfab6d9a9","kind":"tag","published_at":"2024-08-06T03:16:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.11.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.11.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.11.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.11.1/manifests"},{"name":"v0.11.1","sha":"527de9e7fc76116451efd7103283d40cfab6d9a9","kind":"commit","published_at":"2024-08-06T03:16:05.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.11.1","html_url":"https://github.com/riverqueue/river/releases/tag/v0.11.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.11.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.11.1/manifests"},{"name":"cmd/river/v0.11.0","sha":"db1eabfa812c7a18a1347ebfb70d98753d5eff7f","kind":"tag","published_at":"2024-08-03T02:12:03.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.11.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.11.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.11.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.11.0/manifests"},{"name":"rivertype/v0.11.0","sha":"db1eabfa812c7a18a1347ebfb70d98753d5eff7f","kind":"tag","published_at":"2024-08-03T02:11:58.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.11.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.11.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.11.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.11.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.11.0","sha":"db1eabfa812c7a18a1347ebfb70d98753d5eff7f","kind":"tag","published_at":"2024-08-03T02:11:58.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.11.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.11.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.11.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.11.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.11.0","sha":"db1eabfa812c7a18a1347ebfb70d98753d5eff7f","kind":"tag","published_at":"2024-08-03T02:11:58.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.11.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.11.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.11.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.11.0/manifests"},{"name":"riverdriver/v0.11.0","sha":"db1eabfa812c7a18a1347ebfb70d98753d5eff7f","kind":"tag","published_at":"2024-08-03T02:11:58.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.11.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.11.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.11.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.11.0/manifests"},{"name":"rivershared/v0.11.0","sha":"db1eabfa812c7a18a1347ebfb70d98753d5eff7f","kind":"tag","published_at":"2024-08-03T02:11:58.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.11.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.11.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.11.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.11.0/manifests"},{"name":"v0.11.0","sha":"db1eabfa812c7a18a1347ebfb70d98753d5eff7f","kind":"commit","published_at":"2024-08-03T02:11:25.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.11.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.11.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.11.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.11.0/manifests"},{"name":"cmd/river/v0.10.2","sha":"fe67030ddb6f5e1ce8bad5acca22ef106a7439d2","kind":"tag","published_at":"2024-08-01T14:10:38.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.10.2","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.10.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.10.2/manifests"},{"name":"rivertype/v0.10.2","sha":"2c29dfd0ded1460bc8eb5319f4f943d15da8753f","kind":"tag","published_at":"2024-08-01T14:02:33.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.10.2","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.10.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.10.2/manifests"},{"name":"riverdriver/riverdatabasesql/v0.10.2","sha":"2c29dfd0ded1460bc8eb5319f4f943d15da8753f","kind":"tag","published_at":"2024-08-01T14:02:33.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.10.2","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.10.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.10.2/manifests"},{"name":"riverdriver/v0.10.2","sha":"2c29dfd0ded1460bc8eb5319f4f943d15da8753f","kind":"tag","published_at":"2024-08-01T14:02:33.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.10.2","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.10.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.10.2/manifests"},{"name":"rivershared/v0.10.2","sha":"2c29dfd0ded1460bc8eb5319f4f943d15da8753f","kind":"tag","published_at":"2024-08-01T14:02:33.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.10.2","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.10.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.10.2/manifests"},{"name":"riverdriver/riverpgxv5/v0.10.2","sha":"2c29dfd0ded1460bc8eb5319f4f943d15da8753f","kind":"tag","published_at":"2024-08-01T14:02:33.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.10.2","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.10.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.10.2/manifests"},{"name":"v0.10.2","sha":"2c29dfd0ded1460bc8eb5319f4f943d15da8753f","kind":"commit","published_at":"2024-08-01T14:02:17.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.10.2","html_url":"https://github.com/riverqueue/river/releases/tag/v0.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.10.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.10.2/manifests"},{"name":"cmd/river/v0.10.1","sha":"bf61772d4693ed498f66a7e1697819554bf3f0cb","kind":"tag","published_at":"2024-07-24T12:49:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.10.1","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.10.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.10.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.10.1/manifests"},{"name":"rivertype/v0.10.1","sha":"b4850c141180b6a766f63afdbe604cb3b43585a4","kind":"tag","published_at":"2024-07-24T03:37:05.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.10.1","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.10.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.10.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.10.1/manifests"},{"name":"rivershared/v0.10.1","sha":"b4850c141180b6a766f63afdbe604cb3b43585a4","kind":"tag","published_at":"2024-07-24T03:37:05.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.10.1","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.10.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.10.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.10.1/manifests"},{"name":"riverdriver/v0.10.1","sha":"b4850c141180b6a766f63afdbe604cb3b43585a4","kind":"tag","published_at":"2024-07-24T03:37:05.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.10.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.10.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.10.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.10.1/manifests"},{"name":"riverdriver/riverpgxv5/v0.10.1","sha":"b4850c141180b6a766f63afdbe604cb3b43585a4","kind":"tag","published_at":"2024-07-24T03:37:05.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.10.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.10.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.10.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.10.1/manifests"},{"name":"riverdriver/riverdatabasesql/v0.10.1","sha":"b4850c141180b6a766f63afdbe604cb3b43585a4","kind":"tag","published_at":"2024-07-24T03:37:05.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.10.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.10.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.10.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.10.1/manifests"},{"name":"v0.10.1","sha":"b4850c141180b6a766f63afdbe604cb3b43585a4","kind":"commit","published_at":"2024-07-24T03:36:53.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.10.1","html_url":"https://github.com/riverqueue/river/releases/tag/v0.10.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.10.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.10.1/manifests"},{"name":"cmd/river/v0.10.0","sha":"439c789952dc6941e9ec949ce9776d3fc840f887","kind":"tag","published_at":"2024-07-19T15:23:23.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.10.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.10.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.10.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.10.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.10.0","sha":"dfbef6fbf59e0e8af7c78ad9ba21204853c0f9d7","kind":"tag","published_at":"2024-07-19T14:53:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.10.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.10.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.10.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.10.0/manifests"},{"name":"rivershared/v0.10.0","sha":"dfbef6fbf59e0e8af7c78ad9ba21204853c0f9d7","kind":"tag","published_at":"2024-07-19T14:53:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivershared/v0.10.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivershared/v0.10.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivershared%2Fv0.10.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivershared%2Fv0.10.0/manifests"},{"name":"rivertype/v0.10.0","sha":"dfbef6fbf59e0e8af7c78ad9ba21204853c0f9d7","kind":"tag","published_at":"2024-07-19T14:53:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.10.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.10.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.10.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.10.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.10.0","sha":"dfbef6fbf59e0e8af7c78ad9ba21204853c0f9d7","kind":"tag","published_at":"2024-07-19T14:53:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.10.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.10.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.10.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.10.0/manifests"},{"name":"riverdriver/v0.10.0","sha":"dfbef6fbf59e0e8af7c78ad9ba21204853c0f9d7","kind":"tag","published_at":"2024-07-19T14:53:30.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.10.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.10.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.10.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.10.0/manifests"},{"name":"v0.10.0","sha":"dfbef6fbf59e0e8af7c78ad9ba21204853c0f9d7","kind":"commit","published_at":"2024-07-19T14:52:44.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.10.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.10.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.10.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.10.0/manifests"},{"name":"cmd/river/v0.9.0","sha":"7bb1c41cff469f5abb773f7eb6de2010f07d6855","kind":"tag","published_at":"2024-07-04T14:37:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.9.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.9.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.9.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.9.0/manifests"},{"name":"riverdriver/v0.9.0","sha":"7bb1c41cff469f5abb773f7eb6de2010f07d6855","kind":"tag","published_at":"2024-07-04T14:37:28.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.9.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.9.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.9.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.9.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.9.0","sha":"7bb1c41cff469f5abb773f7eb6de2010f07d6855","kind":"tag","published_at":"2024-07-04T14:37:28.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.9.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.9.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.9.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.9.0/manifests"},{"name":"rivertype/v0.9.0","sha":"7bb1c41cff469f5abb773f7eb6de2010f07d6855","kind":"tag","published_at":"2024-07-04T14:37:28.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.9.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.9.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.9.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.9.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.9.0","sha":"7bb1c41cff469f5abb773f7eb6de2010f07d6855","kind":"tag","published_at":"2024-07-04T14:37:28.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.9.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.9.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.9.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.9.0/manifests"},{"name":"v0.9.0","sha":"7bb1c41cff469f5abb773f7eb6de2010f07d6855","kind":"commit","published_at":"2024-07-04T14:37:05.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.9.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.9.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.9.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.9.0/manifests"},{"name":"cmd/river/v0.8.0","sha":"b00c97181483c5974f2fe1982563a464c858b4d1","kind":"tag","published_at":"2024-06-26T03:11:39.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.8.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.8.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.8.0/manifests"},{"name":"riverdriver/v0.8.0","sha":"b00c97181483c5974f2fe1982563a464c858b4d1","kind":"tag","published_at":"2024-06-26T03:11:33.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.8.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.8.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.8.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.8.0","sha":"b00c97181483c5974f2fe1982563a464c858b4d1","kind":"tag","published_at":"2024-06-26T03:11:33.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.8.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.8.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.8.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.8.0","sha":"b00c97181483c5974f2fe1982563a464c858b4d1","kind":"tag","published_at":"2024-06-26T03:11:33.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.8.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.8.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.8.0/manifests"},{"name":"rivertype/v0.8.0","sha":"b00c97181483c5974f2fe1982563a464c858b4d1","kind":"tag","published_at":"2024-06-26T03:11:33.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.8.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.8.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.8.0/manifests"},{"name":"v0.8.0","sha":"b00c97181483c5974f2fe1982563a464c858b4d1","kind":"commit","published_at":"2024-06-26T03:11:12.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.8.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.8.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.8.0/manifests"},{"name":"rivertype/v0.7.0","sha":"c1aa4eeaba5652935556b0e7b6853cbf0541b5d8","kind":"tag","published_at":"2024-06-14T03:35:36.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.7.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.7.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.7.0/manifests"},{"name":"riverdriver/v0.7.0","sha":"c1aa4eeaba5652935556b0e7b6853cbf0541b5d8","kind":"tag","published_at":"2024-06-14T03:35:36.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.7.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.7.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.7.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.7.0","sha":"c1aa4eeaba5652935556b0e7b6853cbf0541b5d8","kind":"tag","published_at":"2024-06-14T03:35:36.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.7.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.7.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.7.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.7.0","sha":"c1aa4eeaba5652935556b0e7b6853cbf0541b5d8","kind":"tag","published_at":"2024-06-14T03:35:36.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.7.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.7.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.7.0/manifests"},{"name":"v0.7.0","sha":"c1aa4eeaba5652935556b0e7b6853cbf0541b5d8","kind":"commit","published_at":"2024-06-14T03:34:54.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.7.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.7.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.7.0/manifests"},{"name":"cmd/river/v0.6.1","sha":"82058b012479418552dadfe6cb78fd2d09ac6ea4","kind":"tag","published_at":"2024-05-21T06:47:27.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.6.1","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.6.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.6.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.6.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.6.1/manifests"},{"name":"rivertype/v0.6.1","sha":"64baafd5553512c13f11ad04123509877c46dd0d","kind":"tag","published_at":"2024-05-21T06:11:48.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.6.1","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.6.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.6.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.6.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.6.1/manifests"},{"name":"riverdriver/v0.6.1","sha":"64baafd5553512c13f11ad04123509877c46dd0d","kind":"tag","published_at":"2024-05-21T06:11:48.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.6.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.6.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.6.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.6.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.6.1/manifests"},{"name":"riverdriver/riverpgxv5/v0.6.1","sha":"64baafd5553512c13f11ad04123509877c46dd0d","kind":"tag","published_at":"2024-05-21T06:11:48.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.6.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.6.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.6.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.6.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.6.1/manifests"},{"name":"riverdriver/riverdatabasesql/v0.6.1","sha":"64baafd5553512c13f11ad04123509877c46dd0d","kind":"tag","published_at":"2024-05-21T06:11:48.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.6.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.6.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.6.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.6.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.6.1/manifests"},{"name":"v0.6.1","sha":"64baafd5553512c13f11ad04123509877c46dd0d","kind":"commit","published_at":"2024-05-21T06:11:32.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.6.1","html_url":"https://github.com/riverqueue/river/releases/tag/v0.6.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.6.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.6.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.6.1/manifests"},{"name":"cmd/river/v0.6.0","sha":"2c0e11f72073f0370c4389fbe07efb21b033d93a","kind":"tag","published_at":"2024-05-09T05:04:08.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.6.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.6.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.6.0/manifests"},{"name":"rivertype/v0.6.0","sha":"2c0e11f72073f0370c4389fbe07efb21b033d93a","kind":"tag","published_at":"2024-05-09T05:04:05.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.6.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.6.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.6.0/manifests"},{"name":"riverdriver/v0.6.0","sha":"2c0e11f72073f0370c4389fbe07efb21b033d93a","kind":"tag","published_at":"2024-05-09T05:04:05.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.6.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.6.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.6.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.6.0","sha":"2c0e11f72073f0370c4389fbe07efb21b033d93a","kind":"tag","published_at":"2024-05-09T05:04:05.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.6.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.6.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.6.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.6.0","sha":"2c0e11f72073f0370c4389fbe07efb21b033d93a","kind":"tag","published_at":"2024-05-09T05:04:05.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.6.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.6.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.6.0/manifests"},{"name":"v0.6.0","sha":"2c0e11f72073f0370c4389fbe07efb21b033d93a","kind":"commit","published_at":"2024-05-09T05:03:14.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.6.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.6.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.6.0/manifests"},{"name":"cmd/river/v0.5.0","sha":"22639120f0e6a00fc61a790649904ed66cf1f9fe","kind":"tag","published_at":"2024-05-03T14:51:09.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.5.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.5.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.5.0/manifests"},{"name":"rivertype/v0.5.0","sha":"0ff658c8aa6865b8e1fcf80ff1e74baab337b506","kind":"tag","published_at":"2024-05-03T14:44:36.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.5.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.5.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.5.0/manifests"},{"name":"riverdriver/v0.5.0","sha":"0ff658c8aa6865b8e1fcf80ff1e74baab337b506","kind":"tag","published_at":"2024-05-03T14:44:36.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.5.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.5.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.5.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.5.0","sha":"0ff658c8aa6865b8e1fcf80ff1e74baab337b506","kind":"tag","published_at":"2024-05-03T14:44:36.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.5.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.5.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.5.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.5.0","sha":"0ff658c8aa6865b8e1fcf80ff1e74baab337b506","kind":"tag","published_at":"2024-05-03T14:44:36.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.5.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.5.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.5.0/manifests"},{"name":"v0.5.0","sha":"0ff658c8aa6865b8e1fcf80ff1e74baab337b506","kind":"commit","published_at":"2024-05-03T14:44:26.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.5.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.5.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.5.0/manifests"},{"name":"cmd/river/v0.4.1","sha":"48a4b17af4c39dc15ac4b99220b3c31e694915c7","kind":"tag","published_at":"2024-04-23T01:36:38.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.4.1","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.4.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.4.1/manifests"},{"name":"rivertype/v0.4.1","sha":"48a4b17af4c39dc15ac4b99220b3c31e694915c7","kind":"tag","published_at":"2024-04-23T01:36:27.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.4.1","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.4.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.4.1/manifests"},{"name":"riverdriver/v0.4.1","sha":"48a4b17af4c39dc15ac4b99220b3c31e694915c7","kind":"tag","published_at":"2024-04-23T01:36:27.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.4.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.4.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.4.1/manifests"},{"name":"riverdriver/riverdatabasesql/v0.4.1","sha":"48a4b17af4c39dc15ac4b99220b3c31e694915c7","kind":"tag","published_at":"2024-04-23T01:36:27.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.4.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.4.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.4.1/manifests"},{"name":"riverdriver/riverpgxv5/v0.4.1","sha":"48a4b17af4c39dc15ac4b99220b3c31e694915c7","kind":"tag","published_at":"2024-04-23T01:36:27.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.4.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.4.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.4.1/manifests"},{"name":"v0.4.1","sha":"48a4b17af4c39dc15ac4b99220b3c31e694915c7","kind":"commit","published_at":"2024-04-23T01:36:04.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.4.1","html_url":"https://github.com/riverqueue/river/releases/tag/v0.4.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.4.1/manifests"},{"name":"cmd/river/v0.4.0","sha":"ba9f219b60d61e4f8c0442e51884b67188912084","kind":"tag","published_at":"2024-04-21T15:33:40.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.4.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.4.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.4.0/manifests"},{"name":"rivertype/v0.4.0","sha":"ba9f219b60d61e4f8c0442e51884b67188912084","kind":"tag","published_at":"2024-04-21T15:33:37.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.4.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.4.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.4.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.4.0","sha":"ba9f219b60d61e4f8c0442e51884b67188912084","kind":"tag","published_at":"2024-04-21T15:33:37.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.4.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.4.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.4.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.4.0","sha":"ba9f219b60d61e4f8c0442e51884b67188912084","kind":"tag","published_at":"2024-04-21T15:33:37.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.4.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.4.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.4.0/manifests"},{"name":"riverdriver/v0.4.0","sha":"ba9f219b60d61e4f8c0442e51884b67188912084","kind":"tag","published_at":"2024-04-21T15:33:37.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.4.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.4.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.4.0/manifests"},{"name":"v0.4.0","sha":"ba9f219b60d61e4f8c0442e51884b67188912084","kind":"commit","published_at":"2024-04-21T15:33:26.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.4.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.4.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.4.0/manifests"},{"name":"cmd/river/v0.3.0","sha":"06f94470746817e2a8727edbe2dc19f951d5b498","kind":"tag","published_at":"2024-04-16T01:30:08.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.3.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.3.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.3.0","sha":"06f94470746817e2a8727edbe2dc19f951d5b498","kind":"tag","published_at":"2024-04-16T01:30:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.3.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.3.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.3.0","sha":"06f94470746817e2a8727edbe2dc19f951d5b498","kind":"tag","published_at":"2024-04-16T01:30:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.3.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.3.0/manifests"},{"name":"riverdriver/v0.3.0","sha":"06f94470746817e2a8727edbe2dc19f951d5b498","kind":"tag","published_at":"2024-04-16T01:30:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.3.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.3.0/manifests"},{"name":"rivertype/v0.3.0","sha":"06f94470746817e2a8727edbe2dc19f951d5b498","kind":"tag","published_at":"2024-04-16T01:30:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.3.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.3.0/manifests"},{"name":"v0.3.0","sha":"06f94470746817e2a8727edbe2dc19f951d5b498","kind":"commit","published_at":"2024-04-16T01:29:47.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.3.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.3.0/manifests"},{"name":"cmd/river/v0.2.0","sha":"baeb245b3437c517c46faf8f77834972c0882c61","kind":"tag","published_at":"2024-03-29T03:58:27.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.2.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.2.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.2.0/manifests"},{"name":"rivertype/v0.2.0","sha":"baeb245b3437c517c46faf8f77834972c0882c61","kind":"tag","published_at":"2024-03-29T03:58:24.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.2.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.2.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.2.0/manifests"},{"name":"riverdriver/v0.2.0","sha":"baeb245b3437c517c46faf8f77834972c0882c61","kind":"tag","published_at":"2024-03-29T03:58:24.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.2.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.2.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.2.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.2.0","sha":"baeb245b3437c517c46faf8f77834972c0882c61","kind":"tag","published_at":"2024-03-29T03:58:24.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.2.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.2.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.2.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.2.0","sha":"baeb245b3437c517c46faf8f77834972c0882c61","kind":"tag","published_at":"2024-03-29T03:58:24.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.2.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.2.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.2.0/manifests"},{"name":"v0.2.0","sha":"baeb245b3437c517c46faf8f77834972c0882c61","kind":"commit","published_at":"2024-03-29T03:57:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.2.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.2.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.2.0/manifests"},{"name":"cmd/river/v0.1.0","sha":"010f4cd97b3af25b13cbd2592e426be7099f1dfc","kind":"tag","published_at":"2024-03-17T23:22:33.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.1.0","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.1.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.1.0/manifests"},{"name":"rivertype/v0.1.0","sha":"5475019e4581e7200e3a3c86b46413099357a5e6","kind":"tag","published_at":"2024-03-17T23:12:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.1.0","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.1.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.1.0/manifests"},{"name":"riverdriver/riverdatabasesql/v0.1.0","sha":"5475019e4581e7200e3a3c86b46413099357a5e6","kind":"tag","published_at":"2024-03-17T23:12:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.1.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.1.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.1.0/manifests"},{"name":"riverdriver/riverpgxv5/v0.1.0","sha":"5475019e4581e7200e3a3c86b46413099357a5e6","kind":"tag","published_at":"2024-03-17T23:12:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.1.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.1.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.1.0/manifests"},{"name":"riverdriver/v0.1.0","sha":"5475019e4581e7200e3a3c86b46413099357a5e6","kind":"tag","published_at":"2024-03-17T23:12:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.1.0","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.1.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.1.0/manifests"},{"name":"v0.1.0","sha":"5475019e4581e7200e3a3c86b46413099357a5e6","kind":"commit","published_at":"2024-03-17T23:11:49.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.1.0","html_url":"https://github.com/riverqueue/river/releases/tag/v0.1.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.1.0/manifests"},{"name":"rivertype/v0.0.25","sha":"6b03de1f181272ce953c3f7fabbef0a5ad8e4996","kind":"tag","published_at":"2024-03-02T04:28:24.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.0.25","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.0.25","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.0.25","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.0.25","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.0.25/manifests"},{"name":"riverdriver/v0.0.25","sha":"6b03de1f181272ce953c3f7fabbef0a5ad8e4996","kind":"tag","published_at":"2024-03-02T04:28:24.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.0.25","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.0.25","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.0.25","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.25","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.25/manifests"},{"name":"cmd/river/v0.0.25","sha":"6b03de1f181272ce953c3f7fabbef0a5ad8e4996","kind":"tag","published_at":"2024-03-02T04:28:24.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.0.25","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.0.25","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.0.25","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.25","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.25/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.25","sha":"6b03de1f181272ce953c3f7fabbef0a5ad8e4996","kind":"tag","published_at":"2024-03-02T04:28:24.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.25","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.25","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.25","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.25","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.25/manifests"},{"name":"riverdriver/riverdatabasesql/v0.0.25","sha":"6b03de1f181272ce953c3f7fabbef0a5ad8e4996","kind":"tag","published_at":"2024-03-02T04:28:24.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.0.25","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.0.25","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.0.25","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.25","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.25/manifests"},{"name":"v0.0.25","sha":"6b03de1f181272ce953c3f7fabbef0a5ad8e4996","kind":"commit","published_at":"2024-03-02T04:28:11.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.25","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.25","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.25","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.25","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.25/manifests"},{"name":"rivertype/v0.0.24","sha":"035ba5919e944c1ad027582b877192cc16516fc2","kind":"tag","published_at":"2024-03-01T04:40:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.0.24","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.0.24","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.0.24","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.0.24","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.0.24/manifests"},{"name":"cmd/river/v0.0.24","sha":"035ba5919e944c1ad027582b877192cc16516fc2","kind":"tag","published_at":"2024-03-01T04:40:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.0.24","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.0.24","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.0.24","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.24","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.24/manifests"},{"name":"riverdriver/riverdatabasesql/v0.0.24","sha":"035ba5919e944c1ad027582b877192cc16516fc2","kind":"tag","published_at":"2024-03-01T04:40:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.0.24","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.0.24","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.0.24","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.24","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.24/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.24","sha":"035ba5919e944c1ad027582b877192cc16516fc2","kind":"tag","published_at":"2024-03-01T04:40:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.24","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.24","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.24","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.24","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.24/manifests"},{"name":"riverdriver/v0.0.24","sha":"035ba5919e944c1ad027582b877192cc16516fc2","kind":"tag","published_at":"2024-03-01T04:40:15.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.0.24","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.0.24","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.0.24","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.24","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.24/manifests"},{"name":"v0.0.24","sha":"035ba5919e944c1ad027582b877192cc16516fc2","kind":"commit","published_at":"2024-03-01T04:40:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.24","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.24","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.24","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.24","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.24/manifests"},{"name":"rivertype/v0.0.23","sha":"0ace41df5f826129bc988fdc2e43bee5a7d8bbd2","kind":"tag","published_at":"2024-02-29T16:13:51.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/rivertype/v0.0.23","html_url":"https://github.com/riverqueue/river/releases/tag/rivertype/v0.0.23","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@rivertype%2Fv0.0.23","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.0.23","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/rivertype%2Fv0.0.23/manifests"},{"name":"riverdriver/v0.0.23","sha":"4e5a6f8574f500399c1aa117357b400e33652b74","kind":"tag","published_at":"2024-02-29T15:29:19.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.0.23","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.0.23","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.0.23","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.23","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.23/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.23","sha":"4e5a6f8574f500399c1aa117357b400e33652b74","kind":"tag","published_at":"2024-02-29T15:29:19.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.23","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.23","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.23","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.23","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.23/manifests"},{"name":"riverdriver/riverdatabasesql/v0.0.23","sha":"4e5a6f8574f500399c1aa117357b400e33652b74","kind":"tag","published_at":"2024-02-29T15:29:19.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.0.23","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.0.23","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.0.23","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.23","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.23/manifests"},{"name":"cmd/river/v0.0.23","sha":"4e5a6f8574f500399c1aa117357b400e33652b74","kind":"tag","published_at":"2024-02-29T15:29:19.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.0.23","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.0.23","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.0.23","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.23","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.23/manifests"},{"name":"v0.0.23","sha":"4e5a6f8574f500399c1aa117357b400e33652b74","kind":"commit","published_at":"2024-02-29T15:28:26.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.23","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.23","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.23","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.23","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.23/manifests"},{"name":"riverdriver/v0.0.22","sha":"47998542cd501dee1ce13fb300f21669f93208da","kind":"tag","published_at":"2024-02-19T20:26:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.0.22","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.0.22","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.0.22","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.22","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.22/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.22","sha":"47998542cd501dee1ce13fb300f21669f93208da","kind":"tag","published_at":"2024-02-19T20:26:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.22","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.22","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.22","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.22","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.22/manifests"},{"name":"riverdriver/riverdatabasesql/v0.0.22","sha":"47998542cd501dee1ce13fb300f21669f93208da","kind":"tag","published_at":"2024-02-19T20:26:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.0.22","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.0.22","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.0.22","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.22","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.22/manifests"},{"name":"cmd/river/v0.0.22","sha":"47998542cd501dee1ce13fb300f21669f93208da","kind":"tag","published_at":"2024-02-19T20:26:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.0.22","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.0.22","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.0.22","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.22","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.22/manifests"},{"name":"v0.0.22","sha":"47998542cd501dee1ce13fb300f21669f93208da","kind":"commit","published_at":"2024-02-19T20:26:02.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.22","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.22","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.22","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.22","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.22/manifests"},{"name":"riverdriver/riverdatabasesql/v0.0.21","sha":"ac7cc2ea1d5f8fe2be66ab7f14a73cbfaf18a0ab","kind":"tag","published_at":"2024-02-19T18:15:09.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.0.21","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.0.21","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.0.21","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.21","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.21/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.21","sha":"ac7cc2ea1d5f8fe2be66ab7f14a73cbfaf18a0ab","kind":"tag","published_at":"2024-02-19T18:15:09.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.21","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.21","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.21","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.21","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.21/manifests"},{"name":"cmd/river/v0.0.21","sha":"ac7cc2ea1d5f8fe2be66ab7f14a73cbfaf18a0ab","kind":"tag","published_at":"2024-02-19T18:15:09.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.0.21","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.0.21","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.0.21","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.21","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.21/manifests"},{"name":"riverdriver/v0.0.21","sha":"ac7cc2ea1d5f8fe2be66ab7f14a73cbfaf18a0ab","kind":"tag","published_at":"2024-02-19T18:15:09.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.0.21","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.0.21","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.0.21","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.21","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.21/manifests"},{"name":"v0.0.21","sha":"ac7cc2ea1d5f8fe2be66ab7f14a73cbfaf18a0ab","kind":"commit","published_at":"2024-02-19T18:14:59.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.21","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.21","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.21","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.21","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.21/manifests"},{"name":"riverdriver/v0.0.20","sha":"896fd0b93ba4c334e3d7e1d35d1b03688e5d3830","kind":"tag","published_at":"2024-02-15T02:39:56.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.0.20","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.0.20","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.0.20","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.20","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.20/manifests"},{"name":"cmd/river/v0.0.20","sha":"896fd0b93ba4c334e3d7e1d35d1b03688e5d3830","kind":"tag","published_at":"2024-02-15T02:39:56.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.0.20","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.0.20","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.0.20","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.20","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.20/manifests"},{"name":"riverdriver/riverdatabasesql/v0.0.20","sha":"896fd0b93ba4c334e3d7e1d35d1b03688e5d3830","kind":"tag","published_at":"2024-02-15T02:39:56.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.0.20","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.0.20","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.0.20","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.20","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.20/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.20","sha":"896fd0b93ba4c334e3d7e1d35d1b03688e5d3830","kind":"tag","published_at":"2024-02-15T02:39:56.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.20","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.20","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.20","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.20","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.20/manifests"},{"name":"v0.0.20","sha":"896fd0b93ba4c334e3d7e1d35d1b03688e5d3830","kind":"commit","published_at":"2024-02-15T02:39:17.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.20","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.20","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.20","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.20","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.20/manifests"},{"name":"riverdriver/riverdatabasesql/v0.0.19","sha":"6c7dc49fc657867ea098e722d61c778fc2a4bba8","kind":"tag","published_at":"2024-02-11T05:28:42.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.0.19","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.0.19","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.0.19","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.19","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.19/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.19","sha":"6c7dc49fc657867ea098e722d61c778fc2a4bba8","kind":"tag","published_at":"2024-02-11T05:28:42.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.19","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.19","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.19","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.19","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.19/manifests"},{"name":"riverdriver/v0.0.19","sha":"6c7dc49fc657867ea098e722d61c778fc2a4bba8","kind":"tag","published_at":"2024-02-11T05:28:42.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.0.19","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.0.19","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.0.19","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.19","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.19/manifests"},{"name":"cmd/river/v0.0.19","sha":"6c7dc49fc657867ea098e722d61c778fc2a4bba8","kind":"tag","published_at":"2024-02-11T05:28:42.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.0.19","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.0.19","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.0.19","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.19","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.19/manifests"},{"name":"v0.0.19","sha":"6c7dc49fc657867ea098e722d61c778fc2a4bba8","kind":"commit","published_at":"2024-02-11T05:27:59.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.19","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.19","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.19","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.19","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.19/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.18","sha":"c88eda662e1d83f1068ab81c053d20b0825f08c4","kind":"tag","published_at":"2024-01-26T14:33:20.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.18","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.18","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.18","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.18","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.18/manifests"},{"name":"riverdriver/v0.0.18","sha":"c88eda662e1d83f1068ab81c053d20b0825f08c4","kind":"tag","published_at":"2024-01-26T14:33:20.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.0.18","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.0.18","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.0.18","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.18","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.18/manifests"},{"name":"riverdriver/riverdatabasesql/v0.0.18","sha":"c88eda662e1d83f1068ab81c053d20b0825f08c4","kind":"tag","published_at":"2024-01-26T14:33:20.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.0.18","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.0.18","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.0.18","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.18","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.18/manifests"},{"name":"cmd/river/v0.0.18","sha":"c88eda662e1d83f1068ab81c053d20b0825f08c4","kind":"tag","published_at":"2024-01-26T14:33:20.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.0.18","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.0.18","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.0.18","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.18","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.18/manifests"},{"name":"v0.0.18","sha":"c88eda662e1d83f1068ab81c053d20b0825f08c4","kind":"commit","published_at":"2024-01-26T14:33:04.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.18","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.18","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.18","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.18","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.18/manifests"},{"name":"cmd/river/v0.0.17","sha":"feceb387ef39ee3f20a21e552e8ca45fadfbfdd3","kind":"tag","published_at":"2024-01-23T15:00:21.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.0.17","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.0.17","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.0.17","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.17","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.17/manifests"},{"name":"riverdriver/riverdatabasesql/v0.0.17","sha":"c10e24fee9d72e37a7f175cc0d7dc4f4e565e169","kind":"tag","published_at":"2024-01-23T14:49:31.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.0.17","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.0.17","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.0.17","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.17","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.17/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.17","sha":"c10e24fee9d72e37a7f175cc0d7dc4f4e565e169","kind":"tag","published_at":"2024-01-23T14:49:29.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.17","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.17","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.17","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.17","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.17/manifests"},{"name":"riverdriver/v0.0.17","sha":"c10e24fee9d72e37a7f175cc0d7dc4f4e565e169","kind":"tag","published_at":"2024-01-23T14:49:26.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.0.17","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.0.17","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.0.17","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.17","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.17/manifests"},{"name":"v0.0.17","sha":"c10e24fee9d72e37a7f175cc0d7dc4f4e565e169","kind":"commit","published_at":"2024-01-23T14:48:39.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.17","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.17","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.17","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.17","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.17/manifests"},{"name":"riverdriver/riverdatabasesql/v0.0.16","sha":"6bb58c4b2876a024b2cee617469130bf45fda489","kind":"tag","published_at":"2024-01-06T20:22:49.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.0.16","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.0.16","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.0.16","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.16","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.16/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.16","sha":"6bb58c4b2876a024b2cee617469130bf45fda489","kind":"tag","published_at":"2024-01-06T20:22:48.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.16","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.16","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.16","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.16","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.16/manifests"},{"name":"riverdriver/v0.0.16","sha":"6bb58c4b2876a024b2cee617469130bf45fda489","kind":"tag","published_at":"2024-01-06T20:22:46.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.0.16","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.0.16","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.0.16","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.16","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.16/manifests"},{"name":"cmd/river/v0.0.16","sha":"6bb58c4b2876a024b2cee617469130bf45fda489","kind":"tag","published_at":"2024-01-06T20:22:45.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.0.16","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.0.16","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.0.16","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.16","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.16/manifests"},{"name":"v0.0.16","sha":"6bb58c4b2876a024b2cee617469130bf45fda489","kind":"commit","published_at":"2024-01-06T20:22:24.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.16","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.16","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.16","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.16","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.16/manifests"},{"name":"cmd/river/v0.0.15","sha":"6771fd3498118105cb0dff3ce7eead90d74924eb","kind":"tag","published_at":"2023-12-22T05:49:25.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.0.15","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.0.15","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.0.15","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.15","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.15/manifests"},{"name":"riverdriver/v0.0.15","sha":"6771fd3498118105cb0dff3ce7eead90d74924eb","kind":"tag","published_at":"2023-12-22T05:49:25.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.0.15","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.0.15","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.0.15","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.15","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.15/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.15","sha":"6771fd3498118105cb0dff3ce7eead90d74924eb","kind":"tag","published_at":"2023-12-22T05:49:25.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.15","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.15","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.15","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.15","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.15/manifests"},{"name":"riverdriver/riverdatabasesql/v0.0.15","sha":"6771fd3498118105cb0dff3ce7eead90d74924eb","kind":"tag","published_at":"2023-12-22T05:49:25.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.0.15","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.0.15","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.0.15","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.15","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.15/manifests"},{"name":"v0.0.15","sha":"6771fd3498118105cb0dff3ce7eead90d74924eb","kind":"commit","published_at":"2023-12-22T05:48:55.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.15","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.15","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.15","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.15","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.15/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.14","sha":"8f976ef796af0a59d07df929668afffd08075c82","kind":"tag","published_at":"2023-12-13T13:34:56.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.14","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.14","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.14","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.14","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.14/manifests"},{"name":"riverdriver/riverdatabasesql/v0.0.14","sha":"8f976ef796af0a59d07df929668afffd08075c82","kind":"tag","published_at":"2023-12-13T13:34:56.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.0.14","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.0.14","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.0.14","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.14","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.14/manifests"},{"name":"riverdriver/v0.0.14","sha":"8f976ef796af0a59d07df929668afffd08075c82","kind":"tag","published_at":"2023-12-13T13:34:56.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.0.14","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.0.14","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.0.14","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.14","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.14/manifests"},{"name":"cmd/river/v0.0.14","sha":"8f976ef796af0a59d07df929668afffd08075c82","kind":"tag","published_at":"2023-12-13T13:34:56.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.0.14","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.0.14","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.0.14","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.14","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.14/manifests"},{"name":"v0.0.14","sha":"8f976ef796af0a59d07df929668afffd08075c82","kind":"commit","published_at":"2023-12-13T13:34:34.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.14","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.14","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.14","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.14","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.14/manifests"},{"name":"riverdriver/v0.0.13","sha":"847bb9b3660dc07bdbee541dafdeaafbd8871e6c","kind":"tag","published_at":"2023-12-13T04:01:01.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/v0.0.13","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/v0.0.13","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Fv0.0.13","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.13","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Fv0.0.13/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.13","sha":"ab61451ea773026c866800b91867e12cdca2d8b8","kind":"tag","published_at":"2023-12-13T02:47:41.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.13","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.13","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.13","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.13","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.13/manifests"},{"name":"cmd/river/v0.0.13","sha":"ab61451ea773026c866800b91867e12cdca2d8b8","kind":"tag","published_at":"2023-12-13T02:47:41.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/cmd/river/v0.0.13","html_url":"https://github.com/riverqueue/river/releases/tag/cmd/river/v0.0.13","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@cmd%2Friver%2Fv0.0.13","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.13","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/cmd%2Friver%2Fv0.0.13/manifests"},{"name":"riverdriver/riverdatabasesql/v0.0.13","sha":"ab61451ea773026c866800b91867e12cdca2d8b8","kind":"tag","published_at":"2023-12-13T02:47:41.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverdatabasesql/v0.0.13","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverdatabasesql/v0.0.13","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverdatabasesql%2Fv0.0.13","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.13","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverdatabasesql%2Fv0.0.13/manifests"},{"name":"v0.0.13","sha":"ab61451ea773026c866800b91867e12cdca2d8b8","kind":"commit","published_at":"2023-12-13T02:47:11.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.13","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.13","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.13","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.13","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.13/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.12","sha":"9871811d9e8ad0bdcc5210fc84977257102bfde8","kind":"tag","published_at":"2023-12-03T03:32:46.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.12","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.12","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.12","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.12","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.12/manifests"},{"name":"v0.0.12","sha":"9871811d9e8ad0bdcc5210fc84977257102bfde8","kind":"commit","published_at":"2023-12-03T03:32:02.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.12","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.12","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.12","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.12","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.12/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.11","sha":"4fd541fa83a79a19f76c0f6a5274c1ca63747558","kind":"tag","published_at":"2023-12-02T23:58:24.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.11","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.11","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.11","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.11","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.11/manifests"},{"name":"v0.0.11","sha":"4fd541fa83a79a19f76c0f6a5274c1ca63747558","kind":"commit","published_at":"2023-12-02T23:58:12.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.11","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.11","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.11","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.11","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.11/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.10","sha":"0c4ad4ccdfe543ad7cf02c7f23a42c0207ee9de1","kind":"tag","published_at":"2023-11-26T23:22:49.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.10","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.10","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.10","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.10/manifests"},{"name":"v0.0.10","sha":"0c4ad4ccdfe543ad7cf02c7f23a42c0207ee9de1","kind":"commit","published_at":"2023-11-26T23:22:38.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.10","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.10","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.10","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.10/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.9","sha":"42cf3186659d17135be3e40c155d84407378b542","kind":"tag","published_at":"2023-11-23T18:02:16.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.9","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.9","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.9/manifests"},{"name":"v0.0.9","sha":"42cf3186659d17135be3e40c155d84407378b542","kind":"commit","published_at":"2023-11-23T18:01:44.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.9","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.9","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.9/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.8","sha":"b0425c3213cb094ba795e5c1eaa3023ba720efd7","kind":"tag","published_at":"2023-11-22T04:50:21.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.8","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.8","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.8/manifests"},{"name":"v0.0.8","sha":"b0425c3213cb094ba795e5c1eaa3023ba720efd7","kind":"commit","published_at":"2023-11-22T04:49:58.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.8","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.8","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.8/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.7","sha":"fa94b350c15a151f1dafe507b900d09e608db197","kind":"tag","published_at":"2023-11-20T14:32:39.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.7","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.7","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.7/manifests"},{"name":"v0.0.7","sha":"fa94b350c15a151f1dafe507b900d09e608db197","kind":"commit","published_at":"2023-11-20T14:29:47.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.7","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.7","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.7/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.6","sha":"62b5ae31deeb34592ddea163dccf97609a24872f","kind":"tag","published_at":"2023-11-20T06:32:00.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.6","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.6","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.6/manifests"},{"name":"v0.0.6","sha":"62b5ae31deeb34592ddea163dccf97609a24872f","kind":"commit","published_at":"2023-11-20T06:31:23.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.6","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.6","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.6/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.5","sha":"6c3904a1a9d5c51b1eef13bfd5b612bd595418e2","kind":"tag","published_at":"2023-11-19T23:56:24.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.5","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.5","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.5/manifests"},{"name":"v0.0.5","sha":"6c3904a1a9d5c51b1eef13bfd5b612bd595418e2","kind":"commit","published_at":"2023-11-19T23:55:53.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.5","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.5","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.5/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.4","sha":"37b4a722fcb307b38c53df8b8eb1a583220f1796","kind":"tag","published_at":"2023-11-18T03:12:40.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.4","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.4/manifests"},{"name":"v0.0.4","sha":"37b4a722fcb307b38c53df8b8eb1a583220f1796","kind":"commit","published_at":"2023-11-18T03:11:55.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.4","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.4/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.3","sha":"3810f7db35c8f39c8823cf168bffad02b8fd2f60","kind":"tag","published_at":"2023-11-14T02:20:07.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.3","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.3/manifests"},{"name":"v0.0.3","sha":"3810f7db35c8f39c8823cf168bffad02b8fd2f60","kind":"tag","published_at":"2023-11-14T02:19:56.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.3","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.3/manifests"},{"name":"v0.0.2","sha":"845c5820a7db6e7ce8fac44e1143e1f587d88e9d","kind":"tag","published_at":"2023-11-13T16:55:34.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.2","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.2/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.2","sha":"845c5820a7db6e7ce8fac44e1143e1f587d88e9d","kind":"commit","published_at":"2023-11-13T16:53:57.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.2","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.2/manifests"},{"name":"v0.0.1","sha":"58a44c3d3a9e1fe9ca561d2de749439bd046acbc","kind":"tag","published_at":"2023-11-13T05:35:49.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/v0.0.1","html_url":"https://github.com/riverqueue/river/releases/tag/v0.0.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@v0.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/v0.0.1/manifests"},{"name":"riverdriver/riverpgxv5/v0.0.1","sha":"58a44c3d3a9e1fe9ca561d2de749439bd046acbc","kind":"commit","published_at":"2023-11-13T05:14:43.000Z","download_url":"https://codeload.github.com/riverqueue/river/tar.gz/riverdriver/riverpgxv5/v0.0.1","html_url":"https://github.com/riverqueue/river/releases/tag/riverdriver/riverpgxv5/v0.0.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/riverqueue/river@riverdriver%2Friverpgxv5%2Fv0.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/tags/riverdriver%2Friverpgxv5%2Fv0.0.1/manifests"}]},"repo_metadata_updated_at":"2025-10-09T03:35:31.381Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":0,"rankings":{"downloads":null,"dependent_repos_count":10.745243289867574,"dependent_packages_count":9.428687401694658,"stargazers_count":25.243594297021666,"forks_count":18.76229133898219,"docker_downloads_count":null,"average":16.04495408189152},"purl":"pkg:golang/github.com/riverqueue/river","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/go/github.com/riverqueue/river","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/go/github.com/riverqueue/river","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/go/github.com/riverqueue/river/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2025-10-08T01:06:14.504Z","issues_count":232,"pull_requests_count":856,"avg_time_to_close_issue":1667807.1597222222,"avg_time_to_close_pull_request":287351.8684895833,"issues_closed_count":144,"pull_requests_closed_count":768,"pull_request_authors_count":38,"issue_authors_count":128,"avg_comments_per_issue":2.0474137931034484,"avg_comments_per_pull_request":0.9392523364485982,"merged_pull_requests_count":709,"bot_issues_count":0,"bot_pull_requests_count":63,"past_year_issues_count":88,"past_year_pull_requests_count":408,"past_year_avg_time_to_close_issue":2220062.409090909,"past_year_avg_time_to_close_pull_request":170255.77591036414,"past_year_issues_closed_count":44,"past_year_pull_requests_closed_count":357,"past_year_pull_request_authors_count":17,"past_year_issue_authors_count":65,"past_year_avg_comments_per_issue":1.7045454545454546,"past_year_avg_comments_per_pull_request":0.7573529411764706,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":41,"past_year_merged_pull_requests_count":331,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/riverqueue%2Friver/issues","maintainers":[],"active_maintainers":[]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/github.com%2Friverqueue%2Friver/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/github.com%2Friverqueue%2Friver/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/github.com%2Friverqueue%2Friver/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/github.com%2Friverqueue%2Friver/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/github.com%2Friverqueue%2Friver/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/github.com%2Friverqueue%2Friver/codemeta","maintainers":[]}