From 5f8c8a31a7adef224436f8acc3f04147a92b3029 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 15 Jun 2019 19:54:42 -0400 Subject: Refs #4923; deprecate OpenSSL 1.0.1 (#4924) * Refs #4923; deprecate OpenSSL 1.0.1 * changelog --- CHANGELOG.rst | 2 ++ docs/installation.rst | 4 ++-- src/cryptography/hazmat/bindings/openssl/binding.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4231d2b6..a8ef5d22 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -8,6 +8,8 @@ Changelog .. note:: This version is not yet released and is under active development. +* Deprecated support for OpenSSL 1.0.1. Support will be removed in + ``cryptography`` 2.9. * We now ship ``manylinux2010`` wheels in addition to our ``manylinux1`` wheels. diff --git a/docs/installation.rst b/docs/installation.rst index 7118cb1e..2c83f33a 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -32,8 +32,8 @@ OpenSSL releases: * ``OpenSSL 1.1.1-latest`` .. warning:: - Cryptography 2.4 has deprecated support for OpenSSL 1.0.1. - + OpenSSL 1.0.1 is no longer supported by the OpenSSL project. Cryptography + will drop support for it in the next release. Building cryptography on Windows -------------------------------- diff --git a/src/cryptography/hazmat/bindings/openssl/binding.py b/src/cryptography/hazmat/bindings/openssl/binding.py index ca4e33fa..97405162 100644 --- a/src/cryptography/hazmat/bindings/openssl/binding.py +++ b/src/cryptography/hazmat/bindings/openssl/binding.py @@ -158,7 +158,7 @@ def _verify_openssl_version(lib): ): warnings.warn( "OpenSSL version 1.0.1 is no longer supported by the OpenSSL " - "project, please upgrade. A future version of cryptography will " + "project, please upgrade. The next version of cryptography will " "drop support for it.", utils.CryptographyDeprecationWarning ) -- cgit v1.2.3