summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2019-12-29 15:40:09 -0800
committerAndy McCurdy <andy@andymccurdy.com>2019-12-29 15:40:09 -0800
commitff69f0d77284643909462ee6d1e37233c6677672 (patch)
tree972d887954e0f46e418e19d62eebb9e15a1a1596 /CHANGES
parenta9ef0fe200507480ad721e6cc1520fef74f4d396 (diff)
downloadredis-py-ff69f0d77284643909462ee6d1e37233c6677672.tar.gz
Added the 'ssl_check_hostname' option.
'ssl_check_hostname' tells SSL Connections to whether to require the TCP hostname to match the hostname specified in the SSL Cert. By default 'ssl_check_hostname' is False to maintain backwards compatibility. Fixed #1196
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 7cff020..a10440c 100644
--- a/CHANGES
+++ b/CHANGES
@@ -14,6 +14,10 @@
argument. If supplied, all connections created will call CLIENT SETNAME
as soon as the connection is opened. Thanks to @Habbie for supplying
the basis of this chanfge. #802
+ * Added the 'ssl_check_hostname' argument to specify whether SSL
+ connections should require the server hostname to match the hostname
+ specified in the SSL cert. By default 'ssl_check_hostname' is False
+ for backwards compatibility. #1196
* 3.3.11
* Further fix for the SSLError -> TimeoutError mapping to work
on obscure releases of Python 2.7.