v2.0b2
版本发布时间: 2018-01-09 10:39:09
allianceauth/allianceauth最新发布版本:v2.0.4(2018-05-29 05:15:16)
Changes
- Fix model property in migration.
- Fix signals registration for autogroups.
- Fix bug in autogroups that prevented users being added to groups.
- Fix bug that prevented service groups being updated.
- Fix celery broker URL setting.
- Fix dashboard hanging for superusers.
- Added
INSTALLED_APPS
setting to local settings template. - Typo fixes.
- Documentation fixes/updates.
- Other minor fixes.
Installing
To install v2 a slight modification to the docs is necessary. The auth package hasn't yet been published on pypi, so instead of pip install allianceauth
you'll need to pip install git+https://github.com/allianceauth/allianceauth@v2.0b2
Upgrading
If you're coming from v1.15, read the b1 release notes.
If you're coming from v2.0b1, run python manage.py migrate eve_autogroups zero
before upgrading. After upgrading run migrations again (python manage.py migrate
).
Change BROKER_URL
in settings/base.py
to CELERY_BROKER_URL
.
Add from .celery import app as celery_app
to your project_template/project_name/__init__.py
file (or reinitialise your project).
Restart your wsgi server and celery as usual.
Issues
The goal of the beta is to iron out any issues we've missed. Please reach out to us on gitter or open an issue here (being sure to mention it's regarding v2.0b2).
Thanks to everyone who reported issues during beta 1.