Tradedangerous

Latest version: v11.4.0

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

Scan your dependencies

Page 17 of 40

10.2.2

Fix

* fix: Correctly check for $TD_EDDB

In python&39;s &39;x if true else y&39;, x is evaluated first, then the if
statement is evaluated, and only when the if statement is false does y
get evaluated.

Path(os.environ.get(&39;TD_EDDB&39;) = NoneType) will cause the program to
error before even getting to the if statement. ([`1c4d186`](https://github.com/eyeonus/Trade-Dangerous/commit/1c4d186be29379217eab1d27cf72915c5c74e5c0))

Unknown

* 10.2.2

python-semantic-release automatic version update. ([`921b0bc`](https://github.com/eyeonus/Trade-Dangerous/commit/921b0bcbe32f2668520dffca8c3094b27e3b8264))

10.2.1

Fix

* fix: avoid TypeError if TD_EDDB is not set

Path(None) raises a TypeError.
Test for missing TD_EDDB as well as set.

fixes 51 ([`cd41144`](https://github.com/eyeonus/Trade-Dangerous/commit/cd41144a1f875dda2fea189dc97831c5edd762ad))

Style

* style: Restore whitespace to eddblink_plug.py ([`6d0de5f`](https://github.com/eyeonus/Trade-Dangerous/commit/6d0de5faba85dbe51f47f8e888b16d2c39a844ac))

Unknown

* 10.2.1

python-semantic-release automatic version update. ([`c70880f`](https://github.com/eyeonus/Trade-Dangerous/commit/c70880f11b07de158870fd7c98dfa53db93f6adf))

10.2.0

Chore

* chore: stop trying to deploy pull-request


Trying to deploy a pull request will fail the job. ([`d7a4fb3`](https://github.com/eyeonus/Trade-Dangerous/commit/d7a4fb3dbd74ecbea4c04a79216796820d69b966))

Feature

* feat: Add environment variable for setting location of &39;eddb&39; folder.

If set, the &34;dump files&34; will be stored to the path set by TD_EDDB. It
will not be in an &39;eddb&39; sub-folder, but the specific path set by the
environment variable.

(listings.csv => $TD_EDDB\listings.csv)

If not, the &34;dump files&34; will be stored in the &39;data&39; folder (which
itself may be set via TD_DATA) in an &39;eddb&39; sub-folder.

(listings.csv => $TD_DATA\eddb\listings.csv) ([`930e2e5`](https://github.com/eyeonus/Trade-Dangerous/commit/930e2e5ba3571ff477b234800cc8598c046bcc4f))

Fix

* fix: Make sure eddb path is path, not string, when set via env_var ([`6204486`](https://github.com/eyeonus/Trade-Dangerous/commit/620448696c88ee209768b696383d2811e9d62a0c))

* fix: revert d7a4fb3

TEST BEFORE YOU PUSH, PETER ([`2f553a8`](https://github.com/eyeonus/Trade-Dangerous/commit/2f553a81f08008145838facd941d31307d3c0659))

Refactor

* refactor: Remove maddavo.

It&39;s not used anymore. It doesn&39;t work with the site being inactive.

It is therefore useless and shall be deleted forthwith. ([`75d6f36`](https://github.com/eyeonus/Trade-Dangerous/commit/75d6f364bb09d3fc2f7cb6f4fe5b92683705dd0b))

Style

* style: restore whitespace on all top-level files

I&39;ll get to the rest eventually.

Blank lines should have whitespace to the same level as the line
immediately following:


if something:
This is the wrong amount of whitespace
stuff()
more_stuff()
This is the wrong amount of whitespace
while happening:



if something:
This is the correct amount of whitespace
stuff()
more_stuff()
This is the correct amount of whitespace
while happening:
([`d509fda`](https://github.com/eyeonus/Trade-Dangerous/commit/d509fda783970ee0754752a79369b4d36c346258))

Unknown

* 10.2.0

python-semantic-release automatic version update. ([`767521b`](https://github.com/eyeonus/Trade-Dangerous/commit/767521bac7d4b0f06f600944cb7bfd0fa3ba54b3))

* Merge branch &39;master&39; of https://github.com/eyeonus/Trade-Dangerous.git ([`6f778d9`](https://github.com/eyeonus/Trade-Dangerous/commit/6f778d910eecba5e625b5d2ca712e51170fc59f4))

10.1.2

Fix

* fix: Unable to save profile.<current_time>.json&34; ([`fca7f26`](https://github.com/eyeonus/Trade-Dangerous/commit/fca7f2698a5ac83dd4011c4dcd3379d9cbed0274))

Unknown

* 10.1.2

python-semantic-release automatic version update. ([`78329ee`](https://github.com/eyeonus/Trade-Dangerous/commit/78329eee0f76d6132e3f4571b957d76f92c513bc))

10.1.1

Fix

* fix: Unable to save tdh_profile.json ([`a2abe01`](https://github.com/eyeonus/Trade-Dangerous/commit/a2abe01ec25347191ac792f56ac966ff8533dfdc))

Unknown

* 10.1.1

python-semantic-release automatic version update. ([`6e9cf97`](https://github.com/eyeonus/Trade-Dangerous/commit/6e9cf9792668572dd686b8159436c6e064811995))

10.1.0

Feature

* feat: automatically update Added.csv, RareItem.csv, TradeDangerous.sql

refactor: restore whitespace to tradedb.py

The template files may need updating, and if that is the case, any TD
database will need their copy updated as well.

Since TD detects changes to the &39;cache&39;, any updates to these files will
be integrated into TD the next time it is run.

Changes to the SQL will likely require doing a &39;clean&39; run with the
eddblink plugin as they are often breaking changes. ([`fe82c3a`](https://github.com/eyeonus/Trade-Dangerous/commit/fe82c3a503679bc63fdc1a95fd06849c377b89f4))

Refactor

* refactor: remove template folder environment variable

The template folder contains the .sql file that is needed to build TD&39;s
database.

TD copies these files whenever it needs to create a new database.

It is vital that these files exist and be correctly pointed to in order
for TD to work.

It makes absolutely no sense to make it possible for the user to even
accidentally point TD at a non-existant path or even an existing one
that simply doesn&39;t have those files, and there is no need to have these
template files for any purpose other than that of TD using them to
create a new database.

In summary:
having this environment variable:
usefulness: <=0
potential harm: >0 ([`b388f60`](https://github.com/eyeonus/Trade-Dangerous/commit/b388f606cd8b4ce8d765034ff661e27e1cb1ee68))

Unknown

* 10.1.0

python-semantic-release automatic version update. ([`18cf0ea`](https://github.com/eyeonus/Trade-Dangerous/commit/18cf0eaef4b0b6061df367ddc4d1c81c993d91ca))

Page 17 of 40

Links

Releases

Has known vulnerabilities

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.