From owner-svn-ports-head@FreeBSD.ORG Mon Feb 17 22:00:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9077AC31; Mon, 17 Feb 2014 22:00:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6CA68162B; Mon, 17 Feb 2014 22:00:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1HM0pVF072609; Mon, 17 Feb 2014 22:00:51 GMT (envelope-from osa@svn.freebsd.org) Received: (from osa@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1HM0oqa072604; Mon, 17 Feb 2014 22:00:50 GMT (envelope-from osa@svn.freebsd.org) Message-Id: <201402172200.s1HM0oqa072604@svn.freebsd.org> From: "Sergey A. Osokin" Date: Mon, 17 Feb 2014 22:00:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r344825 - in head/databases: redis redis-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 22:00:51 -0000 Author: osa Date: Mon Feb 17 22:00:50 2014 New Revision: 344825 URL: http://svnweb.freebsd.org/changeset/ports/344825 QAT: https://qat.redports.org/buildarchive/r344825/ Log: Upgrade from 2.8.4 to 2.8.6. --[ Redis 2.8.6 ] Release date: 13 Feb 2014 # UPGRADE URGENCY: HIGH for Redis, LOW for Sentinel. Redis users using Lua scripts with EVALSHA and attached slaves and/or AOF persistence should consider upgrading ASAP. * [FIX] Fixed an critical EVALSHA script cache bug: scripts executed may not propagate to AOF / Slaves correctly under certain conditions. See issue #1549 at Github for more information. * [FIX] Fixed multiple bugs resulting into closing the link with master or slave during replication without good reasons. This will result in useless resynchronizations, or infinite loops where the replication link can't be established. * [FIX] Don't count the time needed to populate the buffers of clients waiting in MONITOR mode when populating the Slow Log entries. * [NEW] AOF write errors (like no space on device) no longer abort Redis if the fsync policy is none or every second. The database enters a read-only mode where every write is refused with an error. Normal operations are restored as soon as Redis is able to append again data to the AOF file. * [NEW] Sentinel now accepts SHUTDOWN command. --[ Redis 2.8.5 ] Release date: 4 Feb 2014 # UPGRADE URGENCY: HIGH for Redis, LOW for Sentinel. Redis users using Lua scripts with expires, and Redis users relying on the ability of Redis to block writes on RDB saving errors should plan to upgrade ASAP. * [FIX] Fixed a replication bug caused by Lua scripts + expired keys: keys could expire in the middle of scripts causing non-deterministic behavior. * [FIX] MISCONFIG error if condition fixed, the server was no longer able to stop writes on RDB misconfiguration after this error was introduced. * [FIX] REDIS_AOF_REWRITE_MIN_SIZE is now 64mb like example redis.conf default. * [FIX] Perform fflush() before fsync() in rio.c (bug without actual effects). * [FIX] Don't log MONITOR clients as disconnecting slaves. * [FIX] SENTINEL MASTER arity check fixed. Crashed the Sentinel instance when the command was given without arguments. * [NEW] Allow CONFIG and SHUTDOWN while in stale-slave state. * [NEW] Support for configurable TCP listen(2) backlog size. * [NEW] redis-cli supports SCAN via the --scan and --pattern options. * [NEW] SENTINEL SET master quorum via runtime API implemented. Modified: head/databases/redis-devel/Makefile head/databases/redis-devel/distinfo head/databases/redis/Makefile head/databases/redis/distinfo Modified: head/databases/redis-devel/Makefile ============================================================================== --- head/databases/redis-devel/Makefile Mon Feb 17 21:37:05 2014 (r344824) +++ head/databases/redis-devel/Makefile Mon Feb 17 22:00:50 2014 (r344825) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 2.8.4 +DISTVERSION= 2.8.6 CATEGORIES= databases MASTER_SITES= http://download.redis.io/releases/ PKGNAMESUFFIX= -devel Modified: head/databases/redis-devel/distinfo ============================================================================== --- head/databases/redis-devel/distinfo Mon Feb 17 21:37:05 2014 (r344824) +++ head/databases/redis-devel/distinfo Mon Feb 17 22:00:50 2014 (r344825) @@ -1,2 +1,2 @@ -SHA256 (redis-2.8.4.tar.gz) = 6b6602321536401b8b46aa05ec509141506b689b420675685ffe147ae08c0c86 -SIZE (redis-2.8.4.tar.gz) = 1048914 +SHA256 (redis-2.8.6.tar.gz) = efd0c9cb8d2696db44d8cb8309fed96607f68b93bb126615e64bff364e716658 +SIZE (redis-2.8.6.tar.gz) = 1052017 Modified: head/databases/redis/Makefile ============================================================================== --- head/databases/redis/Makefile Mon Feb 17 21:37:05 2014 (r344824) +++ head/databases/redis/Makefile Mon Feb 17 22:00:50 2014 (r344825) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 2.8.4 +DISTVERSION= 2.8.6 CATEGORIES= databases MASTER_SITES= http://download.redis.io/releases/ Modified: head/databases/redis/distinfo ============================================================================== --- head/databases/redis/distinfo Mon Feb 17 21:37:05 2014 (r344824) +++ head/databases/redis/distinfo Mon Feb 17 22:00:50 2014 (r344825) @@ -1,2 +1,2 @@ -SHA256 (redis-2.8.4.tar.gz) = 6b6602321536401b8b46aa05ec509141506b689b420675685ffe147ae08c0c86 -SIZE (redis-2.8.4.tar.gz) = 1048914 +SHA256 (redis-2.8.6.tar.gz) = efd0c9cb8d2696db44d8cb8309fed96607f68b93bb126615e64bff364e716658 +SIZE (redis-2.8.6.tar.gz) = 1052017