File tree Expand file tree Collapse file tree 4 files changed +15
-4
lines changed
vectors/cryptography_vectors Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 11Changelog
22=========
33
4+ .. _v3-3-1 :
5+
6+ 3.3.1 - 2020-12-09
7+ ~~~~~~~~~~~~~~~~~~
8+
9+ * Re-added a legacy symbol causing problems for older ``pyOpenSSL `` users.
10+
411.. _v3-3 :
512
6133.3 - 2020-12-08
714~~~~~~~~~~~~~~~~
815
9- .. note :: This version is not yet released and is under active development.
10-
1116* **BACKWARDS INCOMPATIBLE: ** Support for Python 3.5 has been removed due to
1217 low usage and maintenance burden.
1318* **BACKWARDS INCOMPATIBLE: ** The
Original file line number Diff line number Diff line change 2525static const long Cryptography_HAS_VERIFIED_CHAIN;
2626static const long Cryptography_HAS_KEYLOG;
2727static const long Cryptography_HAS_GET_PROTO_VERSION;
28+ static const long Cryptography_HAS_TLSEXT_HOSTNAME;
2829
2930/* Internally invented symbol to tell us if SSL_MODE_RELEASE_BUFFERS is
3031 * supported
504505"""
505506
506507CUSTOMIZATIONS = """
508+ // This symbol is being preserved because removing it will break users with
509+ // pyOpenSSL < 19.1 and pip < 20.x. We need to leave this in place until those
510+ // users have upgraded. PersistentlyDeprecated2020
511+ static const long Cryptography_HAS_TLSEXT_HOSTNAME = 1;
512+
507513#if CRYPTOGRAPHY_IS_LIBRESSL
508514static const long Cryptography_HAS_VERIFIED_CHAIN = 0;
509515Cryptography_STACK_OF_X509 *(*SSL_get0_verified_chain)(const SSL *) = NULL;
Original file line number Diff line number Diff line change 2222)
2323__uri__ = "https://github.com/pyca/cryptography"
2424
25- __version__ = "3.3"
25+ __version__ = "3.3.1 "
2626
2727__author__ = "The cryptography developers"
2828__email__ = "cryptography-dev@python.org"
Original file line number Diff line number Diff line change 2020
2121__uri__ = "https://github.com/pyca/cryptography"
2222
23- __version__ = "3.3"
23+ __version__ = "3.3.1 "
2424
2525__author__ = "The cryptography developers"
2626__email__ = "cryptography-dev@python.org"
You can’t perform that action at this time.
0 commit comments