diff --git a/CHANGES.md b/CHANGES.md index 20f8c1cf..8980e7aa 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,11 @@ +### 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) * This will be the last RQ version that supports Python 3.5. * Allow jobs to be enqueued even when their dependencies fail via `Dependency(allow_failure=True)`. Thanks @mattchan-tencent, @caffeinatedMike and @selwin! diff --git a/rq/version.py b/rq/version.py index c1e4aa04..f53f4a1e 100644 --- a/rq/version.py +++ b/rq/version.py @@ -1 +1 @@ -VERSION = '1.11.0' +VERSION = '1.11.1'