Received: by mail.netbsd.org (Postfix, from userid 605) id 2D05884EBE; Tue, 9 May 2023 05:25:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5A74B84E83 for ; Tue, 9 May 2023 05:25:52 +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 qbF6ZUMqA9vS for ; Tue, 9 May 2023 05:25:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id B257B84CE3 for ; Tue, 9 May 2023 05:25:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A4852FA87; Tue, 9 May 2023 05:25:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1683609951181090" MIME-Version: 1.0 Date: Tue, 9 May 2023 05:25:51 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/databases/py-redis To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230509052551.A4852FA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1683609951181090 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Tue May 9 05:25:51 UTC 2023 Modified Files: pkgsrc/databases/py-redis: Makefile distinfo Log Message: py-redis: updated to 4.5.5 4.5.5 🚀 New Features Add support for CLIENT NO-TOUCH Add support for CLUSTER MYSHARDID Add "address_remap" feature to RedisCluster Add WITHSCORES argument to ZREVRANK command Improve error output for master discovery 🐛 Bug Fixes Fix XADD: allow non negative maxlen Fix create single connection client from url Optionally disable disconnects in read_response Fix SLOWLOG GET return value Fix potential race condition during disconnection Return response in case of KeyError Fix incorrect usage of once flag in async Sentinel Fix memory leak caused by hiredis in asyncio case Really do not use asyncio's timeout lib before 3.11.2 🧰 Maintenance Clean PytestUnraisableExceptionWarning from asycio client Add RedisCluster.remap_host_port, Update tests for CWE 404 Updated AWS Elasticache IAM connection example Update CONTRIBUTING guidelines Fix ClusterCommandProtocol type Fix TOPK list example. Improving vector similarity search example Update example of Redisearch creating index To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 pkgsrc/databases/py-redis/Makefile cvs rdiff -u -r1.34 -r1.35 pkgsrc/databases/py-redis/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1683609951181090 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.37 pkgsrc/databases/py-redis/Makefile:1.38 --- pkgsrc/databases/py-redis/Makefile:1.37 Thu Mar 30 07:11:22 2023 +++ pkgsrc/databases/py-redis/Makefile Tue May 9 05:25:51 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.37 2023/03/30 07:11:22 adam Exp $ +# $NetBSD: Makefile,v 1.38 2023/05/09 05:25:51 adam Exp $ -DISTNAME= redis-4.5.4 +DISTNAME= redis-4.5.5 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.34 pkgsrc/databases/py-redis/distinfo:1.35 --- pkgsrc/databases/py-redis/distinfo:1.34 Thu Mar 30 07:11:22 2023 +++ pkgsrc/databases/py-redis/distinfo Tue May 9 05:25:51 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.34 2023/03/30 07:11:22 adam Exp $ +$NetBSD: distinfo,v 1.35 2023/05/09 05:25:51 adam Exp $ -BLAKE2s (redis-4.5.4.tar.gz) = 7f706ea786573f4402f85d2e8772f6fa8268b0fd188ddc552613410699684291 -SHA512 (redis-4.5.4.tar.gz) = 2d534a2bff52273271bca74eb59029a94b4b32776a4106a521cd74cc6361c9b23cb2cca0080227675cce22aaea924f34f6c0f6fc43a84480a70451f95d9a594e -Size (redis-4.5.4.tar.gz) = 4552103 bytes +BLAKE2s (redis-4.5.5.tar.gz) = ac81d040db7240a49f8dbfc19f83be27aeaf131cbfa82aefd2ef067b9061f0af +SHA512 (redis-4.5.5.tar.gz) = 5864d29ef3fd0e01347e681cf34b301c026e1d852376e669696991f58502c4502527434acbb3f27676fd01c82f3b86b0eb05c2fe2746e2665ba3d03787ef8d60 +Size (redis-4.5.5.tar.gz) = 4557115 bytes --_----------=_1683609951181090--