* Set `CELERY_WORKER_CANCEL_LONG_RUNNING_TASKS_ON_CONNECTION_LOSS`
* This is sensible behavior with `TASKS_ACKS_LATE`, this must be enabled to prevent warnings, and this will be Celery's default in 6.0.
* Explicitly set `CELERY_TASK_REJECT_ON_WORKER_LOST` and `CELERY_TASK_ACKS_ON_FAILURE_OR_TIMEOUT` to the default values from Celery
* These are important for task reliability. See inline comments for a full rationale.
* **Breaking change:** Remove the `composed_config.authentication` module
* Technically, this is renamed to `composed_config._allauth_support`, but the new module is private and should not be considered stable.
* Add `girder_utils` to `INSTALLED_APPS`, to provide template tags
* Make the `createsuperuser` command only prompt for an email address, not a username
* Automatically verify email addresses of new users, when using the `createsuperuser` command
* Rename `ConfigMixin.before_binding` to `mutate_configuration`
* The old name is deprecated, but will continue to work.