From owner-svn-ports-all@freebsd.org Wed Feb 3 00:14:01 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2BE2CA9997A; Wed, 3 Feb 2016 00:14:01 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DFFFF1F52; Wed, 3 Feb 2016 00:14:00 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u130Dxin021376; Wed, 3 Feb 2016 00:13:59 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u130Dx2N021372; Wed, 3 Feb 2016 00:13:59 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201602030013.u130Dx2N021372@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Wed, 3 Feb 2016 00:13:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407923 - 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-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Feb 2016 00:14:01 -0000 Author: osa Date: Wed Feb 3 00:13:59 2016 New Revision: 407923 URL: https://svnweb.freebsd.org/changeset/ports/407923 Log: Upgrade from 3.0.5 to 3.0.7. --[ Redis 3.0.7 ] Release date: 28 jan 2016 Upgrade urgency MODERATE: this release fixes important Redis Cluster bugs. * [FIX] avg_ttl reporting in INFO improved. (Salvatore Sanfilippo) * [FIX] Redis Cluster address update (via gossip section) processing improved to avoid initiating inwanted handshakes. * [FIX] Many fixes to MIGRATE multiple keys implementation. The command could handle errors in a faulty way leading to crashes or other unexpected behaviors. MIGRATE command refactoring. (The analysis of the faulty conditions was conducted by Kevin McGehee. The fix was developed by Salvatore Sanfilippo) * [FIX] A Redis Cluster node crash was fixed because of wrong handling of node->slaveof pointers. (Reported by JackyWoo, fixed by Salvatore Sanfilippo) * [FIX] Fix redis-trib rebalance when nodes need to be left empty because the specified weight is zero. (Reported by Shahar Mor, fixed by Salvatore Sanfilippo) * [FIX] MIGRATE: Never send -ASK redirections for MIGRATE when there are open slots. Redis-trib and other cluster management utility must always be free to move keys between nodes about open slots, in order to reshard, fix the cluster configuration, and so forth. (Salvatore Sanfilippo) * [FIX] Redis-trib is now able to fix more errors. A new CLUSTER subcommand called BUMPEPOCH was introduced in order to support new modes for the "fix" subcommand. (Salvatore Sanfilippo) * [NEW] Cluster/Sentinel tests now use OSX leak to perform leak detection at the end of every unit. (Salvatore Sanfilippo) * [NEW] Detect and show server crashes during Cluster/Sentinel tests. (Salvatore Sanfilippo) * [NEW] More reliable Cluster/Sentinel test becuase of timing errors and -LOADING errors. (Salvatore Sanfilippo) --[ Redis 3.0.6 ] Release date: 18 Dec 2015 Upgrade urgency: MODERATE. We fixed a crash that happens very rarely, so updating does not hurt, but most users are unlikely to experience this condition because it requires some odd timing. However if you are a Redis Cluster user, upgrading is strongly adviced since this release includes very important improvements to Redis Cluster. * [FIX] lua_struct.c/getnum security issue fixed. (Luca Bruno discovered it, patched by Sun He and Chris Lamb) * [FIX] Redis Cluster replica migration fixed. See issue #2924 for details. (Salvatore Sanfilippo) * [FIX] Fix a race condition in processCommand() because of interactions with freeMemoryIfNeeded(). Details in issue #2948 and especially in the commit message d999f5a. (Race found analytically by Oran Agra, patch by Salvatore Sanfilippo) * [NEW] Backported from the upcoming Redis 3.2: MIGRATE now supports an extended multiple-keys pipelined mode, which is an order of magnitude faster. Redis Cluster now uses this mode in order to perform reshardings and rebalancings. (Salvatore Sanfilippo) * [NEW] Backported from the upcoming Redis 3.2: Redis Cluster has now support for rebalancing via the redis-trib rebalance command. Demo here: https://asciinema.org/a/0tw2e5740kouda0yhkqrm5790 Official documentation will be available ASAP. (Salvatore Sanfilippo) * [NEW] Redis Cluster redis-trib.rb new "info" subcommand. * [NEW] Redis Cluster tests improved. (Salvatore Sanfilippo) * [NEW] Log offending memory access address on SIGSEGV/SIGBUS (Salvatore Sanfilippo) 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 Wed Feb 3 00:00:18 2016 (r407922) +++ head/databases/redis-devel/Makefile Wed Feb 3 00:13:59 2016 (r407923) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 3.0.5 -PORTREVISION= 2 +DISTVERSION= 3.0.7 CATEGORIES= databases MASTER_SITES= http://download.redis.io/releases/ PKGNAMESUFFIX= -devel Modified: head/databases/redis-devel/distinfo ============================================================================== --- head/databases/redis-devel/distinfo Wed Feb 3 00:00:18 2016 (r407922) +++ head/databases/redis-devel/distinfo Wed Feb 3 00:13:59 2016 (r407923) @@ -1,2 +1,2 @@ -SHA256 (redis-3.0.5.tar.gz) = 4c176826eee909fbdc63db1c15adc22aab42d758043829e556f4331e6a5bd480 -SIZE (redis-3.0.5.tar.gz) = 1366160 +SHA256 (redis-3.0.7.tar.gz) = b2a791c4ea3bb7268795c45c6321ea5abcc24457178373e6a6e3be6372737f23 +SIZE (redis-3.0.7.tar.gz) = 1375200 Modified: head/databases/redis/Makefile ============================================================================== --- head/databases/redis/Makefile Wed Feb 3 00:00:18 2016 (r407922) +++ head/databases/redis/Makefile Wed Feb 3 00:13:59 2016 (r407923) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 3.0.5 -PORTREVISION= 2 +DISTVERSION= 3.0.7 CATEGORIES= databases MASTER_SITES= http://download.redis.io/releases/ Modified: head/databases/redis/distinfo ============================================================================== --- head/databases/redis/distinfo Wed Feb 3 00:00:18 2016 (r407922) +++ head/databases/redis/distinfo Wed Feb 3 00:13:59 2016 (r407923) @@ -1,2 +1,2 @@ -SHA256 (redis-3.0.5.tar.gz) = 4c176826eee909fbdc63db1c15adc22aab42d758043829e556f4331e6a5bd480 -SIZE (redis-3.0.5.tar.gz) = 1366160 +SHA256 (redis-3.0.7.tar.gz) = b2a791c4ea3bb7268795c45c6321ea5abcc24457178373e6a6e3be6372737f23 +SIZE (redis-3.0.7.tar.gz) = 1375200