pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/databases/py-redis
Module Name: pkgsrc
Committed By: adam
Date: Thu May 22 18:45:57 UTC 2025
Modified Files:
pkgsrc/databases/py-redis: Makefile PLIST distinfo
Log Message:
py-redis: updated to 6.1.0
6.1.0
New Features
Support for transactions in RedisCluster client
Add equality and hashability to Retry and backoff classes
Bug Fixes
Fix RedisCluster ssl_check_hostname not set to connections. For SSL verification with ssl_cert_reqs="none", check_hostname is set to False
Prevent RuntimeError while reinitializing clusters - sync and async
Add equality and hashability to Retry and backoff classes
Fix AttributeError on ClusterPipeline
Maintenance
Updating the readme and lib version to contain the changes from the latest stable release
Export REDIS_MAJOR_VERSION correctly in run-tests
Fix matrix in hiredis-py-integration.yaml
Test against unstable hiredis-py
Adding return types for the RedisModuleCommands class
Updating Redis 8 test image for GH pipeline
Allow newer PyJWT versions
Change type hints with possible None args or return types to be annotated with Optional - includes commands in core.py and json commands
To generate a diff of this commit:
cvs rdiff -u -r1.50 -r1.51 pkgsrc/databases/py-redis/Makefile
cvs rdiff -u -r1.13 -r1.14 pkgsrc/databases/py-redis/PLIST
cvs rdiff -u -r1.45 -r1.46 pkgsrc/databases/py-redis/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/databases/py-redis/Makefile
diff -u pkgsrc/databases/py-redis/Makefile:1.50 pkgsrc/databases/py-redis/Makefile:1.51
--- pkgsrc/databases/py-redis/Makefile:1.50 Mon Apr 14 11:50:22 2025
+++ pkgsrc/databases/py-redis/Makefile Thu May 22 18:45:57 2025
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.50 2025/04/14 11:50:22 adam Exp $
+# $NetBSD: Makefile,v 1.51 2025/05/22 18:45:57 adam Exp $
-DISTNAME= redis-5.0.8
+DISTNAME= redis-6.1.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION= 1
CATEGORIES= databases python
MASTER_SITES= ${MASTER_SITE_PYPI:=r/redis/}
@@ -11,7 +10,8 @@ HOMEPAGE= https://github.com/redis/redis
COMMENT= Redis Python client
LICENSE= mit
-TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=78:../../devel/py-setuptools
+TOOL_DEPENDS+= ${PYPKGPREFIX}-hatchling>0:../../devel/py-hatchling
+TEST_DEPENDS+= ${PYPKGPREFIX}-mock>0:../../devel/py-mock
TEST_DEPENDS+= ${PYPKGPREFIX}-packaging>=20.4:../../devel/py-packaging
TEST_DEPENDS+= ${PYPKGPREFIX}-test-asyncio-[0-9]*:../../devel/py-test-asyncio
Index: pkgsrc/databases/py-redis/PLIST
diff -u pkgsrc/databases/py-redis/PLIST:1.13 pkgsrc/databases/py-redis/PLIST:1.14
--- pkgsrc/databases/py-redis/PLIST:1.13 Mon Apr 14 11:50:22 2025
+++ pkgsrc/databases/py-redis/PLIST Thu May 22 18:45:57 2025
@@ -1,9 +1,8 @@
-@comment $NetBSD: PLIST,v 1.13 2025/04/14 11:50:22 adam Exp $
+@comment $NetBSD: PLIST,v 1.14 2025/05/22 18:45:57 adam Exp $
${PYSITELIB}/${WHEEL_INFODIR}/METADATA
${PYSITELIB}/${WHEEL_INFODIR}/RECORD
${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
${PYSITELIB}/${WHEEL_INFODIR}/licenses/LICENSE
-${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
${PYSITELIB}/redis/__init__.py
${PYSITELIB}/redis/__init__.pyc
${PYSITELIB}/redis/__init__.pyo
@@ -58,9 +57,27 @@ ${PYSITELIB}/redis/asyncio/sentinel.pyo
${PYSITELIB}/redis/asyncio/utils.py
${PYSITELIB}/redis/asyncio/utils.pyc
${PYSITELIB}/redis/asyncio/utils.pyo
+${PYSITELIB}/redis/auth/__init__.py
+${PYSITELIB}/redis/auth/__init__.pyc
+${PYSITELIB}/redis/auth/__init__.pyo
+${PYSITELIB}/redis/auth/err.py
+${PYSITELIB}/redis/auth/err.pyc
+${PYSITELIB}/redis/auth/err.pyo
+${PYSITELIB}/redis/auth/idp.py
+${PYSITELIB}/redis/auth/idp.pyc
+${PYSITELIB}/redis/auth/idp.pyo
+${PYSITELIB}/redis/auth/token.py
+${PYSITELIB}/redis/auth/token.pyc
+${PYSITELIB}/redis/auth/token.pyo
+${PYSITELIB}/redis/auth/token_manager.py
+${PYSITELIB}/redis/auth/token_manager.pyc
+${PYSITELIB}/redis/auth/token_manager.pyo
${PYSITELIB}/redis/backoff.py
${PYSITELIB}/redis/backoff.pyc
${PYSITELIB}/redis/backoff.pyo
+${PYSITELIB}/redis/cache.py
+${PYSITELIB}/redis/cache.pyc
+${PYSITELIB}/redis/cache.pyo
${PYSITELIB}/redis/client.py
${PYSITELIB}/redis/client.pyc
${PYSITELIB}/redis/client.pyo
@@ -85,30 +102,6 @@ ${PYSITELIB}/redis/commands/cluster.pyo
${PYSITELIB}/redis/commands/core.py
${PYSITELIB}/redis/commands/core.pyc
${PYSITELIB}/redis/commands/core.pyo
-${PYSITELIB}/redis/commands/graph/__init__.py
-${PYSITELIB}/redis/commands/graph/__init__.pyc
-${PYSITELIB}/redis/commands/graph/__init__.pyo
-${PYSITELIB}/redis/commands/graph/commands.py
-${PYSITELIB}/redis/commands/graph/commands.pyc
-${PYSITELIB}/redis/commands/graph/commands.pyo
-${PYSITELIB}/redis/commands/graph/edge.py
-${PYSITELIB}/redis/commands/graph/edge.pyc
-${PYSITELIB}/redis/commands/graph/edge.pyo
-${PYSITELIB}/redis/commands/graph/exceptions.py
-${PYSITELIB}/redis/commands/graph/exceptions.pyc
-${PYSITELIB}/redis/commands/graph/exceptions.pyo
-${PYSITELIB}/redis/commands/graph/execution_plan.py
-${PYSITELIB}/redis/commands/graph/execution_plan.pyc
-${PYSITELIB}/redis/commands/graph/execution_plan.pyo
-${PYSITELIB}/redis/commands/graph/node.py
-${PYSITELIB}/redis/commands/graph/node.pyc
-${PYSITELIB}/redis/commands/graph/node.pyo
-${PYSITELIB}/redis/commands/graph/path.py
-${PYSITELIB}/redis/commands/graph/path.pyc
-${PYSITELIB}/redis/commands/graph/path.pyo
-${PYSITELIB}/redis/commands/graph/query_result.py
-${PYSITELIB}/redis/commands/graph/query_result.pyc
-${PYSITELIB}/redis/commands/graph/query_result.pyo
${PYSITELIB}/redis/commands/helpers.py
${PYSITELIB}/redis/commands/helpers.pyc
${PYSITELIB}/redis/commands/helpers.pyo
@@ -142,15 +135,21 @@ ${PYSITELIB}/redis/commands/search/aggre
${PYSITELIB}/redis/commands/search/commands.py
${PYSITELIB}/redis/commands/search/commands.pyc
${PYSITELIB}/redis/commands/search/commands.pyo
+${PYSITELIB}/redis/commands/search/dialect.py
+${PYSITELIB}/redis/commands/search/dialect.pyc
+${PYSITELIB}/redis/commands/search/dialect.pyo
${PYSITELIB}/redis/commands/search/document.py
${PYSITELIB}/redis/commands/search/document.pyc
${PYSITELIB}/redis/commands/search/document.pyo
${PYSITELIB}/redis/commands/search/field.py
${PYSITELIB}/redis/commands/search/field.pyc
${PYSITELIB}/redis/commands/search/field.pyo
-${PYSITELIB}/redis/commands/search/indexDefinition.py
-${PYSITELIB}/redis/commands/search/indexDefinition.pyc
-${PYSITELIB}/redis/commands/search/indexDefinition.pyo
+${PYSITELIB}/redis/commands/search/index_definition.py
+${PYSITELIB}/redis/commands/search/index_definition.pyc
+${PYSITELIB}/redis/commands/search/index_definition.pyo
+${PYSITELIB}/redis/commands/search/profile_information.py
+${PYSITELIB}/redis/commands/search/profile_information.pyc
+${PYSITELIB}/redis/commands/search/profile_information.pyo
${PYSITELIB}/redis/commands/search/query.py
${PYSITELIB}/redis/commands/search/query.pyc
${PYSITELIB}/redis/commands/search/query.pyo
@@ -181,9 +180,15 @@ ${PYSITELIB}/redis/commands/timeseries/i
${PYSITELIB}/redis/commands/timeseries/utils.py
${PYSITELIB}/redis/commands/timeseries/utils.pyc
${PYSITELIB}/redis/commands/timeseries/utils.pyo
-${PYSITELIB}/redis/compat.py
-${PYSITELIB}/redis/compat.pyc
-${PYSITELIB}/redis/compat.pyo
+${PYSITELIB}/redis/commands/vectorset/__init__.py
+${PYSITELIB}/redis/commands/vectorset/__init__.pyc
+${PYSITELIB}/redis/commands/vectorset/__init__.pyo
+${PYSITELIB}/redis/commands/vectorset/commands.py
+${PYSITELIB}/redis/commands/vectorset/commands.pyc
+${PYSITELIB}/redis/commands/vectorset/commands.pyo
+${PYSITELIB}/redis/commands/vectorset/utils.py
+${PYSITELIB}/redis/commands/vectorset/utils.pyc
+${PYSITELIB}/redis/commands/vectorset/utils.pyo
${PYSITELIB}/redis/connection.py
${PYSITELIB}/redis/connection.pyc
${PYSITELIB}/redis/connection.pyo
@@ -193,6 +198,9 @@ ${PYSITELIB}/redis/crc.pyo
${PYSITELIB}/redis/credentials.py
${PYSITELIB}/redis/credentials.pyc
${PYSITELIB}/redis/credentials.pyo
+${PYSITELIB}/redis/event.py
+${PYSITELIB}/redis/event.pyc
+${PYSITELIB}/redis/event.pyo
${PYSITELIB}/redis/exceptions.py
${PYSITELIB}/redis/exceptions.pyc
${PYSITELIB}/redis/exceptions.pyo
@@ -202,6 +210,7 @@ ${PYSITELIB}/redis/lock.pyo
${PYSITELIB}/redis/ocsp.py
${PYSITELIB}/redis/ocsp.pyc
${PYSITELIB}/redis/ocsp.pyo
+${PYSITELIB}/redis/py.typed
${PYSITELIB}/redis/retry.py
${PYSITELIB}/redis/retry.pyc
${PYSITELIB}/redis/retry.pyo
Index: pkgsrc/databases/py-redis/distinfo
diff -u pkgsrc/databases/py-redis/distinfo:1.45 pkgsrc/databases/py-redis/distinfo:1.46
--- pkgsrc/databases/py-redis/distinfo:1.45 Mon Aug 5 07:46:51 2024
+++ pkgsrc/databases/py-redis/distinfo Thu May 22 18:45:57 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.45 2024/08/05 07:46:51 adam Exp $
+$NetBSD: distinfo,v 1.46 2025/05/22 18:45:57 adam Exp $
-BLAKE2s (redis-5.0.8.tar.gz) = 72d1fafbd36039dc721d979414050e5247a4cbec8901dc7eadf4a83d9478b6dd
-SHA512 (redis-5.0.8.tar.gz) = d262b55a47b86f6a46cca7a582b3d5736d5ffb70b481c176ea9942779e97a33df3c397f4ce7afa6bea0d1e1e7f3a762e9a67a9bad265355621dd0b00ba714c73
-Size (redis-5.0.8.tar.gz) = 4595651 bytes
+BLAKE2s (redis-6.1.0.tar.gz) = c797cdcf759b48ee26cba6739ccc52d17f6933b8a9f422736a06b0f638df36d6
+SHA512 (redis-6.1.0.tar.gz) = 6735058043327803f5b3b0c1fb6008cbf6b755c93e2ed89eec8106d65cf74feb3de459d7c658c8614c9c399a4ff4ac02dae98c125d9815fc2d7151f9fcb4d3b8
+Size (redis-6.1.0.tar.gz) = 4629300 bytes
Home |
Main Index |
Thread Index |
Old Index