Tradedangerous

Latest version: v11.5.3

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

Scan your dependencies

Page 17 of 41

10.4.1

Fix

* fix: error when trying to insert rare items that already exist in table

In this case, I don&39;t think &34;INSERT OR REPLACE&34; is a horrible idea. ([`20d64c6`](https://github.com/eyeonus/Trade-Dangerous/commit/20d64c6f999e0108f4f1e4e56f6ac92facc08a52))

Unknown

* 10.4.1

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

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

10.4.0

Feature

* feat: Allow rare items to be in the normal item table.

This change will enable rare items to be included in the market
listings. ([`6a8ddef`](https://github.com/eyeonus/Trade-Dangerous/commit/6a8ddefb6d68e219bd95f615a18e5f20a774b27c))

Fix

* fix: generate RareItem table after import

The RareItem table never got filled in, now it is. Oops. ([`6425188`](https://github.com/eyeonus/Trade-Dangerous/commit/6425188d46ab1b8f11e85f3d616b1b1540ee1e6a))

Refactor

* refactor: &39;option == x or option == y ...&39; => &39;option in (x,y,z)&39; ([`601355d`](https://github.com/eyeonus/Trade-Dangerous/commit/601355d0eae03617e39edfd7e747b9198537f3d7))

* refactor: update journal plugin wrt station types

Correctly identify CraterPort and CraterOutpost station types as
planetary.

Future planetary station types can be included by simply adding them to
planetTypeList. ([`070fb84`](https://github.com/eyeonus/Trade-Dangerous/commit/070fb843d948c1c8175c23c6329185432e656346))

* refactor: correct Fdev warning in edcd plugin ([`e80a3ad`](https://github.com/eyeonus/Trade-Dangerous/commit/e80a3adbd1e855d4032a81b93f3409438b20f85b))

Style

* style: whitespace normalizing ([`32c75d2`](https://github.com/eyeonus/Trade-Dangerous/commit/32c75d28317b5ea7f63f1956d1915901a478f96b))

* style: Apply preferred indenting to all files.

Blank lines should be indented to the same level as the line immediately
after.

Ex:

........return
....
....def newFunc()


Performed automatically on all files using the following Linux bash
command:

find * -type f -name &34;*.py&34; -print0 | xargs -0 sed -i -e &39;/^ *$/{N;s/^
*\n\( *\)\(.*\)/\1\n\1\2/}&39;
([`14c84c6`](https://github.com/eyeonus/Trade-Dangerous/commit/14c84c66554167ba8edf8109f81b76027ea0af79))

Unknown

* 10.4.0

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

10.3.1

Fix

* fix: skip stations that are not in the DB when importing listings

Thanks go to Bernd for the code work.

Fixes 56 ([`34220dc`](https://github.com/eyeonus/Trade-Dangerous/commit/34220dc3b201c4471f117a091944c0884f670c22))

Unknown

* 10.3.1

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

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

10.3.0

Feature

* feat: add &39;TD_SERVER&39;, &39;TD_FALLBACK&39;, and &39;TD_SHIPS&39; env_vars

TD_SERVER = Location of the TD server.
(Currently &39;http://elite.tromador.com/files/'.)

TD_FALLBACK = Location of the EDDB.io server.
(Currently &39;https://eddb.io/archive/v6/'.)

TD_SHIPS = Location of EDCD ship info file.
(Currently &39;https://raw.githubusercontent.com/EDCD/
coriolis-data/master/dist/index.json &39;.)

Setting the environment variable allows updating these web addresses by
the user without needing to wait for TD to update.


refactor: set BASE_URL default to &39;http://elite.tromador.com/files/'
fixes 55


revert: 1c4d186
Apparently caused by developer error and wasn&39;t a necessary change. ([`5e92257`](https://github.com/eyeonus/Trade-Dangerous/commit/5e92257dd6f45bb653bfb128572f78b838c5241d))

Unknown

* 10.3.0

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

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))

Page 17 of 41

Links

Releases

Has known vulnerabilities

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.