Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump rq from 1.11.1 to 1.16.2 #472

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 10, 2024

Bumps rq from 1.11.1 to 1.16.2.

Release notes

Sourced from rq's releases.

v1.16.2

  • Fixed a bug that may cause jobs from intermediate queue to be moved to FailedJobRegistry. Thanks @​selwin!

v1.16.1

  • Added worker_pool.get_worker_process() to make WorkerPool easier to extend. Thanks @​selwin!

v1.16

  • Added a way for jobs to wait for latest result job.latest_result(timeout=60). Thanks @​ajnisbet!
  • Fixed an issue where stopped_callback is not respected when job is enqueued via enqueue_many(). Thanks @​eswolinsky3241!
  • worker-pool no longer ignores --quiet. Thanks @​Mindiell!
  • Added compatibility with AWS Serverless Redis. Thanks @​peter-gy!
  • worker-pool now starts with scheduler. Thanks @​chromium7!

v1.15.1

  • Fixed a bug that may cause a crash when cleaning intermediate queue. Thanks @​selwin!
  • Fixed a bug that may cause canceled jobs to still run dependent jobs. Thanks @​fredsod!

v1.15

  • Added Callback(on_stopped='my_callback). Thanks @​eswolinsky3241!
  • Callback now accepts dotted path to function as input. Thanks @​rishabh-ranjan!
  • queue.enqueue_many() now supports job dependencies. Thanks @​eswolinsky3241!
  • rq worker CLI script now configures logging based on DICT_CONFIG key present in config file. Thanks @​juur!
  • Whenever possible, Worker now uses lmove() to implement reliable queue pattern. Thanks @​selwin!
  • Scheduler should only release locks that it successfully acquires. Thanks @​xzander!
  • Fixes crashes that may happen by changes to as_text() function in v1.14. Thanks @​tchapi!
  • Various linting, CI and code quality improvements. Thanks @​robhudson!

v1.14.1

  • Fixes a crash that happens if Redis connection uses SSL. Thanks @​tchapi!
  • Fixes a crash if job.meta() is loaded using the wrong serializer. Thanks @​gabriels1234!

v1.14

  • Added WorkerPool (beta) that manages multiple workers in a single CLI. Thanks @​selwin!
  • Added a new Callback class that allows more flexibility in declaring job callbacks. Thanks @​ronlut!
  • Fixed a regression where jobs with unserializable return value crashes RQ. Thanks @​tchapi!
  • Added --dequeue-strategy option to RQ's CLI. Thanks @​ccrvlh!
  • Added --max-idle-time option to RQ's worker CLI. Thanks @​ronlut!
  • Added --maintenance-interval option to RQ's worker CLI. Thanks @​ronlut!
  • Fixed RQ usage in Windows as well as various other refactorings. Thanks @​ccrvlh!
  • Show more info on rq info CLI command. Thanks @​iggeehu!
  • queue.enqueue_jobs() now properly account for job dependencies. Thanks @​sim6!
  • TimerDeathPenalty now properly handles negative/infinite timeout. Thanks @​marqueurs404!

v1.13.0

  • Added work_horse_killed_handler argument to Worker. Thanks @​ronlut!
  • Fixed an issue where results aren't properly persisted on synchronous jobs. Thanks @​selwin!
  • Fixed a bug where job results are not properly persisted when result_ttl is -1. Thanks @​sim6!
  • Various documentation and logging fixes. Thanks @​lowercase00!
  • Improve Redis connection reliability. Thanks @​lowercase00!
  • Scheduler reliability improvements. Thanks @​OlegZv and @​lowercase00!

... (truncated)

Changelog

Sourced from rq's changelog.

RQ 1.16.2 (2024-05-01)

  • Fixed a bug that may cause jobs from intermediate queue to be moved to FailedJobRegistry. Thanks @​selwin!

RQ 1.16.1 (2024-03-09)

  • Added worker_pool.get_worker_process() to make WorkerPool easier to extend. Thanks @​selwin!

RQ 1.16 (2024-02-24)

  • Added a way for jobs to wait for latest result job.latest_result(timeout=60). Thanks @​ajnisbet!
  • Fixed an issue where stopped_callback is not respected when job is enqueued via enqueue_many(). Thanks @​eswolinsky3241!
  • worker-pool no longer ignores --quiet. Thanks @​Mindiell!
  • Added compatibility with AWS Serverless Redis. Thanks @​peter-gy!
  • worker-pool now starts with scheduler. Thanks @​chromium7!

RQ 1.15.1 (2023-06-20)

  • Fixed a bug that may cause a crash when cleaning intermediate queue. Thanks @​selwin!
  • Fixed a bug that may cause canceled jobs to still run dependent jobs. Thanks @​fredsod!

RQ 1.15 (2023-05-24)

  • Added Callback(on_stopped='my_callback). Thanks @​eswolinsky3241!
  • Callback now accepts dotted path to function as input. Thanks @​rishabh-ranjan!
  • queue.enqueue_many() now supports job dependencies. Thanks @​eswolinsky3241!
  • rq worker CLI script now configures logging based on DICT_CONFIG key present in config file. Thanks @​juur!
  • Whenever possible, Worker now uses lmove() to implement reliable queue pattern. Thanks @​selwin!
  • Require redis>=4.0.0
  • Scheduler should only release locks that it successfully acquires. Thanks @​xzander!
  • Fixes crashes that may happen by changes to as_text() function in v1.14. Thanks @​tchapi!
  • Various linting, CI and code quality improvements. Thanks @​robhudson!

RQ 1.14.1 (2023-05-05)

  • Fixes a crash that happens if Redis connection uses SSL. Thanks @​tchapi!
  • Fixes a crash if job.meta() is loaded using the wrong serializer. Thanks @​gabriels1234!

RQ 1.14.0 (2023-05-01)

  • Added WorkerPool (beta) that manages multiple workers in a single CLI. Thanks @​selwin!
  • Added a new Callback class that allows more flexibility in declaring job callbacks. Thanks @​ronlut!
  • Fixed a regression where jobs with unserializable return value crashes RQ. Thanks @​tchapi!
  • Added --dequeue-strategy option to RQ's CLI. Thanks @​ccrvlh!
  • Added --max-idle-time option to RQ's worker CLI. Thanks @​ronlut!
  • Added --maintenance-interval option to RQ's worker CLI. Thanks @​ronlut!
  • Fixed RQ usage in Windows as well as various other refactorings. Thanks @​ccrvlh!
  • Show more info on rq info CLI command. Thanks @​iggeehu!
  • queue.enqueue_jobs() now properly account for job dependencies. Thanks @​sim6!
  • TimerDeathPenalty now properly handles negative/infinite timeout. Thanks @​marqueurs404!

RQ 1.13.0 (2023-02-19)

  • Added work_horse_killed_handler argument to Worker. Thanks @​ronlut!
  • Fixed an issue where results aren't properly persisted on synchronous jobs. Thanks @​selwin!
  • Fixed a bug where job results are not properly persisted when result_ttl is -1. Thanks @​sim6!
  • Various documentation and logging fixes. Thanks @​lowercase00!
  • Improve Redis connection reliability. Thanks @​lowercase00!

... (truncated)

Commits
  • 0e15b2a Bump version to 1.16.2
  • e2d144d Moved intermediate queue cleaning functionality to intermediate_queue.cleanup()
  • a7f19d9 Done implementing clean_intermediate_queue()
  • aae4285 Skip intermediate queue tests if Redis < 6.2.0
  • 3ca3480 Ensure intermediate_queue is empty before running tests
  • 7d4c7ee Added intermediate_queue.get_job_ids()
  • 50467b4 Made IntermediateQueue class
  • 1068956 Use sentry-sdk<2 for tests
  • 673b70d Fix test_clean_large_registry
  • 1f8e031 Bump version to 1.16.1
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [rq](https://github.com/rq/rq) from 1.11.1 to 1.16.2.
- [Release notes](https://github.com/rq/rq/releases)
- [Changelog](https://github.com/rq/rq/blob/master/CHANGES.md)
- [Commits](rq/rq@v1.11.1...v1.16.2)

---
updated-dependencies:
- dependency-name: rq
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Copy link

vercel bot commented Jun 10, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
ignite ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 10, 2024 9:46am

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants