summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2017-08-16 16:16:25 -0700
committerAndy McCurdy <andy@andymccurdy.com>2017-08-16 16:16:25 -0700
commitd48c46d3f8c6943c7995bffbecb0fb4c66daabe2 (patch)
treebc17568259078f0fde31e2dd9564001c09d03d3c
parent29273f2d4277231f26512fd64baf151bc80f75ae (diff)
downloadredis-py-d48c46d3f8c6943c7995bffbecb0fb4c66daabe2.tar.gz
changelog
-rw-r--r--CHANGES30
1 files changed, 29 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 2a26c26..d048ea5 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,32 @@
-* 2.10.6 (in development)
+* 2.10.6
+ * Various performance improvements. Thanks cjsimpson
+ * Fixed a bug with SRANDMEMBER where
+ * Added HSTRLEN command. Thanks Alexander Putilin
+ * Added the TOUCH command. Thanks Anis Jonischkeit
+ * Remove unnecessary calls to the server when registering Lua scripts.
+ Thanks Ben Greenberg
+ * SET's EX and PX arguments now allow values of zero. Thanks huangqiyin
+ * Added PUBSUB {CHANNELS, NUMPAT, NUMSUB} commands. Thanks Angus Pearson
+ * PubSub connections that that encounter `InterruptedError`s now
+ retry automatically. Thanks Carlton Gibson and Seth M. Larson
+ * LPUSH and RPUSH commands run on PyPy now correctly returns the number
+ of items of the list. Thanks Jeong YunWon
+ * Added support to automatically retry socket EINTR errors. Thanks
+ Thomas Steinacher
+ * PubSubWorker threads started with `run_in_thread` are now daemonized
+ so the thread shuts down when the running process goes away. Thanks
+ Keith Ainsworth
+ * Added support for GEO commands. Thanks Pau Freixes, Alex DeBrie and
+ Abraham Toriz
+ * Made client construction from URLs smarter. Thanks Tim Savage
+ * Added support for CLUSTER * commands. Thanks Andy Huang
+ * The RESTORE command now accepts an optional `replace` boolean.
+ Thanks Yoshinari Takaoka
+ * Attempt to connect to a new Sentinel if a TimeoutError occurs. Thanks
+ Bo Lopker
+ * Fixed a bug in the client's `__getitem__` where a KeyError would be
+ raised if the value returned by the server is an empty string.
+ Thanks Javier Candeira.
* Socket timeouts when connecting to a server are now properly raised
as TimeoutErrors.
* 2.10.5