Skip to content

Releases: django-commons/django-tasks-scheduler

v2.1.1 🌈

22 Dec 15:43
0e63c62
Compare
Choose a tag to compare

🐛 Bug Fixes

  • Fix issue with task being scheduled despite being already scheduled #202

v3.0.0b2

02 Dec 20:11
2820b8a
Compare
Choose a tag to compare
v3.0.0b2 Pre-release
Pre-release

Fixed issue with success_callback

v3.0.0b1

30 Nov 15:05
8b067fc
Compare
Choose a tag to compare
v3.0.0b1 Pre-release
Pre-release

Breaking Changes

  • Renamed REDIS_CLIENT_KWARGS configuration to CLIENT_KWARGS.

🚀 Features

  • Created a new Task model representing all kind of scheduled tasks.
    • In future versions, CronTask, ScheduledTask and RepeatableTask will be removed.
    • Task model has a task_type field to differentiate between the types of tasks.
    • Old tasks in the database will be migrated to the new Task model automatically.

v2.1.0 🌈

14 Sep 23:29
7160ca5
Compare
Choose a tag to compare

Changes

🚀 Features

  • Support for custom job-class for every worker, using --job-class option in rqworker 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 🌈

29 Jun 14:33
c74601c
Compare
Choose a tag to compare

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 🌈

29 Jun 13:50
04199ed
Compare
Choose a tag to compare

🧰 Maintenance

  • Update dependencies to latest versions

v1.3.3 🌈

10 May 13:46
5feb06d
Compare
Choose a tag to compare

v1.3.3 🌈

🐛 Bug Fixes

  • Fix issue of django generating a new migration when settings.SCHEDULER_QUEUES is changed #119

v1.3.2 🌈

20 Mar 19:17
1de02a2
Compare
Choose a tag to compare

v1.3.2 🌈

  • Fix issue with job_details template on python3.12 @cyber237 #87

v1.3.1 🌈

01 Feb 22:41
824077a
Compare
Choose a tag to compare

v1.3.1 🌈

🐛 Bug Fixes

  • Fix workers' page when there are no queues #83

🧰 Maintenance

  • Removes psycopg2 dependency from pyproject.toml @mbi (#78)

v1.3.0 🌈

10 Jan 17:53
e58b042
Compare
Choose a tag to compare

🚀 Features

  • Add to CronTask and RepeatableTask counters for successful/failed runs.

🧰 Maintenance