summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChayim <chayim@users.noreply.github.com>2021-09-05 10:24:17 +0300
committerGitHub <noreply@github.com>2021-09-05 10:24:17 +0300
commit04a9311cb79f7f0cdfcc9e986e2e1696f53c3063 (patch)
treee1c0e6f03c6b21ba40207df097ac48abaab0861e
parente9837c1d6360d27fac0d8fed6384fd9b2b568b5c (diff)
downloadredis-py-ck-patch-changes.tar.gz
Updating CHANGES with the latest improvements.ck-patch-changes
Thanks everyone for all your contributions!
-rw-r--r--CHANGES55
1 files changed, 45 insertions, 10 deletions
diff --git a/CHANGES b/CHANGES
index 9a1df64..057423d 100644
--- a/CHANGES
+++ b/CHANGES
@@ -4,14 +4,43 @@
urllib.parse.unquote. Prior versions of redis-py supported this by
specifying the ``decode_components`` flag to the ``from_url`` functions.
This is now done by default and cannot be disabled. #589
- * Provide a development and testing environment via docker. Thanks
- @abrookins. #1365
- * Added support for the LPOS command available in Redis 6.0.6. Thanks
- @aparcar #1353/#1354
- * Added support for the ACL LOG command available in Redis 6. Thanks
- @2014BDuck. #1307
- * Added support for ABSTTL option of the RESTORE command available in
- Redis 5.0. Thanks @charettes. #1423
+ * POTENTIALLY INCOMPATIBLE: Redis commands were moved into a mixin
+ (see commands.py). Anyone importing ``redis.client`` to access commands
+ directly should import ``redis.commands``.
+ * Added support for ASYNC to SCRIPT FLUSH available in Redis 6.2.0.
+ Thanks @chayim. #1567
+ * Added CLIENT LIST fix to support multiple client ids available in
+ Redis 2.8.12. Thanks @chayim #1563.
+ * Added DISCARD support for pipelines available in Redis 2.0.0.
+ Thanks @chayim #1565.
+ * Added ACL DELUSER support for deleting lists of users available in
+ Redis 6.2.0. Thanks @chayim. #1562
+ * Added CLIENT TRACKINFO support available in Redis 6.2.0.
+ Thanks @chayim. #1560
+ * Added GEOSEARCH and GEOSEARCHSTORE support available in Redis 6.2.0.
+ Thanks @AvitalFine Redis. #1526
+ * Added LPUSHX support for lists available in Redis 4.0.0.
+ Thanks @chayim. #1559
+ * Added support for QUIT available in Redis 1.0.0.
+ Thanks @chayim. #1558
+ * Added support for COMMAND COUNT available in Redis 2.8.13.
+ Thanks @chayim. #1554.
+ * Added CREATECONSUMER support for XGROUP available in Redis 6.2.0.
+ Thanks @AvitalFineRedis. #1553
+ * Including slowly complexity in INFO if available.
+ Thanks @ian28223 #1489.
+ * Added support for STRALGO available in Redis 6.0.0.
+ Thanks @AvitalFineRedis. #1528
+ * Addes support for ZMSCORE available in Redis 6.2.0.
+ Thanks @2014BDuck and @jiekun.zhu. #1437
+ * Support MINID and LIMIT on XADD available in Redis 6.2.0.
+ Thanks @AvitalFineRedis. #1548
+ * Added sentinel commands FLUSHCONFIG, CKQUORUM, FAILOVER, and RESET
+ available in Redis 2.8.12.
+ Thanks @otherpirate. #834
+ * Migrated Version instead of StrictVersion for Python 3.10.
+ Thanks @tirkarthi. #1552
+ * Added retry mechanism with backoff. Thanks @nbraun-amazon. #1494
* Migrated commands to a mixin. Thanks @chayim. #1534
* Added support for ZUNION, available in Redis 6.2.0. Thanks
@AvitalFineRedis. #1522
@@ -60,8 +89,14 @@
Thanks @AvitalFineRedis. #1515
* Added support for COPY command, available in Redis 6.2.0.
Thanks @malinaa96. #1492
- * Added support for COPY command, available in Redis 6.2.0.
- Thanks @malinaa96. #1492
+ * Provide a development and testing environment via docker. Thanks
+ @abrookins. #1365
+ * Added support for the LPOS command available in Redis 6.0.6. Thanks
+ @aparcar #1353/#1354
+ * Added support for the ACL LOG command available in Redis 6. Thanks
+ @2014BDuck. #1307
+ * Added support for ABSTTL option of the RESTORE command available in
+ Redis 5.0. Thanks @charettes. #1423
* 3.5.3 (June 1, 2020)
* Restore try/except clauses to __del__ methods. These will be removed
in 4.0 when more explicit resource management if enforced. #1339