From e80d4009ffc1d04d5a0bfa1a5d43d0f41d24dc9f Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Sun, 4 Aug 2024 19:51:45 +0700 Subject: [PATCH] Updated changelog. --- CHANGES.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 46d2fe29..fe4493bc 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -10,6 +10,14 @@ Breaking Changes: * `Job.exists()` requires `connection` argument to be passed in. * `Queue.all()` requires `connection` argument. * `@job` decorator now requires `connection` argument. +* Built in Sentry integration has been removed. To use Sentry with RQ, please refer to [Sentry's docs](https://docs.sentry.io/platforms/python/integrations/rq/). + +Bug Fixes: +* Fixed an issue where abandoned jobs are sometimes not enqueued. Thanks @Marishka17! +* Fixes an issue where Redis connection does not expose `name` attribute. Thanks @wckao! +* `job.get_status()` will now always return `JobStatus` enum. Thanks @indepndnt! +* Queue key should always be created even if jobs are deferred. Thanks @sim6! +* Minor fixes and improvements. Thanks @hongquan, @rbange, ### RQ 1.16.2 (2024-05-01) * Fixed a bug that may cause jobs from intermediate queue to be moved to FailedJobRegistry. Thanks @selwin!