diff options
author | Christian Heimes <christian@python.org> | 2019-06-03 18:51:27 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-06-03 18:51:27 (GMT) |
commit | 47eb2234061524562a4b484e3a395f4fdd6c1b76 (patch) | |
tree | 43cf4c90b6c56a237a2fc05bc5234e3918f78d3d /Doc | |
parent | e35d1ba9eab07a59b98b700c5e18ceb13b2561a6 (diff) | |
download | cpython-47eb2234061524562a4b484e3a395f4fdd6c1b76.zip cpython-47eb2234061524562a4b484e3a395f4fdd6c1b76.tar.gz cpython-47eb2234061524562a4b484e3a395f4fdd6c1b76.tar.bz2 |
bpo-36868: Fix what's new for SSLContext.hostname_checks_common_name (GH-13248)
What's new now mentions SSLContext.hostname_checks_common_name instead of SSLContext.host_flags.
https://bugs.python.org/issue36868
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 93d3e62..fc867ac 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -1307,7 +1307,7 @@ including failing the host name check now raises :exc:`~ssl.SSLCertVerificationError` and aborts the handshake with a proper TLS Alert message. The new exception contains additional information. Host name validation can be customized with -:attr:`SSLContext.host_flags <ssl.SSLContext.host_flags>`. +:attr:`SSLContext.hostname_checks_common_name <ssl.SSLContext.hostname_checks_common_name>`. (Contributed by Christian Heimes in :issue:`31399`.) .. note:: @@ -1320,8 +1320,7 @@ The ``ssl`` module no longer sends IP addresses in SNI TLS extension. (Contributed by Christian Heimes in :issue:`32185`.) :func:`~ssl.match_hostname` no longer supports partial wildcards like -``www*.example.org``. :attr:`SSLContext.host_flags <ssl.SSLContext.host_flags>` -has partial wildcard matching disabled by default. +``www*.example.org``. (Contributed by Mandeep Singh in :issue:`23033` and Christian Heimes in :issue:`31399`.) |