Skip to content

Releases: rq/django-rq

v2.5.0

17 Nov 01:20
Compare
Choose a tag to compare
  • 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!

v2.4.0

08 Nov 03:40
Compare
Choose a tag to compare

v2.3.2

14 May 14:22
Compare
Choose a tag to compare

Support for RQ >= 1.4.0

v2.3.1

10 Apr 00:48
Compare
Choose a tag to compare
  • Added --with-scheduler argument to rqworker management command. Thanks @stlk!
  • Fixed a bug where opening job detail would crash if job.dependency no longer exists. Thanks @selwin!

v2.3.0

09 Feb 13:22
Compare
Choose a tag to compare
  • Support for RQ's new ScheduledJobRegistry. Thanks @Yolley!
  • Improve performance when displaying pages showing a large number of jobs by using Job.fetch_many(). Thanks @selwin!
  • django-rq will now automatically cleanup orphaned worker keys in job registries. Thanks @selwin!
  • Site name now properly displayed in Django-RQ admin pages. Thanks @tom-price!
  • NoSuchJobErrors are now handled properly when requeuing all jobs. Thanks @thomasmatecki!
  • Support for displaying jobs with names containing $. Thanks @gowthamk63!