Skip to content

2.1.1

Choose a tag to compare

@Geuthur Geuthur released this 02 Mar 12:29
· 71 commits to master since this release
88f7ba4

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 installing 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

[2.1.1] - 02.03.2026

Fixed

  • Bulk_Update Error, Optimize market price updates by reusing existing objects and reducing timezone calls

What's Changed

  • [github-actions] Bump actions/upload-artifact from 6 to 7 by @dependabot[bot] in #264
  • [FIX] Optimize market price updates by reusing existing objects and reducing timezone calls by @Geuthur in #266
  • [RELEASE] v2.1.1 by @Geuthur in #267

Full Changelog: v2.1.0...v2.1.1