Switch crypto library `pycrypto` to `pycryptodome`

This is a more up to date fork of the former. This fixes CVE-2018-6594 found in the former.

**Deployment note.** When updating an application, you *must* uninstall `pycrypto` first, otherwise there will be a conflict if both the versions are installed at the same time. To uninstall, do `pip uninstall pycrypto`.

Release 0.17.0
merge-requests/130/head v0.17.0
Jason Robinson 2018-08-11 21:47:16 +03:00
rodzic afee56cac6
commit bc38ac990b
3 zmienionych plików z 10 dodań i 2 usunięć

Wyświetl plik

@ -1,5 +1,13 @@
# Changelog
## [0.17.0] - 2018-08-11
### Fixed
* Switch crypto library `pycrypto` to `pycryptodome`, which is a more up to date fork of the former. This fixes CVE-2018-6594 found in the former.
**Deployment note.** When updating an application, you *must* uninstall `pycrypto` first, otherwise there will be a conflict if both the versions are installed at the same time. To uninstall, do `pip uninstall pycrypto`.
## [0.16.0] - 2018-07-23
### Added

Wyświetl plik

@ -1 +1 @@
__version__ = "0.16.0"
__version__ = "0.17.0"

Wyświetl plik

@ -32,7 +32,7 @@ setup(
"lxml>=3.4.0",
"ipdata>=2.6",
"jsonschema>=2.0.0",
"pycrypto>=2.6.0",
"pycryptodome>=3.4.10",
"python-dateutil>=2.4.0",
"python-xrd>=0.1",
"requests>=2.8.0",