* Dropped support for Django 1.6 and Django 1.7, the minimal Python version is
now Python 2.7. Django 1.10 is also supported.
* Listeners registration and post_delete signal are now happening in the app
config ready() method. This means that the process can be customized by
having custom AppConfig classes and referring to those classes in the
INSTALLED_APPS setting.
* A new DISABLE_LISTENERS setting has been added to ease deactivation of
listeners registration.
* A task queue is now used to process link checking, so as to prevent exhaustion
of available threads during massive updates.