summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorhuangwei-ds5 <huangwei-ds5@gome.com.cn>2019-08-09 15:54:57 +0800
committerAndy McCurdy <andy@andymccurdy.com>2019-08-19 12:30:39 -0700
commitd811ae71dbdbeeb4fc0ee73a96b7fbdb1aec8522 (patch)
tree928cee652b10c7ae6d0ba974ef47423f60a9f94f /CHANGES
parentf0516c9f7589557883a5eb23a44531066e275950 (diff)
downloadredis-py-d811ae71dbdbeeb4fc0ee73a96b7fbdb1aec8522.tar.gz
version 3.3.8, fix MONITOR output to account for all types of clients3.3.8
The client section of MONITOR output varies for TCP connections, unix socket connections and commands executed from Lua scripts. Account for each of these cases by including an additional key `client_type` in the MONITOR output. `client_type` will be one of ('tcp', 'unix', 'lua'). `client_address` and `client_port` vary based on the `client_type`. Fixes #1201
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES3
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index eda80b6..37b2830 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+* 3.3.8
+ * Fixed MONITOR parsing to properly parse IPv6 client addresses, unix
+ socket connections and commands issued from Lua. Thanks @kukey. #1201
* 3.3.7
* Fixed a regression introduced in 3.3.0 where socket.error exceptions
(or subclasses) could potentially be raised instead of