2.1.0
[2.1.0] - 27.02.2026
Warning
Please note that this release involves structural dependency changes.
To avoid any service disruptions, it is essential to read the update manual prior to performing the upgrade.
Update Instructions
After isntalling this version, you need to modify INSTALLED_APPS in your local.py
INSTALLED_APPS = [
# other apps
"eve_sde", # only if it not already existing
"ledger",
# other apps?
]
# This line is right below the `INSTALLED_APPS` list, if not already exist!
INSTALLED_APPS = ["modeltranslation"] + INSTALLED_APPSAdd the following new task to ensure the SDE data is kept up to date.
if "eve_sde" in INSTALLED_APPS:
# Run at 12:00 UTC each day
CELERYBEAT_SCHEDULE["EVE SDE :: Check for SDE Updates"] = {
"task": "eve_sde.tasks.check_for_sde_updates",
"schedule": crontab(minute="0", hour="12"),
}AA Ledger uses EVE SDE data to map IDs to names for EveTypes. You will need to preload some data from SDE once.
python manage.py migrate eve_sde
python manage.py esde_load_sde
Migrate the app and collect static.
python manage.py migrate ledger
python manage.py collectstatic --noinputRestart your Auth via supervisor after running these commands
Added
django-eveonline-sdeas new static data providerEveMarketPriceModel for pricing
Fixed
- Add Char, Corp, Ally redirect issue
Removed
django-eveuniversedependency