From ba276c274eab8f2d8c36b2e694e94bd2b75ac996 Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Mon, 17 May 2021 13:58:08 +0700 Subject: [PATCH] Updated changelog --- CHANGES.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index cfbb280..4ff3709 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,10 @@ +### RQ 1.8.1 (2021-05-17) +* Jobs that fail due to hard shutdowns are now retried. Thanks @selwin! +* `Scheduler` now works with custom serializers. Thanks @alella! +* Added support for click 8.0. Thanks @rpkak! +* Enqueueing static methods are now supported. Thanks @pwws! +* Job exceptions no longer get printed twice. Thanks @petrem! + ### RQ 1.8.0 (2021-03-31) * You can now declare multiple job dependencies. Thanks @skieffer and @thomasmatecki for laying the groundwork for multi dependency support in RQ. * Added `RoundRobinWorker` and `RandomWorker` classes to control how jobs are dequeued from multiple queues. Thanks @bielcardona!