14
0

Accepting request 680280 from home:stroeder:branches:devel:languages:python

update to 2.6.1

OBS-URL: https://build.opensuse.org/request/show/680280
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cryptography?expand=0&rev=112
This commit is contained in:
Tomáš Chvátal
2019-03-01 08:03:10 +00:00
committed by Git OBS Bridge
parent c661858933
commit 8f97047f3b
8 changed files with 39 additions and 18 deletions

View File

@@ -1,3 +1,24 @@
-------------------------------------------------------------------
Thu Feb 28 19:50:33 UTC 2019 - Michael Ströder <michael@stroeder.com>
- update to 2.6.1:
* BACKWARDS INCOMPATIBLE:
Removedcryptography.hazmat.primitives.asymmetric.utils.encode_rfc6979_signature
andcryptography.hazmat.primitives.asymmetric.utils.decode_rfc6979_signature,
which had been deprecated for nearly 4 years. Use encode_dss_signature()
and decode_dss_signature()instead.
* BACKWARDS INCOMPATIBLE: Removed cryptography.x509.Certificate.serial, which
had been deprecated for nearly 3 years. Use serial_number instead.
* Updated Windows, macOS, and manylinux1 wheels to be compiled with
OpenSSL 1.1.1b.
* Added support for Ed448 signing when using OpenSSL 1.1.1b or newer.
* Added support for Ed25519 signing when using OpenSSL 1.1.1b or newer.
* load_ssh_public_key() can now load ed25519 public keys.
* Add support for easily mapping an object identifier to its elliptic curve
class viaget_curve_for_oid().
* Add support for OpenSSL when compiled with the no-engine
(OPENSSL_NO_ENGINE) flag.
-------------------------------------------------------------------
Fri Jan 25 08:25:35 UTC 2019 - Michael Ströder <michael@stroeder.com>