14
0

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

update to upstream release 1.2.1 (needs python-cffi 1.4.1+, see also request #352713)

OBS-URL: https://build.opensuse.org/request/show/352716
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cryptography?expand=0&rev=30
This commit is contained in:
Todd R
2016-01-11 08:06:18 +00:00
committed by Git OBS Bridge
parent 254ce426f2
commit b6b9b9ff49
10 changed files with 70 additions and 29 deletions

View File

@@ -1,3 +1,44 @@
-------------------------------------------------------------------
Sat Jan 9 16:58:46 UTC 2016 - michael@stroeder.com
- update to upstream release 1.2.1
1.2.1 - 2016-01-08
* Reverts a change to an OpenSSL EVP_PKEY object that caused
errors with pyOpenSSL.
1.2 - 2016-01-08
* BACKWARDS INCOMPATIBLE: RevokedCertificate extensions now
uses extension classes rather than returning raw values
inside the Extension value. The new classes are:
o CertificateIssuer
o CRLReason
o InvalidityDate
* Deprecated support for OpenSSL 0.9.8 and 1.0.0. At this time
there is no time table for actually dropping support,
however we strongly encourage all users to upgrade, as those
versions no longer receive support from the OpenSSL project.
* The Certificate class now has signature and
tbs_certificate_bytes attributes.
* The CertificateSigningRequest class now has signature and
tbs_certrequest_bytes attributes.
* The CertificateRevocationList class now has signature and
tbs_certlist_bytes attributes.
* NameConstraints are now supported in the CertificateBuilder
and CertificateSigningRequestBuilder.
* Support serialization of certificate revocation lists using
the public_bytes() method of CertificateRevocationList.
* Add support for parsing CertificateRevocationList extensions
() in the OpenSSL backend. The following extensions are
currently supported:
o AuthorityInformationAccess
o AuthorityKeyIdentifier
o CRLNumber
o IssuerAlternativeName
* Added CertificateRevocationListBuilder and
RevokedCertificateBuilder to allow creation of CRLs.
* Unrecognized non-critical X.509 extensions are now parsed
into an UnrecognizedExtension object.
-------------------------------------------------------------------
Wed Dec 30 12:41:26 UTC 2015 - michael@stroeder.com