Releases: django-commons/django-tasks-scheduler
Releases · django-commons/django-tasks-scheduler
v3.0.1 🌈
🐛 Bug Fixes
- Lookup error issue #228.
🧰 Maintenance
- Migrated to use ruff instead of flake8/black
- chore(deps): bump mkdocs-material from 9.6.7 to 9.6.8 @dependabot[bot] (#225)
- docs: Added route for contributing on readme, and fixed a graphical bug on the badges at the top of the documentation @TimothyMalahy (#208)
v3.0.0 🌈
Breaking Changes
- Renamed
REDIS_CLIENT_KWARGSconfiguration toCLIENT_KWARGS.
🚀 Features
- Created a new
Taskmodel representing all kind of scheduled tasks.- In future versions,
CronTask,ScheduledTaskandRepeatableTaskwill be removed. Taskmodel has atask_typefield to differentiate between the types of tasks.- Old tasks in the database will be migrated to the new
Taskmodel automatically.
- In future versions,
🧰 Maintenance
- Update dependencies to the latest versions.
v2.1.1 🌈
v3.0.0b2
Fixed issue with success_callback
v3.0.0b1
Breaking Changes
- Renamed
REDIS_CLIENT_KWARGSconfiguration toCLIENT_KWARGS.
🚀 Features
- Created a new
Taskmodel representing all kind of scheduled tasks.- In future versions,
CronTask,ScheduledTaskandRepeatableTaskwill be removed. Taskmodel has atask_typefield to differentiate between the types of tasks.- Old tasks in the database will be migrated to the new
Taskmodel automatically.
- In future versions,
v2.1.0 🌈
Changes
🚀 Features
- Support for custom job-class for every worker, using
--job-classoption inrqworkercommand. @gabriels1234 (#160) - Support for integrating with sentry, using
--sentry-dsn,--sentry-debug, and--sentry-ca-certsoptions in
rqworkercommand. - 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