Skip to content

2.1.0

Choose a tag to compare

@Geuthur Geuthur released this 27 Feb 21:04
· 77 commits to master since this release
af3cffd

[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_APPS

Add 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 --noinput

Restart your Auth via supervisor after running these commands

Added

  • django-eveonline-sde as new static data provider
  • EveMarketPrice Model for pricing

Fixed

  • Add Char, Corp, Ally redirect issue

Removed

  • django-eveuniverse dependency