Releases: rq/django-rq
Releases · rq/django-rq
v2.10.3
v3.0
- Added support for RQ 2.0. Thanks @selwin!
- Many typing improvements. Thanks @SpecLad and @terencehonles!
- Added management command to suspend and resume workers. Thanks @jackkinsella!
- Better support for Redis Sentinel. Thanks @alaouimehdi1995!
v2.10.1
- Added
rqworker-pool
management command. Thanks @chromium7! - Compatibility with Django 5.0. Thanks @perry!
- The scheduler now defaults to db 0. Thanks @bennylope!
v2.9.0
- Added an option to delete all failed jobs. Thanks @chromium7!
- You can now specify
SERIALIZER
option while declaring queues insettings.py
Thanks @sophcass! - Updated templates to match newer versions of Django admin's styling. Thanks @nikhilweee!
- Don't show
Empty Queue
button on registry pages. Thanks @selwin!
v2.8.1
- Added a button to stop currently running jobs. Thanks @gabriels1234!
- Added a failed jobs column to rqstats command. Thanks @dangquangdon!
- Explicitly requires RQ >= 1.14 in
setup.py
. Thanks @selwin!
v2.8.0
- Support for RQ 1.14. Thanks @Cerebro92 and @selwin!
- Show scheduler PID information in admin interface. Thanks @gabriels1234!
- Added
serializer
argument torqworker
command. Thanks @gabriels1234! - Added
USERNAME
andSENTINEL_KWARGS
support. Thanks @joachimBurket!
v2.7.0
v2.6.0
- Added
--max-jobs
argument torqworker
management command. Thanks @arpit-goel! - Remove job from
ScheduledJobRegistry
if a scheduled job is enqueued from admin. Thanks @robertaistleitner! - Minor code cleanup. Thanks @reybog90!
v2.5.1
Redis.from_url
does not acceptssl_cert_reqs
argument for non SSL Redis URL. Thanks @barash-asenov!
v2.5.0
- Better integration with Django admin, along with a new
Access admin page
permission that you can selectively grant to users. Thanks @haakenlid! - Worker count is now updated everytime you view workers for that specific queue. Thanks @cgl!
- Add the capability to pass arbitrary Redis client kwargs. Thanks @juanjgarcia!
- Always escape text when rendering job arguments. Thanks @rhenanbartels!
- Add
@never_cache
decorator to all Django-RQ views. Thanks @Cybernisk! SSL_CERT_REQS
argument should also be passed to Redis client even when Redis URL is used. Thanks @paltman!