Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 20E7D84EE5 for ; Tue, 4 Jul 2023 10:29:58 +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 o-zUAy-_MTPK for ; Tue, 4 Jul 2023 10:29:57 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8A4B684EA4 for ; Tue, 4 Jul 2023 10:29:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 839AAFA89; Tue, 4 Jul 2023 10:29:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168846659757130" MIME-Version: 1.0 Date: Tue, 4 Jul 2023 10:29:57 +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: <20230704102957.839AAFA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_168846659757130 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Tue Jul 4 10:29:57 UTC 2023 Modified Files: pkgsrc/databases/py-redis: Makefile distinfo Log Message: py-redis: updated to 4.6.0 4.6.0 ๐Ÿงช Experimental Features Support JSON.MERGE command Support JSON.MSET command ๐Ÿš€ New Features Extract abstract async connection class Add support for WAITAOF Introduce OutOfMemoryError exception for Redis write command rejections due to OOM errors Add WITHSCORE argument to ZRANK ๐Ÿ› Bug Fixes Fix dead weakref in sentinel connection causing ReferenceError Fix Key Error in parse_xinfo_stream Remove unnecessary __del__ handlers Added support for missing argument to SentinelManagedConnection.read_response() ๐Ÿงฐ Maintenance Fix type hint for retry_on_error in async cluster Clean up documents and fix some redirects Add unit tests for the connect method of all Redis connection classes Docstring formatting fix To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39 pkgsrc/databases/py-redis/Makefile cvs rdiff -u -r1.35 -r1.36 pkgsrc/databases/py-redis/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168846659757130 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.38 pkgsrc/databases/py-redis/Makefile:1.39 --- pkgsrc/databases/py-redis/Makefile:1.38 Tue May 9 05:25:51 2023 +++ pkgsrc/databases/py-redis/Makefile Tue Jul 4 10:29:57 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.38 2023/05/09 05:25:51 adam Exp $ +# $NetBSD: Makefile,v 1.39 2023/07/04 10:29:57 adam Exp $ -DISTNAME= redis-4.5.5 +DISTNAME= redis-4.6.0 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.35 pkgsrc/databases/py-redis/distinfo:1.36 --- pkgsrc/databases/py-redis/distinfo:1.35 Tue May 9 05:25:51 2023 +++ pkgsrc/databases/py-redis/distinfo Tue Jul 4 10:29:57 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.35 2023/05/09 05:25:51 adam Exp $ +$NetBSD: distinfo,v 1.36 2023/07/04 10:29:57 adam Exp $ -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 +BLAKE2s (redis-4.6.0.tar.gz) = 5d63265565c2716c554a55783284764a0e2c3bc661e96e89ac5852b8b7e05b3f +SHA512 (redis-4.6.0.tar.gz) = a9c4195fcbbdb7cbe3dadeb39a1fb41f9152701a58ff7bd25d09131aacc2030219a58756fbd05a76d673f8299d93e4577cd1d46c83e78f28dbf869335f0794d6 +Size (redis-4.6.0.tar.gz) = 4561721 bytes --_----------=_168846659757130--