summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-05-06 13:19:49 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-05-06 13:19:49 (GMT)
commit1c86b4450689cc9ecef6c99ad8e55bae67931e59 (patch)
tree93db475c6bae4a416638fa39cec89d074ae3c542 /Misc/NEWS
parent78349b06af6cabe7ff949a98fafa15d8a9c48c61 (diff)
downloadcpython-1c86b4450689cc9ecef6c99ad8e55bae67931e59.zip
cpython-1c86b4450689cc9ecef6c99ad8e55bae67931e59.tar.gz
cpython-1c86b4450689cc9ecef6c99ad8e55bae67931e59.tar.bz2
Issue #12000: When a SSL certificate has a subjectAltName without any
dNSName entry, ssl.match_hostname() should use the subject's commonName. Patch by Nicolas Bareil.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 01274a1..827e837 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -83,6 +83,10 @@ Core and Builtins
Library
-------
+- Issue #12000: When a SSL certificate has a subjectAltName without any
+ dNSName entry, ssl.match_hostname() should use the subject's commonName.
+ Patch by Nicolas Bareil.
+
- Issue #11647: objects created using contextlib.contextmanager now support
more than one call to the function when used as a decorator. Initial patch
by Ysj Ray.