summaryrefslogtreecommitdiff
path: root/CHANGES.md
diff options
context:
space:
mode:
authorSelwin Ong <selwin.ong@gmail.com>2023-01-15 18:21:40 +0700
committerSelwin Ong <selwin.ong@gmail.com>2023-01-15 18:21:40 +0700
commit8f4e51b7a47d3007eb0a4045b5087bdcfe2ffca9 (patch)
tree6e6cbb645e1cbb03e80dd1a9ba02847f33b4258d /CHANGES.md
parentfa7a635aa42b9626abf488d51863b2333d7837e5 (diff)
downloadrq-8f4e51b7a47d3007eb0a4045b5087bdcfe2ffca9.tar.gz
Bump version to 1.12.0v1.12.0
Diffstat (limited to 'CHANGES.md')
-rw-r--r--CHANGES.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 8980e7a..6b6f4d0 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,12 @@
+### 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](https://python-rq.org/docs/results/) 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!