File tree 4 files changed +15
-4
lines changed
vectors/cryptography_vectors
4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
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
+
4
11
.. _v3-3 :
5
12
6
13
3.3 - 2020-12-08
7
14
~~~~~~~~~~~~~~~~
8
15
9
- .. note :: This version is not yet released and is under active development.
10
-
11
16
* **BACKWARDS INCOMPATIBLE: ** Support for Python 3.5 has been removed due to
12
17
low usage and maintenance burden.
13
18
* **BACKWARDS INCOMPATIBLE: ** The
Original file line number Diff line number Diff line change 25
25
static const long Cryptography_HAS_VERIFIED_CHAIN;
26
26
static const long Cryptography_HAS_KEYLOG;
27
27
static const long Cryptography_HAS_GET_PROTO_VERSION;
28
+ static const long Cryptography_HAS_TLSEXT_HOSTNAME;
28
29
29
30
/* Internally invented symbol to tell us if SSL_MODE_RELEASE_BUFFERS is
30
31
* supported
504
505
"""
505
506
506
507
CUSTOMIZATIONS = """
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
+
507
513
#if CRYPTOGRAPHY_IS_LIBRESSL
508
514
static const long Cryptography_HAS_VERIFIED_CHAIN = 0;
509
515
Cryptography_STACK_OF_X509 *(*SSL_get0_verified_chain)(const SSL *) = NULL;
Original file line number Diff line number Diff line change 22
22
)
23
23
__uri__ = "https://github.com/pyca/cryptography"
24
24
25
- __version__ = "3.3"
25
+ __version__ = "3.3.1 "
26
26
27
27
__author__ = "The cryptography developers"
28
28
Original file line number Diff line number Diff line change 20
20
21
21
__uri__ = "https://github.com/pyca/cryptography"
22
22
23
- __version__ = "3.3"
23
+ __version__ = "3.3.1 "
24
24
25
25
__author__ = "The cryptography developers"
26
26
You can’t perform that action at this time.
0 commit comments