summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2019-01-31 22:06:51 -0800
committerAndy McCurdy <andy@andymccurdy.com>2019-01-31 22:06:51 -0800
commitbe2f56c26b3c46e6c4e4e4432e63b285d182f7a7 (patch)
tree1716eb791346104f144275a37940c0125cfed8c8
parent2a57d14a1eba512937943da353283434b991cc8b (diff)
downloadredis-py-be2f56c26b3c46e6c4e4e4432e63b285d182f7a7.tar.gz
changelog
-rw-r--r--CHANGES7
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index bbddbb1..0c1337b 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,10 @@
+* 3.1.1
+ * Significant improvements to handing connections with forked processes.
+ Parent and child processes no longer trample on each others' connections.
+ Thanks to Jay Rolette for the patch and highlighting this issue.
+ #504/#732/#784/#863
+ * PythonParser no longer closes the associated connection's socket. The
+ connection itself will close the socket. #1108/#1085
* 3.1.0
* Connection URLs must have one of the following schemes:
redis://, rediss://, unix://. Thanks @jdupl123. #961/#969