Received: by mail.netbsd.org (Postfix, from userid 605) id 71F8284D72; Tue, 21 Feb 2023 19:23:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A304F84D60 for ; Tue, 21 Feb 2023 19:23:28 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id Zfgmj4k6deQq for ; Tue, 21 Feb 2023 19:23:28 +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 14A8984CE8 for ; Tue, 21 Feb 2023 19:23:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0E61AFA90; Tue, 21 Feb 2023 19:23:28 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1677007408105220" MIME-Version: 1.0 Date: Tue, 21 Feb 2023 19:23:28 +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: <20230221192328.0E61AFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1677007408105220 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Tue Feb 21 19:23:27 UTC 2023 Modified Files: pkgsrc/databases/py-redis: Makefile distinfo Log Message: py-redis: updated to 4.5.1 4.5.1 Bug Fixes Fix UnixDomainSocketConnection object has no attribute _command_packer 4.5.0 ๐Ÿงช Experimental Features Add TS.MGET example for OS Redis Cluster ๐Ÿš€ New Features Use hiredis::pack_command to serialized the commands. Add support for unlink in cluster pipeline ๐Ÿ› Bug Fixes Fix issue with pack_commands returning an empty byte sequence Async HiredisParser should finish parsing after a Connection.disconnect() Check for none, prior to raising exception Tuple function cannot be passed more than one argument Synchronise concurrent command calls to single-client to single-client mode ๐Ÿงฐ Maintenance Add TS.MGET example for OS Redis Cluster Documentation changes: typo fix Simplify the sync SocketBuffer, add type hints Add missing Union type in method StreamCommands.xclaim() Change redismod docker to redis-stack-server To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 pkgsrc/databases/py-redis/Makefile cvs rdiff -u -r1.30 -r1.31 pkgsrc/databases/py-redis/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1677007408105220 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.33 pkgsrc/databases/py-redis/Makefile:1.34 --- pkgsrc/databases/py-redis/Makefile:1.33 Thu Jan 12 10:22:14 2023 +++ pkgsrc/databases/py-redis/Makefile Tue Feb 21 19:23:27 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.33 2023/01/12 10:22:14 adam Exp $ +# $NetBSD: Makefile,v 1.34 2023/02/21 19:23:27 adam Exp $ -DISTNAME= redis-4.4.2 +DISTNAME= redis-4.5.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.30 pkgsrc/databases/py-redis/distinfo:1.31 --- pkgsrc/databases/py-redis/distinfo:1.30 Thu Jan 12 10:22:14 2023 +++ pkgsrc/databases/py-redis/distinfo Tue Feb 21 19:23:27 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.30 2023/01/12 10:22:14 adam Exp $ +$NetBSD: distinfo,v 1.31 2023/02/21 19:23:27 adam Exp $ -BLAKE2s (redis-4.4.2.tar.gz) = 2aeb7b3837c129a254bafeab4d385a4371be5c70c3e53d404d98e860925fb080 -SHA512 (redis-4.4.2.tar.gz) = 19a8ea299e363e94bfe87ada44f44d10a5d5eb283c3e5cea156b15f7edceb39a09687763301255bd9684dabf2257ad3f5cafecd2bbda64e6ac619d9852ca7db5 -Size (redis-4.4.2.tar.gz) = 4548236 bytes +BLAKE2s (redis-4.5.1.tar.gz) = 2c4fb7b102c284e3e5b8b1a18c71f56af3e70e463643b6d1a54ec6f21fd7923f +SHA512 (redis-4.5.1.tar.gz) = 6a4c620236f5ddb6d4afbe5b09bcc7734331a7e9f9fd6302570f27cbf357e0d5fddd38ce55e8ba298fd4dedc58bccde55ced0d5a0a3067d42246d9f14063e16c +Size (redis-4.5.1.tar.gz) = 4550408 bytes --_----------=_1677007408105220--