Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DFA7884E72 for ; Wed, 27 Sep 2023 12:13:01 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id Nzh6YXl2y5tv for ; Wed, 27 Sep 2023 12:13:01 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 163E584D08 for ; Wed, 27 Sep 2023 12:13:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 630DFFBDB; Wed, 27 Sep 2023 12:12:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1695816730193570" MIME-Version: 1.0 Date: Wed, 27 Sep 2023 12:12:10 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/databases/py-redis To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230927121210.630DFFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1695816730193570 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Wed Sep 27 12:12:10 UTC 2023 Modified Files: pkgsrc/databases/py-redis: Makefile distinfo Log Message: py-redis: updated to 5.0.1 5.0.1 🚀 New Features Provide aclose() / close() for classes requiring lifetime management Add support for ModuleCommands in cluster Add support for multiple values in RPUSHX Add Redis.from_pool() class method, for explicitly owning and closing a ConnectionPool 🐛 Bug Fixes Fixing monitor parsing for messages containing specific substrings Cluster determine slot command name need to be upper Support timeout = 0 in search query Fix async sentinel: add push_request keyword argument to read_response Fix protocol checking for search commands Fix: SentinelManagedConnection.read_response() got an unexpected keyword argument 'push_request' Fix: automatically close connection pool for async Sentinel Save a reference to created async tasks, to avoid tasks potentially disappearing Avoid reference cycling by the garbage collector during response reading 🧰 Maintenance Type hint improvements Replace clear_connect_callbacks with _deregister_connect_callback Async fixes, remove del and other things Add pagination, sorting and grouping examples to search json example Remove process-id checks from asyncio. Asyncio and fork() does not mix. Fix resource usage and cleanup Mocks in the unit tests Remove mentions of tox Add 7.2 to supported Redis versions Fix resource warnings in unit tests Fix typo in redis-stream-example.ipynb Deprecate RedisGraph Fix redis 7.2.0 tests Fix test_scorer (search) To generate a diff of this commit: cvs rdiff -u -r1.40 -r1.41 pkgsrc/databases/py-redis/Makefile cvs rdiff -u -r1.37 -r1.38 pkgsrc/databases/py-redis/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1695816730193570 Content-Disposition: inline Content-Length: 1571 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/py-redis/Makefile diff -u pkgsrc/databases/py-redis/Makefile:1.40 pkgsrc/databases/py-redis/Makefile:1.41 --- pkgsrc/databases/py-redis/Makefile:1.40 Fri Aug 25 13:46:56 2023 +++ pkgsrc/databases/py-redis/Makefile Wed Sep 27 12:12:10 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.40 2023/08/25 13:46:56 adam Exp $ +# $NetBSD: Makefile,v 1.41 2023/09/27 12:12:10 adam Exp $ -DISTNAME= redis-5.0.0 +DISTNAME= redis-5.0.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_PYPI:=r/redis/} Index: pkgsrc/databases/py-redis/distinfo diff -u pkgsrc/databases/py-redis/distinfo:1.37 pkgsrc/databases/py-redis/distinfo:1.38 --- pkgsrc/databases/py-redis/distinfo:1.37 Fri Aug 25 13:46:56 2023 +++ pkgsrc/databases/py-redis/distinfo Wed Sep 27 12:12:10 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.37 2023/08/25 13:46:56 adam Exp $ +$NetBSD: distinfo,v 1.38 2023/09/27 12:12:10 adam Exp $ -BLAKE2s (redis-5.0.0.tar.gz) = 6a244be8726566774179580c89899e8263c7b9f548d07ecb8a97e8c3d8decf5f -SHA512 (redis-5.0.0.tar.gz) = cfaddede00d5ae7367c2646a63ad544b219e0e608935879e0c9be770215cd05196fa3b96395760a1bf48b95435350bb85037ac3aa49ba3ae700487de4ab5545b -Size (redis-5.0.0.tar.gz) = 4576790 bytes +BLAKE2s (redis-5.0.1.tar.gz) = 089087ab0656d04def676a29ea6cc9f7237f67fde517bff35feff36f48566352 +SHA512 (redis-5.0.1.tar.gz) = 74501f1a3816be43dc138284811f2ee18df2b43ea3f8c1a235846cd8e3a3b283f9e53a8ba5f9a38cc40cc891869c8783e1d1ab38fe8ad748308f729242e8a40b +Size (redis-5.0.1.tar.gz) = 4578353 bytes --_----------=_1695816730193570--