Releases: ppfeufer/aa-intel-tool
Release list
4.1.1
[4.1.1] - 2026-07-06
Added
- Support for Python 3.14
Changed
- Translations updated
What's Changed
- [CHANGE] Update test matrix by @ppfeufer in #291
- [github-actions] Bump actions/checkout from 6 to 7 by @dependabot[bot] in #293
- [github-actions] Bump codecov/codecov-action from 6 to 7 by @dependabot[bot] in #292
- [npm] Bump the npm-dependencies group with 3 updates by @dependabot[bot] in #294
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #295
- [RELEASE] v4.1.1 by @ppfeufer in #296
- Translations update from Weblate (ppfeufer) by @ppfeufer in #290
Full Changelog: v4.1.0...v4.1.1
4.1.0
[4.1.0] - 2026-06-24
Fixed
- Unexpected argument
corp_id alliance_namecannot be NULL
What's Changed
- [FIX]
alliance_namecannot be NULL by @ppfeufer in #286 - [FIX] Unexpected argument
corp_idby @ppfeufer in #287 - Bump js-yaml from 4.1.1 to 4.2.0 by @dependabot[bot] in #288
- [RELEASE] v4.1.0 by @ppfeufer in #289
Full Changelog: v4.0.0...v4.1.0
4.0.0
[4.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.
Changed
- Some minor responsiveness improvements to the result tables
Removed
- Support for Alliance Auth v4
What's Changed
Full Changelog: v3.1.0...v4.0.0
3.1.0
[3.1.0] - 2026-06-02
Fixed
- Grammar - No space before ellipsis
Changed
- Modular providers
- Translations updated
What's Changed
- Bump fast-uri from 3.0.3 to 3.1.2 by @dependabot[bot] in #276
- [CHANGE] Modular providers by @ppfeufer in #277
- [CHANGE] Improve test suite for local coverage tests by @ppfeufer in #279
- [npm] Bump the npm-dependencies group with 3 updates by @dependabot[bot] in #280
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #281
- [FIX] Grammar - No space before ellipsis by @ppfeufer in #282
- [RELEASE] v3.1.0 by @ppfeufer in #283
- Translations update from Weblate (ppfeufer) by @ppfeufer in #278
Full Changelog: v3.0.2...v3.1.0
3.0.2
[3.0.2] - 2026-05-05
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 #273
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #274
- [Release] v3.0.2 by @ppfeufer in #275
- Translations update from Weblate (ppfeufer) by @ppfeufer in #272
Full Changelog: v3.0.1...v3.0.2
3.0.1
[3.0.1] - 2026-04-07
Changed
- Translations updated
What's Changed
- Bump minimatch from 3.1.2 to 3.1.5 by @dependabot[bot] in #258
- [github-actions] Bump actions/upload-artifact from 6 to 7 by @dependabot[bot] in #259
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #262
- [npm] Bump the npm-dependencies group with 2 updates by @dependabot[bot] in #261
- Bump flatted from 3.3.3 to 3.4.2 by @dependabot[bot] in #264
- Bump picomatch from 2.3.1 to 2.3.2 by @dependabot[bot] in #265
- [MISC] Update classifiers by @ppfeufer in #266
- [MISC] Update tox config by @ppfeufer in #267
- [github-actions] Bump codecov/codecov-action from 5 to 6 by @dependabot[bot] in #268
- [npm] Bump the npm-dependencies group with 3 updates by @dependabot[bot] in #269
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #270
- [RELEASE] v3.0.1 by @ppfeufer in #271
- Translations update from Weblate (ppfeufer) by @ppfeufer in #263
Full Changelog: v3.0.0...v3.0.1
3.0.0
[3.0.0] - 2026-02-26
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.
Fixed
context["parser_title"]being set at the wrong time
Changed
- Replace
eveuniversewith either SDE or ESI calls
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
"aa_intel_tool", # 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 you haven't already added it for another app:
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 aa_intel_tool
python manage.py collectstatic --noinputWhat's Changed
- [CHANGE] Replace eveuniverse with esi in chatscan by @ppfeufer in #255
- [CHANGE] Replace
eveuniversewith SDE by @ppfeufer in #256 - [RELEASE] v3.0.0 by @ppfeufer in #257
- Translations update from Weblate (ppfeufer) by @ppfeufer in #254
Full Changelog: v2.13.1...v3.0.0
2.13.1
[2.13.1] - 2026-02-03
Changed
- Dicts to Enum where applicable
- Translations updated
What's Changed
- [npm] Bump the npm-dependencies group with 4 updates by @dependabot[bot] in #250
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #251
- [CHANGE] Dicts to Enum where applicable by @ppfeufer in #252
- [RELEASE] v2.13.1 by @ppfeufer in #253
- Translations update from Weblate (ppfeufer) by @ppfeufer in #249
Full Changelog: v2.13.0...v2.13.1
2.13.0
[2.13.0] - 2026-01-22
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 #247
- [RELEASE] v2.13.0 by @ppfeufer in #248
- Translations update from Weblate (ppfeufer) by @ppfeufer in #246
Full Changelog: v2.12.1...v2.13.0
2.12.1
[2.12.1] - 2026-01-05
Changed
- Translations updated
What's Changed
- [github-actions] Bump actions/upload-artifact from 5 to 6 by @dependabot[bot] in #241
- [npm] Bump the npm-dependencies group across 1 directory with 2 updates by @dependabot[bot] in #244
- [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #243
- [RELEASE] v2.12.1 by @ppfeufer in #245
- Translations update from Weblate (ppfeufer) by @ppfeufer in #240
Full Changelog: v2.12.0...v2.12.1