Received: by mail.netbsd.org (Postfix, from userid 605) id 8A71F84D6B; Mon, 9 Jan 2023 11:27:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BC00884D47 for ; Mon, 9 Jan 2023 11:27:03 +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 rdJ2aDcQWKNF for ; Mon, 9 Jan 2023 11:27:03 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2B65E84CD9 for ; Mon, 9 Jan 2023 11:27:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2528EFA90; Mon, 9 Jan 2023 11:27:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1673263623257910" MIME-Version: 1.0 Date: Mon, 9 Jan 2023 11:27:03 +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: <20230109112703.2528EFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1673263623257910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Mon Jan 9 11:27:03 UTC 2023 Modified Files: pkgsrc/databases/py-redis: Makefile distinfo Log Message: py-redis: updated to 4.4.1 Changes 4.4.1 🚀 New Features Add dialect to FT.AGGREGATE Add support for resetchannels in ACL SETUSER Allow EVAL_RO and EVALSHA_RO to be routed to read replica Add timeout parameter for SentinelManagedConnection Add TIMEOUT to query class Add support for certain LATENCY commands 🐛 Bug Fixes Add type checking to __eq__ in graph classes Accept str for ex parameter in set command Fix for Unhandled exception related to self.host with unix socket Make PythonParser resumable 🧰 Maintenance Fix incorrect _disconnect_raise docstring Remove DeprecationWarning by replace get_event_loop with get_running_loop Fix AttributeError when trying to split library version Including startup instructions via redis-stack docker Fix JSON.ARRINDEX test Add OpenTelemetry example with Uptrace backend Switch docs to furo theme Combine auto-concatenated strings Updating graph tests to support new execution plan Raising NotImplementedError for certain CLUSTER and LATENCY commands To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 pkgsrc/databases/py-redis/Makefile cvs rdiff -u -r1.28 -r1.29 pkgsrc/databases/py-redis/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1673263623257910 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.31 pkgsrc/databases/py-redis/Makefile:1.32 --- pkgsrc/databases/py-redis/Makefile:1.31 Thu Dec 8 09:01:30 2022 +++ pkgsrc/databases/py-redis/Makefile Mon Jan 9 11:27:02 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.31 2022/12/08 09:01:30 adam Exp $ +# $NetBSD: Makefile,v 1.32 2023/01/09 11:27:02 adam Exp $ -DISTNAME= redis-4.4.0 +DISTNAME= redis-4.4.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.28 pkgsrc/databases/py-redis/distinfo:1.29 --- pkgsrc/databases/py-redis/distinfo:1.28 Thu Dec 8 09:01:30 2022 +++ pkgsrc/databases/py-redis/distinfo Mon Jan 9 11:27:02 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.28 2022/12/08 09:01:30 adam Exp $ +$NetBSD: distinfo,v 1.29 2023/01/09 11:27:02 adam Exp $ -BLAKE2s (redis-4.4.0.tar.gz) = 611c8c5b3a6d4afa48f4208784f7e10f5f78adc22e8668810aa317e005f83d23 -SHA512 (redis-4.4.0.tar.gz) = 935f14960f55705a97b4530d8555486947a9dae21de403762ac6fd52e78d0a06f8f024a9d62a576e5831e3b0bac317a3d1d7693e871adbee41403aa1b44f48b4 -Size (redis-4.4.0.tar.gz) = 4544461 bytes +BLAKE2s (redis-4.4.1.tar.gz) = 24c92b8efe3e3d613cf8586427c470106a81954a1b9b1993363d29dba9db0fc7 +SHA512 (redis-4.4.1.tar.gz) = be377afc0298063377b58eeba8a85bbbc53df23841719c0ce944223e383a4e7d20d32637b210a461a783bfee01e8a8ecebf76fd2e51b9489e983c6ba4563fc1a +Size (redis-4.4.1.tar.gz) = 4547425 bytes --_----------=_1673263623257910--