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.7.0 to 1.12.0 #1693

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

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jan 18, 2023

Bumps rq from 1.7.0 to 1.12.0.

Release notes

Sourced from rq's releases.

v1.12.0

  • RQ now stores multiple job execution results. This feature is only available on Redis >= 5.0 Redis Streams. Please refer to the docs for more info. Thanks @​selwin!
  • Improve performance when enqueueing many jobs at once. Thanks @​rggjan!
  • Redis server version is now cached in connection object. Thanks @​odarbelaeze!
  • Properly handle at_front argument when jobs are scheduled. Thanks @​gabriels1234!
  • Add type hints to RQ's code base. Thanks @​lowercase00!
  • Fixed a bug where exceptions are logged twice. Thanks @​selwin!
  • Don't delete job.worker_name after job is finished. Thanks @​eswolinsky3241!

v1.11.1

  • queue.enqueue_many() now supports on_success and on on_failure arguments. Thanks @​y4n9squared!
  • You can now pass enqueue_at_front to Dependency() objects to put dependent jobs at the front when they are enqueued. Thanks @​jtfidje!
  • Fixed a bug where workers may wrongly acquire scheduler locks. Thanks @​milesjwinter!
  • Jobs should not be enqueued if any one of it's dependencies is canceled. Thanks @​selwin!
  • Fixed a bug when handling jobs that have been stopped. Thanks @​ronlut!
  • Fixed a bug in handling Redis connections that don't allow SETNAME command. Thanks @​yilmaz-burak!

v1.11

v1.10.1

  • Failure callbacks are now properly called when job is run synchronously. Thanks @​ericman93!
  • Fixes a bug that could cause job keys to be left over when result_ttl=0. Thanks @​selwin!
  • Allow ssl_cert_reqs argument to be passed to Redis. Thanks @​mgcdanny!
  • Better compatibility with Python 3.10. Thanks @​rpkak!
  • job.cancel() should also remove itself from registries. Thanks @​joshcoden!
  • Pubsub threads are now launched in daemon mode. Thanks @​mik3y!

v1.10.0

  • You can now enqueue jobs from CLI. Docs here. Thanks @​rpkak!
  • Added a new CanceledJobRegistry to keep track of canceled jobs. Thanks @​selwin!
  • Added custom serializer support to various places in RQ. Thanks @​joshcoden!
  • cancel_job(job_id, enqueue_dependents=True) allows you to cancel a job while enqueueing its dependents. Thanks @​joshcoden!
  • Added job.get_meta() to fetch fresh meta value directly from Redis. Thanks @​aparcar!
  • Fixes a race condition that could cause jobs to be incorrectly added to FailedJobRegistry. Thanks @​selwin!
  • Requeueing a job now clears job.exc_info. Thanks @​selwin!
  • Repo infrastructure improvements by @​rpkak.
  • Other minor fixes by @​cesarferradas and @​bbayles.

v1.9.0

  • Added success and failure callbacks. You can now do queue.enqueue(foo, on_success=do_this, on_failure=do_that). Thanks @​selwin!
  • Added queue.enqueue_many() to enqueue many jobs in one go. Thanks @​joshcoden!

... (truncated)

Changelog

Sourced from rq's changelog.

RQ 1.12.0 (2023-01-15)

  • RQ now stores multiple job execution results. This feature is only available on Redis >= 5.0 Redis Streams. Please refer to the docs for more info. Thanks @​selwin!
  • Improve performance when enqueueing many jobs at once. Thanks @​rggjan!
  • Redis server version is now cached in connection object. Thanks @​odarbelaeze!
  • Properly handle at_front argument when jobs are scheduled. Thanks @​gabriels1234!
  • Add type hints to RQ's code base. Thanks @​lowercase00!
  • Fixed a bug where exceptions are logged twice. Thanks @​selwin!
  • Don't delete job.worker_name after job is finished. Thanks @​eswolinsky3241!

RQ 1.11.1 (2022-09-25)

  • queue.enqueue_many() now supports on_success and on on_failure arguments. Thanks @​y4n9squared!
  • You can now pass enqueue_at_front to Dependency() objects to put dependent jobs at the front when they are enqueued. Thanks @​jtfidje!
  • Fixed a bug where workers may wrongly acquire scheduler locks. Thanks @​milesjwinter!
  • Jobs should not be enqueued if any one of it's dependencies is canceled. Thanks @​selwin!
  • Fixed a bug when handling jobs that have been stopped. Thanks @​ronlut!
  • Fixed a bug in handling Redis connections that don't allow SETNAME command. Thanks @​yilmaz-burak!

RQ 1.11 (2022-07-31)

RQ 1.10.1 (2021-12-07)

  • BACKWARDS INCOMPATIBLE: synchronous execution of jobs now correctly mimics async job execution. Exception is no longer raised when a job fails, job status will now be correctly set to FAILED and failure callbacks are now properly called when job is run synchronously. Thanks @​ericman93!
  • Fixes a bug that could cause job keys to be left over when result_ttl=0. Thanks @​selwin!
  • Allow ssl_cert_reqs argument to be passed to Redis. Thanks @​mgcdanny!
  • Better compatibility with Python 3.10. Thanks @​rpkak!
  • job.cancel() should also remove itself from registries. Thanks @​joshcoden!
  • Pubsub threads are now launched in daemon mode. Thanks @​mik3y!

RQ 1.10.0 (2021-09-09)

  • You can now enqueue jobs from CLI. Docs here. Thanks @​rpkak!
  • Added a new CanceledJobRegistry to keep track of canceled jobs. Thanks @​selwin!
  • Added custom serializer support to various places in RQ. Thanks @​joshcoden!
  • cancel_job(job_id, enqueue_dependents=True) allows you to cancel a job while enqueueing its dependents. Thanks @​joshcoden!
  • Added job.get_meta() to fetch fresh meta value directly from Redis. Thanks @​aparcar!
  • Fixes a race condition that could cause jobs to be incorrectly added to FailedJobRegistry. Thanks @​selwin!
  • Requeueing a job now clears job.exc_info. Thanks @​selwin!
  • Repo infrastructure improvements by @​rpkak.
  • Other minor fixes by @​cesarferradas and @​bbayles.

RQ 1.9.0 (2021-06-30)

  • Added success and failure callbacks. You can now do queue.enqueue(foo, on_success=do_this, on_failure=do_that). Thanks @​selwin!
  • Added queue.enqueue_many() to enqueue many jobs in one go. Thanks @​joshcoden!

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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 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)

Bumps [rq](https://github.com/nvie/rq) from 1.7.0 to 1.12.0.
- [Release notes](https://github.com/nvie/rq/releases)
- [Changelog](https://github.com/rq/rq/blob/v1.12.0/CHANGES.md)
- [Commits](rq/rq@v1.7.0...v1.12.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jan 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
0 participants