|
4 | 4 | urllib.parse.unquote. Prior versions of redis-py supported this by
|
5 | 5 | specifying the ``decode_components`` flag to the ``from_url`` functions.
|
6 | 6 | This is now done by default and cannot be disabled. #589
|
7 |
| - * Provide a development and testing environment via docker. Thanks |
8 |
| - @abrookins. #1365 |
9 |
| - * Added support for the LPOS command available in Redis 6.0.6. Thanks |
10 |
| - @aparcar #1353/#1354 |
11 |
| - * Added support for the ACL LOG command available in Redis 6. Thanks |
12 |
| - @2014BDuck. #1307 |
13 |
| - * Added support for ABSTTL option of the RESTORE command available in |
14 |
| - Redis 5.0. Thanks @charettes. #1423 |
| 7 | + * POTENTIALLY INCOMPATIBLE: Redis commands were moved into a mixin |
| 8 | + (see commands.py). Anyone importing ``redis.client`` to access commands |
| 9 | + directly should import ``redis.commands``. |
| 10 | + * Added support for ASYNC to SCRIPT FLUSH available in Redis 6.2.0. |
| 11 | + Thanks @chayim. #1567 |
| 12 | + * Added CLIENT LIST fix to support multiple client ids available in |
| 13 | + Redis 2.8.12. Thanks @chayim #1563. |
| 14 | + * Added DISCARD support for pipelines available in Redis 2.0.0. |
| 15 | + Thanks @chayim #1565. |
| 16 | + * Added ACL DELUSER support for deleting lists of users available in |
| 17 | + Redis 6.2.0. Thanks @chayim. #1562 |
| 18 | + * Added CLIENT TRACKINFO support available in Redis 6.2.0. |
| 19 | + Thanks @chayim. #1560 |
| 20 | + * Added GEOSEARCH and GEOSEARCHSTORE support available in Redis 6.2.0. |
| 21 | + Thanks @AvitalFine Redis. #1526 |
| 22 | + * Added LPUSHX support for lists available in Redis 4.0.0. |
| 23 | + Thanks @chayim. #1559 |
| 24 | + * Added support for QUIT available in Redis 1.0.0. |
| 25 | + Thanks @chayim. #1558 |
| 26 | + * Added support for COMMAND COUNT available in Redis 2.8.13. |
| 27 | + Thanks @chayim. #1554. |
| 28 | + * Added CREATECONSUMER support for XGROUP available in Redis 6.2.0. |
| 29 | + Thanks @AvitalFineRedis. #1553 |
| 30 | + * Including slowly complexity in INFO if available. |
| 31 | + Thanks @ian28223 #1489. |
| 32 | + * Added support for STRALGO available in Redis 6.0.0. |
| 33 | + Thanks @AvitalFineRedis. #1528 |
| 34 | + * Addes support for ZMSCORE available in Redis 6.2.0. |
| 35 | + Thanks @2014BDuck and @jiekun.zhu. #1437 |
| 36 | + * Support MINID and LIMIT on XADD available in Redis 6.2.0. |
| 37 | + Thanks @AvitalFineRedis. #1548 |
| 38 | + * Added sentinel commands FLUSHCONFIG, CKQUORUM, FAILOVER, and RESET |
| 39 | + available in Redis 2.8.12. |
| 40 | + Thanks @otherpirate. #834 |
| 41 | + * Migrated Version instead of StrictVersion for Python 3.10. |
| 42 | + Thanks @tirkarthi. #1552 |
| 43 | + * Added retry mechanism with backoff. Thanks @nbraun-amazon. #1494 |
15 | 44 | * Migrated commands to a mixin. Thanks @chayim. #1534
|
16 | 45 | * Added support for ZUNION, available in Redis 6.2.0. Thanks
|
17 | 46 | @AvitalFineRedis. #1522
|
|
60 | 89 | Thanks @AvitalFineRedis. #1515
|
61 | 90 | * Added support for COPY command, available in Redis 6.2.0.
|
62 | 91 | Thanks @malinaa96. #1492
|
63 |
| - * Added support for COPY command, available in Redis 6.2.0. |
64 |
| - Thanks @malinaa96. #1492 |
| 92 | + * Provide a development and testing environment via docker. Thanks |
| 93 | + @abrookins. #1365 |
| 94 | + * Added support for the LPOS command available in Redis 6.0.6. Thanks |
| 95 | + @aparcar #1353/#1354 |
| 96 | + * Added support for the ACL LOG command available in Redis 6. Thanks |
| 97 | + @2014BDuck. #1307 |
| 98 | + * Added support for ABSTTL option of the RESTORE command available in |
| 99 | + Redis 5.0. Thanks @charettes. #1423 |
65 | 100 | * 3.5.3 (June 1, 2020)
|
66 | 101 | * Restore try/except clauses to __del__ methods. These will be removed
|
67 | 102 | in 4.0 when more explicit resource management if enforced. #1339
|
|
0 commit comments