Skip to content

Release v0.6.0

Compare
Choose a tag to compare
@jcass77 jcass77 released this 17 Jun 03:05
· 29 commits to develop since this release

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
    before settings.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
    a django.db.OperationalError is encountered (Partial resolution
    of #145).
  • Introduce a close_old_connections utility decorator to enforce Django's CONN_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.