aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGELOG.rst
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-25 16:17:40 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-25 20:19:17 -0600
commit49bb7565120b181752dc2574cd0e3660393c707c (patch)
tree719427d25f47ae295dd44f6707d83cc8333b859d /CHANGELOG.rst
parent4f76921ad87d71067158625aa0afedbba8ae1314 (diff)
downloadcryptography-49bb7565120b181752dc2574cd0e3660393c707c.tar.gz
cryptography-49bb7565120b181752dc2574cd0e3660393c707c.tar.bz2
cryptography-49bb7565120b181752dc2574cd0e3660393c707c.zip
start switching the CRL entry extensions to be full-fledged classes
first up: CertificateIssuer
Diffstat (limited to 'CHANGELOG.rst')
-rw-r--r--CHANGELOG.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 3e24633e..ab6468d8 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -6,6 +6,17 @@ Changelog
.. note:: This version is not yet released and is under active development.
+* **BACKWARDS INCOMPATIBLE:**
+ :class:`~cryptography.x509.RevokedCertificate`
+ :attr:`~cryptography.x509.RevokedCertificate.extensions` now uses extension
+ classes rather than returning raw values inside the
+ :class:`~cryptography.x509.Extension`
+ :attr:`~cryptography.x509.Extension.value`. The new classes
+ are:
+
+ * :class:`~cryptography.x509.CertificateIssuer`
+ * ``CRLReason``
+ * ``InvalidityDate``
* The :class:`~cryptography.x509.Certificate` class now has
:attr:`~cryptography.x509.Certificate.signature` and
:attr:`~cryptography.x509.Certificate.tbs_certificate_bytes` attributes.