Aa-intel-tool

Latest version: v2.1.1

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

Scan your dependencies

Page 2 of 5

1.1.2

Fixed

- Wrongfully triggered sticky highlight when clicking on a link in a result table row

Change

- Use `bulk_create` on save action to create the scan data sections instead of saving
each section individually
- JS compressed

1.1.1

Changed

- Korean translation improved

1.1.0

Added

- Korean translation

1.0.1

This version is purely to push changes in the README to Pypi.

Fixed

- Some little whoopsies in README

1.0.0

**First Public Release**

Added

- MySQL script to drop the DB tables

Fixed

- Pilots in fleet count on fleet composition result page
- Missing semicolons in JavaScripts
- JS function attribute name
- Translations cleaned up

Changed

- Migrations from Alpha-versions reset

Update Instructions for Updating From an Alpha-Version

> **Note**
>
> If you have installed one of the Alpa-Versions before, make sure to follow these
> instructions **before** you update to this version. If you install this app for the
> very first time, feel free to happily ignore this section.

Remove the Migrations and DB Tables

During the alpha phase a number of DB migrations accumulated, which is, for obvious
reasons, not ideal for the first public version to have. So, they need to be reset.
This will happen in 2 steps.

From Django

Run the following command in your virtual environment:

shell
python manage.py migrate aa_intel_tool zero --fake


This will remove the migration information from Django.

From Your MySQL Database

Now you need to remove the DB tables. This needs to be done to make sure the new
migration runs without issues. Don't worry, this is not hard at all, I've prepared a
little something for you.

All you need to do is, log in to your MySQL server from your console. and select the
Alliance Auth DB.

Log in:

shell
mysql -h localhost -u allianceserver -p


Switch to the `alliance_auth` DB:

mysql
USE alliance_auth;


Now copy/paste the following:

mysql
SET FOREIGN_KEY_CHECKS=0;
DROP TABLE IF EXISTS aa_intel_tool_scandata;
DROP TABLE IF EXISTS aa_intel_tool_scan;
SET FOREIGN_KEY_CHECKS=1;


Once done, exit out of your MySQL server and run the update as usual.

0.0.1alpha.14

Hopefully the last one before official release …

Added

- Fleet composition scan as intel type

Changed

- Moved template designation to `SUPPORTED_INTEL_TYPES` constant
- Translation files updated

Page 2 of 5

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.