Releases: django-commons/django-tasks-scheduler
Releases · django-commons/django-tasks-scheduler
v2.1.1 🌈
v3.0.0b2
Fixed issue with success_callback
v3.0.0b1
Breaking Changes
- Renamed
REDIS_CLIENT_KWARGS
configuration toCLIENT_KWARGS
.
🚀 Features
- Created a new
Task
model representing all kind of scheduled tasks.- In future versions,
CronTask
,ScheduledTask
andRepeatableTask
will be removed. Task
model has atask_type
field to differentiate between the types of tasks.- Old tasks in the database will be migrated to the new
Task
model automatically.
- In future versions,
v2.1.0 🌈
Changes
🚀 Features
- Support for custom job-class for every worker, using
--job-class
option inrqworker
command. @gabriels1234 (#160) - Support for integrating with sentry, using
--sentry-dsn
,--sentry-debug
, and--sentry-ca-certs
options in
rqworker
command. - Support for using ValKey as broker instead of redis.
🧰 Maintenance
- Refactor settings module.
v2.0.0 🌈
Breaking Changes
- Remove support for django 3.* and 4.*. Only support django 5.0 and above.
- queue choice field is now callable.
v1.3.4 🌈
🧰 Maintenance
- Update dependencies to latest versions
v1.3.3 🌈
v1.3.2 🌈
v1.3.1 🌈
v1.3.0 🌈
🚀 Features
- Add to CronTask and RepeatableTask counters for successful/failed runs.
🧰 Maintenance
- Support for django 5.0
- Update homepage url @dirkmueller (#65)