Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 14 Sep 2015 23:42:00 +0000 (UTC)
From:      "Sergey A. Osokin" <osa@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r396943 - in head/databases: redis redis-devel
Message-ID:  <201509142342.t8ENg0p2037109@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: osa
Date: Mon Sep 14 23:41:59 2015
New Revision: 396943
URL: https://svnweb.freebsd.org/changeset/ports/396943

Log:
  Upgrade from 3.0.3 to 3.0.4.
  
  <ChangeLog>
  
  Upgrade urgency: HIGH for Redis and Sentinel. However note that in order to
                   fix certain replication bugs, the replication internals were
                   modified in a very heavy way. So while this release is
                   conceptually saner, it may contain regressions. For this
                   reason, before the release, QA activities were performed by
                   me (antirez) and Redis Labs and no evident bug was found.
  
  * [FIX] A number of bugs related to replication PSYNC and the (yet experimental)
          diskless replication feature were fixed. The bugs could lead to
          inconsistency between masters and slaves. (Salvatore Sanfilippo, Oran
          Agra fixed the issue found by Yuval Inbar)
  * [FIX] A replication bug in the context of PSYNC partial resynchonization was
          found and fixed. This bug happens even when diskless replication is off
          in the case different slaves connect at different times while the master
          is creating an RDB file, and later a partial resynchronization is
          attempted by a slave that connected not as the first one. (Salvatore
          Sanfilippo, Oran Agra)
  * [FIX] Chained replication and PSYNC interactions leading to potential stale
          chained slaves data set, see issue #2694. (Salvatore Sanfilippo fixed
          an issue reported by "GeorgeBJ" user at Github)
  * [FIX] redis-cli --scan iteration fixed when returned cursor overflows
          32 bit signed integer. (Ofir Luzon, Yuval Inbar)
  * [FIX] Senitnel: fixed a bug during the master switch process, where for a
          failed conditional check, the new configuration is rewritten, during
          a small window of time, in a corrupted way where the master is
          also reported to be one of the slaves. This bug is rare to trigger
          but apparently it happens in the wild, and the effect is to see
          a replication loop where the master will try to replicate with itself.
          A detailed explanation of the bug and its effects can be found in
          the commit message here:
          https://github.com/antirez/redis/commit/c20218eb5770b2cafb12bc7092313b8358fedc0a.
          The bug was found by Jan-Erik Rediger using a static analyzer and
          fixed by Salvatore Sanfilippo.
  * [FIX] Sentinel lack of arity checks for certain commands.
          (Rogerio Goncalves, Salvatore Sanfilippo)
  
  * [NEW] Replication internals rewritten in order to be more resistant to bugs.
          The replication handshake in the slave side was rewritten as a non
          blocking state machine. (Salvatore Sanfilippo, Oran Agra)
  * [NEW] New "replication capabilities" feature introduced in order to signal
          from the master to the slave what are the features supported, so that
          the master can choose the kind of replication to start (diskless or
          not) when master and slave are of different versions. (Oran Agra,
          Salvatore Sanfilippo)
  * [NEW] Log clients details when SLAVEOF command is received. (Salvatore
          Sanfilippo with inputs from Nick Craver and Marc Gravell).
  
  </ChangeLog>

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 Sep 14 23:36:43 2015	(r396942)
+++ head/databases/redis-devel/Makefile	Mon Sep 14 23:41:59 2015	(r396943)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	redis
-DISTVERSION=	3.0.3
+DISTVERSION=	3.0.4
 CATEGORIES=	databases
 MASTER_SITES=	http://download.redis.io/releases/
 PKGNAMESUFFIX=	-devel

Modified: head/databases/redis-devel/distinfo
==============================================================================
--- head/databases/redis-devel/distinfo	Mon Sep 14 23:36:43 2015	(r396942)
+++ head/databases/redis-devel/distinfo	Mon Sep 14 23:41:59 2015	(r396943)
@@ -1,2 +1,2 @@
-SHA256 (redis-3.0.3.tar.gz) = 1d08fa665b16d0950274dfbd47fbbcf3485e43e901021338640a0334666e9da5
-SIZE (redis-3.0.3.tar.gz) = 1360959
+SHA256 (redis-3.0.4.tar.gz) = a35e90ad581925134aa0fc92e969cc825f5cdee8e13c36a87d4d6995316112cf
+SIZE (redis-3.0.4.tar.gz) = 1364993

Modified: head/databases/redis/Makefile
==============================================================================
--- head/databases/redis/Makefile	Mon Sep 14 23:36:43 2015	(r396942)
+++ head/databases/redis/Makefile	Mon Sep 14 23:41:59 2015	(r396943)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	redis
-DISTVERSION=	3.0.3
+DISTVERSION=	3.0.4
 CATEGORIES=	databases
 MASTER_SITES=	http://download.redis.io/releases/
 

Modified: head/databases/redis/distinfo
==============================================================================
--- head/databases/redis/distinfo	Mon Sep 14 23:36:43 2015	(r396942)
+++ head/databases/redis/distinfo	Mon Sep 14 23:41:59 2015	(r396943)
@@ -1,2 +1,2 @@
-SHA256 (redis-3.0.3.tar.gz) = 1d08fa665b16d0950274dfbd47fbbcf3485e43e901021338640a0334666e9da5
-SIZE (redis-3.0.3.tar.gz) = 1360959
+SHA256 (redis-3.0.4.tar.gz) = a35e90ad581925134aa0fc92e969cc825f5cdee8e13c36a87d4d6995316112cf
+SIZE (redis-3.0.4.tar.gz) = 1364993



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509142342.t8ENg0p2037109>