Releases: ppfeufer/aa-sov-timer
5.0.0
[5.0.0] - 2026-06-07
Important
This version needs Alliance Auth v5!
Please make sure to update your Alliance Auth instance before you install this
version, otherwise an update to Alliance Auth will be pulled in unsupervised.
Warning
If you haven't updated to AA Sovereignty Timer v4 yet, please make sure to read the
update instructions and update to at least v4.0.0 before updating to this version,
otherwise, the app will not work properly.
Removed
- Support for Alliance Auth v4
- Deprecated migrations
What's Changed
- [REMOVE] Support for Alliance Auth v4 by @ppfeufer in #343
- [REMOVE] Deprecated migrations by @ppfeufer in #344
- [RELEASE] v5.0.0 by @ppfeufer in #345
Full Changelog: v4.2.0...v5.0.0
4.2.0
[4.2.0] - 2026-06-02
Fixed
- Grammar - No space before ellipsis
- Class
Iterabledoes not define__sub__, so the-operator cannot be used on
its instances
Changed
- Task
QueueOnceoptions - Modular providers
- Translations updated
What's Changed
- [npm] Bump the npm-dependencies group with 3 updates by @dependabot[bot] in #336
- [FIX] Class 'Iterable' does not define 'sub' by @ppfeufer in #337
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #335
- [CHANGE] Task
QueueOnceoptions by @ppfeufer in #339 - [CHANGE] Modular providers by @ppfeufer in #340
- [FIX] Grammar - No space before ellipsis by @ppfeufer in #341
- [RELEASE] v4.2.0 by @ppfeufer in #342
- Translations update from Weblate (ppfeufer) by @ppfeufer in #338
Full Changelog: v4.1.0...v4.2.0
4.1.0
[4.1.0] - 2026-05-19
Changed
- Switched to new ESI endpoint
sovereignty/systemsto get the sovereignty
information, which also includes the correct ADMs for each system. This also means
that sovereignty structures are now updated when changes are available, to ensure
the ADM information is up to date as well. - Set ESI compatibility date to
2026-05-19
What's Changed
- Bump fast-uri from 3.0.3 to 3.1.2 by @dependabot[bot] in #331
- Esi endpoint updates by @ppfeufer in #332
- [RELEASE] v4.1.0 by @ppfeufer in #334
- Translations update from Weblate (ppfeufer) by @ppfeufer in #333
Full Changelog: v4.0.3...v4.1.0
4.0.3
[4.0.3] - 2026-05-06
Changed
- Translations updated
Miscellaneous
- Ready for Alliance Auth v5
What's Changed
- [npm] Bump the npm-dependencies group across 1 directory with 4 updates by @dependabot[bot] in #328
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #329
- [RELEASE] v4.0.3 by @ppfeufer in #330
- Translations update from Weblate (ppfeufer) by @ppfeufer in #327
Full Changelog: v4.0.2...v4.0.3
4.0.2
[4.0.2] - 2026-04-07
Fixed
- Fail gracefully on
RequestError, which can be thrown bydjango-esiwhen ESI is
unavailable, instead of crashing the task (Downtime, Endpoint down, etc.)
Changed
- (Internal) Better type hinting
- Translations updated
What's Changed
- [github-actions] Bump actions/upload-artifact from 6 to 7 by @dependabot[bot] in #313
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #316
- [npm] Bump the npm-dependencies group with 3 updates by @dependabot[bot] in #315
- [CHANGE] (Internal) Better type hinting by @ppfeufer in #318
- Bump flatted from 3.3.3 to 3.4.2 by @dependabot[bot] in #319
- Bump picomatch from 2.3.1 to 2.3.2 by @dependabot[bot] in #320
- [MISC] Update classifiers by @ppfeufer in #321
- [FIX] Fail gracefully on
RequestErrorby @ppfeufer in #322 - [github-actions] Bump codecov/codecov-action from 5 to 6 by @dependabot[bot] in #323
- [npm] Bump the npm-dependencies group with 3 updates by @dependabot[bot] in #324
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #325
- [RELEASE] v4.0.2 by @ppfeufer in #326
- Translations update from Weblate (ppfeufer) by @ppfeufer in #317
Full Changelog: v4.0.1...v4.0.2
4.0.1
4.0.0
[4.0.0] - 2026-02-27
Warning
This version includes a dependency change, so please make sure to read the update
instructions carefully before updating to this version, otherwise, the app will
not work properly.
Changed
- Moved the operational code away from
eveuniverse, usingdjango-eveonline-sde
instead, for all static EVE data. This also means that the SDE needs to be imported
into the database now, which is done via a management command. Please make sure to
run this command after updating to this version; otherwise, the app will not work
properly.
Update Instructions
After installing this version, modify your INSTALLED_APPS in your local.py (or
conf/local.py for Docker installations):
INSTALLED_APPS += [
# ...
"eve_sde", # Only if not already added for another app
"sovtimer", # This one should already be in there
# ...
]
# This line is right below the `INSTALLED_APPS` list, and only if not already added for another app
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"),
}Migrate and populate SDE:
python manage.py migrate eve_sde
python manage.py esde_load_sdeMigare the app and run static collection:
python manage.py migrate sovtimer
python manage.py collectstatic --noinputWhat's Changed
- [MISC] Screenshots updated by @ppfeufer in #308
- [CHANGE] Replace
django-eveuniversewithdjango-eveonline-sdeby @ppfeufer in #309 - Bump minimatch from 3.1.2 to 3.1.5 by @dependabot[bot] in #310
- [RELEASE] v4.0.0 by @ppfeufer in #311
- Translations update from Weblate (ppfeufer) by @ppfeufer in #307
Full Changelog: v3.5.1...v4.0.0
3.5.1
[3.5.1] - 2026-02-03
Added
- Background to "Total Campaigns" filter above the campaign table to indicate
the current filter
Changed
- Translations updated
Removed
- Unexpected argument from task chain
What's Changed
- [REMOVE] Unexpected argument from task chain by @ppfeufer in #302
- [ADD] Background to "Total Campaigns" filter above the campaign table by @ppfeufer in #304
- [npm] Bump the npm-dependencies group with 4 updates by @dependabot[bot] in #303
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #305
- [RELEASE] v3.5.1 by @ppfeufer in #306
- Translations update from Weblate (ppfeufer) by @ppfeufer in #301
Full Changelog: v3.5.0...v3.5.1
3.5.0
[3.5.0] - 2026-01-23
Important
This version is utilising features that are only available in Alliance Auth >= 4.12.0.
Please make sure to update your Alliance Auth instance before installing this version,
otherwise, an update to Alliance Auth will be pulled in unsupervised.
Changed
- Switched to DataTables 2 provided by Alliance Auth, instead of bundling it ourselves
- Minimum requirements:
- Alliance Auth >= 4.12.0
What's Changed
- [CHANGE] Switched to DataTables 2 provided by Alliance Auth by @ppfeufer in #299
- [RELEASE] v3.5.0 by @ppfeufer in #300
Full Changelog: v3.4.0...v3.5.0
3.4.0
[3.4.0] - 2026-01-16
Fixed
- Ordering by start time in the campaign table
Changed
- DataTable processing refactored/improved
- Enabled global search in the campaign table
- Allow clicking on table headers to change the sorting order
What's Changed
- [CHANGE] Allow click on table headers to change the sorting order by @ppfeufer in #294
- [FIX] Ordering by start time in the campaign table by @ppfeufer in #295
- [CHANGE] Enabled global search in the campaign table by @ppfeufer in #296
- [CHANGE] DataTable processing refactored/improved by @ppfeufer in #297
- [RELEASE] v3.4.0 by @ppfeufer in #298
- Translations update from Weblate (ppfeufer) by @ppfeufer in #293
Full Changelog: v3.3.2...v3.4.0