From db445f96b26b9e01a2db88e4dc1e2fdcffa307f5 Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Sat, 11 Dec 2021 18:36:16 +0700 Subject: [PATCH] Update changelog to mention changes in sync job executions --- CHANGES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 4409b0f..6ed04e9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,5 @@ ### RQ 1.10.1 (2021-12-07) -* Failure callbacks are now properly called when job is run synchronously. Thanks @ericman93! +* **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!