From 6b9b120500e42abad9640f7494c6930ae49ed3aff62efae868a4c1b4c4c51982 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Fri, 18 Sep 2020 11:16:26 +0000 Subject: [PATCH] - update to 3.1: * **BACKWARDS INCOMPATIBLE:** Removed support for ``idna`` based :term:`U-label` parsing in various X.509 classes. This support was originally deprecated in version 2.1 and moved to an extra in 2.5. * Deprecated OpenSSL 1.0.2 support. OpenSSL 1.0.2 is no longer supported by the OpenSSL project. The next version of ``cryptography`` will drop support for it. * Deprecated support for Python 3.5. This version sees very little use and will be removed in the next release. * ``backend`` arguments to functions are no longer required and the default backend will automatically be selected if no ``backend`` is provided. * Added initial support for parsing certificates from PKCS7 files with :func:`~cryptography.hazmat.primitives.serialization.pkcs7.load_pem_pkcs7_certificates` and :func:`~cryptography.hazmat.primitives.serialization.pkcs7.load_der_pkcs7_certificates` . * Calling ``update`` or ``update_into`` on :class:`~cryptography.hazmat.primitives.ciphers.CipherContext` with ``data`` longer than 2\ :sup:`31` bytes no longer raises an ``OverflowError``. This also resolves the same issue in :doc:`/fernet`. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cryptography?expand=0&rev=124 --- cryptography-3.0.tar.gz | 3 --- cryptography-3.0.tar.gz.asc | 11 ----------- cryptography-3.1.tar.gz | 3 +++ cryptography-3.1.tar.gz.asc | 11 +++++++++++ python-cryptography.changes | 24 ++++++++++++++++++++++++ python-cryptography.spec | 2 +- 6 files changed, 39 insertions(+), 15 deletions(-) delete mode 100644 cryptography-3.0.tar.gz delete mode 100644 cryptography-3.0.tar.gz.asc create mode 100644 cryptography-3.1.tar.gz create mode 100644 cryptography-3.1.tar.gz.asc diff --git a/cryptography-3.0.tar.gz b/cryptography-3.0.tar.gz deleted file mode 100644 index 158a2f6..0000000 --- a/cryptography-3.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8e924dbc025206e97756e8903039662aa58aa9ba357d8e1d8fc29e3092322053 -size 534725 diff --git a/cryptography-3.0.tar.gz.asc b/cryptography-3.0.tar.gz.asc deleted file mode 100644 index d17911b..0000000 --- a/cryptography-3.0.tar.gz.asc +++ /dev/null @@ -1,11 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQEzBAABCAAdFiEEBf2foWz3VzUNkaVgI1rl8Sn57ZgFAl8WGscACgkQI1rl8Sn5 -7ZiG/Af/dlShgMX5PLP6G+S9iXdSX9Zu6rlJUeQ8QkoaL268KoBe6Y+LHRwDoblk -8iIwN3KYxNqVqEVrve/nr3ju5YoFWXjrA755W13j5ehLN1Tn+s9Apxe2Ye8OhSNa -MrIdzWAMaEl2DpArr2zBxockEuLqb06Uj29YfYQKcmSKwFvzmJtozw1VscwyQS70 -GJ4MzWnbvIIbwpDlwNDiHkR8OE3JR5aDDuYdX0ADWHxK2ExCKS6kP4gI9pamVt6L -RgmJKHfjrbv/hhgrg64PjXH8WRXMKDXs6j5zGRo6Gvg4gnyISvQF7+1piaIsp9bP -BFyuqnIGeMqhwcC/dtGsq/fxJOHurw== -=mZPL ------END PGP SIGNATURE----- diff --git a/cryptography-3.1.tar.gz b/cryptography-3.1.tar.gz new file mode 100644 index 0000000..cd3d7b2 --- /dev/null +++ b/cryptography-3.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26409a473cc6278e4c90f782cd5968ebad04d3911ed1c402fc86908c17633e08 +size 534747 diff --git a/cryptography-3.1.tar.gz.asc b/cryptography-3.1.tar.gz.asc new file mode 100644 index 0000000..72070ef --- /dev/null +++ b/cryptography-3.1.tar.gz.asc @@ -0,0 +1,11 @@ +-----BEGIN PGP SIGNATURE----- + +iQEzBAABCAAdFiEEBf2foWz3VzUNkaVgI1rl8Sn57ZgFAl9HN/kACgkQI1rl8Sn5 +7ZhQpgf7BxSAXHOG2hDlNlH4yzNuqRQ5EaHcn/qrVH4KI6KeN11rPq/hLFxZTDQl +J2C+MBuGfP0OSw//18fXz597EQLkBF4lx4Gta3kJ7U3qSTD9Le3fm5lajQL1Yr9M +rIuMYu8gzgqLhZYfU0Is39aTU2NTNwKNQi2bPs/2cdtwo9Fuz2zzA8fGADyKVDxq +rvLiuZVxZjhj+cQCqIHXJLfIecQq3X+1FCr41Fb1y+FygjzfKwNwihclWApNVk4Z +YHHf9WE99l6Hqt3r5WrhxGVSXA6mUWRqt7f5ZyxWwEzmI9VcvUimP1vnxMxgEOk5 +b5G/M8bkC6XVsdCOg+vKuEVhNN87Iw== +=JlKt +-----END PGP SIGNATURE----- diff --git a/python-cryptography.changes b/python-cryptography.changes index 17e50e0..4b196bc 100644 --- a/python-cryptography.changes +++ b/python-cryptography.changes @@ -1,3 +1,27 @@ +------------------------------------------------------------------- +Fri Sep 18 11:15:53 UTC 2020 - Dirk Mueller + +- update to 3.1: + * **BACKWARDS INCOMPATIBLE:** Removed support for ``idna`` based + :term:`U-label` parsing in various X.509 classes. This support was originally + deprecated in version 2.1 and moved to an extra in 2.5. + * Deprecated OpenSSL 1.0.2 support. OpenSSL 1.0.2 is no longer supported by + the OpenSSL project. The next version of ``cryptography`` will drop support + for it. + * Deprecated support for Python 3.5. This version sees very little use and will + be removed in the next release. + * ``backend`` arguments to functions are no longer required and the + default backend will automatically be selected if no ``backend`` is provided. + * Added initial support for parsing certificates from PKCS7 files with + :func:`~cryptography.hazmat.primitives.serialization.pkcs7.load_pem_pkcs7_certificates` + and + :func:`~cryptography.hazmat.primitives.serialization.pkcs7.load_der_pkcs7_certificates` + . + * Calling ``update`` or ``update_into`` on + :class:`~cryptography.hazmat.primitives.ciphers.CipherContext` with ``data`` + longer than 2\ :sup:`31` bytes no longer raises an ``OverflowError``. This + also resolves the same issue in :doc:`/fernet`. + ------------------------------------------------------------------- Tue Jul 28 17:16:47 UTC 2020 - Ondřej Súkup diff --git a/python-cryptography.spec b/python-cryptography.spec index 480b051..a5b55fa 100644 --- a/python-cryptography.spec +++ b/python-cryptography.spec @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %bcond_without python2 Name: python-cryptography -Version: 3.0 +Version: 3.1 Release: 0 Summary: Python library which exposes cryptographic recipes and primitives License: Apache-2.0 OR BSD-3-Clause