Allianceauth-afat

Latest version: v3.7.0

Safety actively analyzes 724020 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 14 of 18

2.0.0

______________________________________________________________________

If you are updating from one of the 2.0.0-alpha versions

If you installed one of the alpha versions, make sure to reset your migrations first!
Migrations have been reset during the alpha versions a couple of times.

To do so, run:

shell
python manage.py migrate afat 0017


Once done, proceed with the update as lined out below.

______________________________________________________________________

This release introduces a new periodic task, make sure to add it to your `local.py`,
besides that, it is the usual steps to update ...

Download and install the new version

shell
pip install -U allianceauth-afat


Add the new task to your `local.py`

python
CELERYBEAT_SCHEDULE["afat_logrotate"] = {
"task": "afat.tasks.logrotate",
"schedule": crontab(minute="0", hour="1"),
}


Run static collection and migrations

shell
python manage.py collectstatic
python manage.py migrate


Restart your supervisor.

Finally migrate the Manual FAT log to the new logging table

shell
python manage.py afat_migrate_manual_fat_log

1.10.0

⚠️ IMPORTANT ⚠️

Before you update to this version, make sure you remove all "deleted" data from
your tables. To do so, log in to your mysql console and run the following commands:

mysql
de-activate foreign key checks
SET FOREIGN_KEY_CHECKS=0;

remove all "deleted" FATs
delete from afat_afat where deleted_at is not null;

remove all "deleted" fat link types
delete from afat_afatlinktype where deleted_at is not null;

get all fatlink IDs of "deleted" fatlinks as comma separated list and make sure
to have that in your notepad saved, you need this list for the next comamnds
select group_concat(id) from afat_afatlink where deleted_at is not null;

now remove everything that is related to those IDs
make sure to replace "id_list" with the comma separated
list of IDs from the earlier command
delete from afat_clickafatduration where fleet_id in (id_list);
delete from afat_afat where afatlink_id in (id_list);
delete from afat_afatlink where id in(id_list);

re-activate foreign key checks
SET FOREIGN_KEY_CHECKS=1;


This step is important before updating, because the "deleted" marker will be lost
during migration! If you don't run this step, you'll have all your FATlinks and FATs
that were previously "deleted" as active again.

Removed

- Soft deletion mechanism we inherited from ImicusFAT. It's more trouble than it's worth
and it's not used anyways. So we stick to "delete data when it should be deleted",
and not just mark it as deleted and keep it as stale data in the table.

Updated

- Migration information for migration from ImicusFAT in README.md file

1.9.0

Added

- Ship type overview to FAT link detail page (72)

![Ship Type Overview](docs/images/changelog/1.9.0/ship-type-overview.png "Ship Type Overview")

1.8.0

Added

- Ability to "close" ESI fat links manually. (Only the FC creating the link has this
ability when creating new ESI fat links when he still has registered fleets.)

![Manually close ESI links](docs/images/changelog/1.8.0/manually-close-esi-links.png "Manually close ESI links")

1.7.0

Added

- Setting to change the application name, in case you want it named something specific

1.6.0

Added

- Info when there are already registered ESI links for the FC and with which characters
- A check for already registered fleets on ESI link creation. If the character
already has a fleet registered, and it is hte same fleet, he gets a message. If it
is a new fleet, the old fleet will be closed, and the new fleet will be registered.

Page 14 of 18

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.