py-redis: updated to 4.3.0
Version 4.3.0 🔥 Breaking Changes Replace OSError exceptions from can_read with redis.ConnectionError Updated FUNCTION LOAD changes (from release 7.0 rc3 to support redis 7.0 final) 🚀 New Features Get command keys for subcommands Add support for CLUSTER SHARDS Add support for COMMAND LIST Add Async RedisCluster ACL SETUSER - add selectors and key based permissions Support for redis 7 streams features Async Connection: Allow PubSub.run() without previous subscribe() Implemented LATENCY HISTOGRAM by always throwing NotImplementedError Add async supoort for SEARCH commands Retry(): Support negative retries value Add support for MODULE LOADEX INFO - add support for taking multiple section arguments CONFIG SET - add the ability to set multiple parameters in one call CONFIG GET - add the ability to pass multiple pattern parameters in one call Add support for COMMAND GETKEYSANDFLAGS Support CASESENSITIVE for TAG fields 🐛 Bug Fixes Rename 'update_supported_erros' to 'update_supported_errors' in Retry module Fix execute_command() determining nodes error when no key command Fix incorrect return statement in auth 🧰 Maintenance Add unittest for PubSub.connect() Fix incorrect return annotation in asyncio.lock Minor cleanups in commands/cluster.py Update xtrim type annotation Async tests for redis commands, json, bloom, timeseries Fixed typing in getex command
This commit is contained in:
parent
6b8b1e3565
commit
37ad12d338
3 changed files with 13 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.25 2022/04/04 18:18:33 adam Exp $
|
||||
# $NetBSD: Makefile,v 1.26 2022/05/09 05:42:55 adam Exp $
|
||||
|
||||
DISTNAME= redis-4.2.2
|
||||
DISTNAME= redis-4.3.0
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= databases python
|
||||
MASTER_SITES= ${MASTER_SITE_PYPI:=r/redis/}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.7 2022/04/04 18:18:33 adam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.8 2022/05/09 05:42:55 adam Exp $
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
||||
|
@ -13,12 +13,18 @@ ${PYSITELIB}/redis/asyncio/__init__.pyo
|
|||
${PYSITELIB}/redis/asyncio/client.py
|
||||
${PYSITELIB}/redis/asyncio/client.pyc
|
||||
${PYSITELIB}/redis/asyncio/client.pyo
|
||||
${PYSITELIB}/redis/asyncio/cluster.py
|
||||
${PYSITELIB}/redis/asyncio/cluster.pyc
|
||||
${PYSITELIB}/redis/asyncio/cluster.pyo
|
||||
${PYSITELIB}/redis/asyncio/connection.py
|
||||
${PYSITELIB}/redis/asyncio/connection.pyc
|
||||
${PYSITELIB}/redis/asyncio/connection.pyo
|
||||
${PYSITELIB}/redis/asyncio/lock.py
|
||||
${PYSITELIB}/redis/asyncio/lock.pyc
|
||||
${PYSITELIB}/redis/asyncio/lock.pyo
|
||||
${PYSITELIB}/redis/asyncio/parser.py
|
||||
${PYSITELIB}/redis/asyncio/parser.pyc
|
||||
${PYSITELIB}/redis/asyncio/parser.pyo
|
||||
${PYSITELIB}/redis/asyncio/retry.py
|
||||
${PYSITELIB}/redis/asyncio/retry.pyc
|
||||
${PYSITELIB}/redis/asyncio/retry.pyo
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.22 2022/04/04 18:18:33 adam Exp $
|
||||
$NetBSD: distinfo,v 1.23 2022/05/09 05:42:55 adam Exp $
|
||||
|
||||
BLAKE2s (redis-4.2.2.tar.gz) = f141091816b3082bfb6c845b2cbb3e9f1e36088539e0c1267c3e2ccd2fbf5217
|
||||
SHA512 (redis-4.2.2.tar.gz) = 80673d48cd97af1c5ebc67e919f16891ccb20cd30bc06619ddffeb117ad87f82b73f9b9bda6d36829bc51a35aa3c9b2af7c879ec665cc9664bdd86ac6510095b
|
||||
Size (redis-4.2.2.tar.gz) = 2421362 bytes
|
||||
BLAKE2s (redis-4.3.0.tar.gz) = b9514a97aca074889c974701f2c9b571d99f1e1460622cd5f892d5ac5c38abde
|
||||
SHA512 (redis-4.3.0.tar.gz) = 3733e0131764c145e633385d111624670ebafd739f45d78945b0eb0a13efcbd39b3af2d604279a25de92560e9e47500372b88f26f652ced13ff1ed592df8fe03
|
||||
Size (redis-4.3.0.tar.gz) = 4558217 bytes
|
||||
|
|
Loading…
Reference in a new issue