Received: by mail.netbsd.org (Postfix, from userid 605) id 995F184EA0; Tue, 2 Apr 2019 07:43:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 20A4A84E9C for ; Tue, 2 Apr 2019 07:43:08 +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 WbQf7PBcVrHa for ; Tue, 2 Apr 2019 07:43:07 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 915BC84C81 for ; Tue, 2 Apr 2019 07:43:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8C3F5FB16; Tue, 2 Apr 2019 07:43:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_155419098712100" MIME-Version: 1.0 Date: Tue, 2 Apr 2019 07:43:07 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/databases/redis To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20190402074307.8C3F5FB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_155419098712100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Apr 2 07:43:07 UTC 2019 Modified Files: pkgsrc/databases/redis: Makefile distinfo Log Message: redis: updated to 5.0.4 Redis 5.0.4 Upgrade urgency HIGH: This release fixes several Redis stability issues. Dear Redis users, this release includes a number of fixes for bugs that may result in Redis crashing in special conditions (not normal usage, but specific artificial conditions), fixes to certain Redis behaviors especially around Redis streams, and finally a set of new APIs for Redis Modules. Specifically: * Hyperloglog different coding errors leading to potential crashes were fixed. * A replication bug leading to a potential crash in case of plain misuse of handshake commands was fixed. * XCLAIM command incrementing of number of deliveries was fixed. * LFU field management in objects was improved. * A potential overflow in the redis-check-aof was fixed. * A memory leak in case of API misuse was fixed. * ZPOP* behavior when count is 0 is fixed. * A few redis-cli --cluster bugs were fixed, plus a few improvements. * Many other smaller bugs. To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43 pkgsrc/databases/redis/Makefile \ pkgsrc/databases/redis/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_155419098712100 Content-Disposition: inline Content-Length: 1805 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/redis/Makefile diff -u pkgsrc/databases/redis/Makefile:1.42 pkgsrc/databases/redis/Makefile:1.43 --- pkgsrc/databases/redis/Makefile:1.42 Sat Dec 15 21:12:20 2018 +++ pkgsrc/databases/redis/Makefile Tue Apr 2 07:43:07 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.42 2018/12/15 21:12:20 wiz Exp $ +# $NetBSD: Makefile,v 1.43 2019/04/02 07:43:07 adam Exp $ -DISTNAME= redis-5.0.3 +DISTNAME= redis-5.0.4 CATEGORIES= databases MASTER_SITES= http://download.redis.io/releases/ Index: pkgsrc/databases/redis/distinfo diff -u pkgsrc/databases/redis/distinfo:1.42 pkgsrc/databases/redis/distinfo:1.43 --- pkgsrc/databases/redis/distinfo:1.42 Thu Dec 13 19:34:33 2018 +++ pkgsrc/databases/redis/distinfo Tue Apr 2 07:43:07 2019 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.42 2018/12/13 19:34:33 adam Exp $ +$NetBSD: distinfo,v 1.43 2019/04/02 07:43:07 adam Exp $ -SHA1 (redis-5.0.3.tar.gz) = a43c24ea6365482323b78e21752d610756efcc39 -RMD160 (redis-5.0.3.tar.gz) = 676d1db2d5e606047a8ed6a0ffdccbcea3aa89bc -SHA512 (redis-5.0.3.tar.gz) = 5915b14502438bf7c3f56e38640dda54b095bd87501aefa6e386c9cef48e8d1e625e980643d128d91b8cab26dd51d5d99ca66fa638dc04e5ba315fe43f11f58b -Size (redis-5.0.3.tar.gz) = 1959445 bytes +SHA1 (redis-5.0.4.tar.gz) = db4cad466db8fbde7c05131d72f526a2e860078a +RMD160 (redis-5.0.4.tar.gz) = 9b483e4b08553b075d037d2014714b7b77429339 +SHA512 (redis-5.0.4.tar.gz) = 336929c81a476e2a23a64f867823d70c3aab66fb0098eef2e61630be6522ff2f6af680169ffcae35d559758b2c6b56f88c5a953a538291fea886449cba33b8ad +Size (redis-5.0.4.tar.gz) = 1966337 bytes SHA1 (patch-redis.conf) = 528c28e2b7483eb20ccab8f2ab9543822792f016 SHA1 (patch-src_Makefile) = 2c4f6d822980874cc9ff95d239040985fa364649 SHA1 (patch-src_hyperloglog.c) = 65a4a220ccd4282162c50293f4fe278a43b84239 --_----------=_155419098712100--