Release v0.6.0
v0.6.0 (2021-06-17)
Fixes
- Fix screenshot links in README to work on PyPI.
- Remove reference to deprecated
django.utils.translation.ugettext_lazy
.
Enhancements
- The Django admin page will now show a list of all the manually triggered jobs that could not be completed
beforesettings.APSCHEDULER_RUN_NOW_TIMEOUT
seconds elapsed. - Make more of the string output on the admin page Django-translatable.
- Introduce a
retry_on_db_operational_error
utility decorator for retrying database-related operations when
adjango.db.OperationalError
is encountered (Partial resolution
of #145). - Introduce a
close_old_connections
utility decorator to enforce Django'sCONN_MAX_AGE
setting. (Partial resolution
of #145 - thanks @bluetech). This decorator should be applied to all of your jobs that require access to the database.