summaryrefslogtreecommitdiff
path: root/CHANGES.md
diff options
context:
space:
mode:
authorSelwin Ong <selwin.ong@gmail.com>2022-07-31 15:56:59 +0700
committerSelwin Ong <selwin.ong@gmail.com>2022-07-31 15:56:59 +0700
commit08377698abc5cef8c2e3b06bc115890a0f34a673 (patch)
treec86c96a71befe8dbd969fc82385d342a3921b9a4 /CHANGES.md
parentbc5bb1fba2988ed017b6c0cfd563f94bdcb4d451 (diff)
downloadrq-08377698abc5cef8c2e3b06bc115890a0f34a673.tar.gz
Updated changelog.
Diffstat (limited to 'CHANGES.md')
-rw-r--r--CHANGES.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 6ed04e9..0058d8c 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,13 @@
+### RQ 1.11 (2022-07-31)
+* Allow jobs to be enqueued even when their dependencies fail via `Dependency(allow_failure=True)`. Thanks @mattchan-tencent, @caffeinatedMike and @selwin!
+* When stopped jobs are deleted, they should also be removed from FailedJobRegistry. Thanks @selwin!
+* `job.requeue()` now supports `at_front()` argument. Thanks @buroa!
+* Added ssl support for sentinel connections. Thanks @nevious!
+* `SimpleWorker` now works better on Windows. Thanks @caffeinatedMike!
+* Added `on_failure` and `on_success` arguments to @job decorator. Thanks @nepta1998!
+* Fixed a bug in dependency handling. Thanks @th3hamm0r!
+* Minor fixes and optimizations by @xavfernandez, @olaure, @kusaku.
+
### 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!