diff options
author | osa <osa@FreeBSD.org> | 2014-02-18 06:00:50 +0800 |
---|---|---|
committer | osa <osa@FreeBSD.org> | 2014-02-18 06:00:50 +0800 |
commit | 3e0daa396378cab64e230b6b42e4537c839e2782 (patch) | |
tree | 515cd0cbc034c97b2323acb2781943efbf957e23 /databases/redis-devel | |
parent | cecad88bdcb9e973503ba9f01c01acb30babcdd5 (diff) | |
download | freebsd-ports-gnome-3e0daa396378cab64e230b6b42e4537c839e2782.tar.gz freebsd-ports-gnome-3e0daa396378cab64e230b6b42e4537c839e2782.tar.zst freebsd-ports-gnome-3e0daa396378cab64e230b6b42e4537c839e2782.zip |
Upgrade from 2.8.4 to 2.8.6.
<ChangeLog>
--[ 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.
</ChangeLog>
Diffstat (limited to 'databases/redis-devel')
-rw-r--r-- | databases/redis-devel/Makefile | 2 | ||||
-rw-r--r-- | databases/redis-devel/distinfo | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/databases/redis-devel/Makefile b/databases/redis-devel/Makefile index b8033b61cfae..d4a177ec5f19 100644 --- a/databases/redis-devel/Makefile +++ b/databases/redis-devel/Makefile @@ -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 diff --git a/databases/redis-devel/distinfo b/databases/redis-devel/distinfo index 59ab5943f49f..991fc082fa20 100644 --- a/databases/redis-devel/distinfo +++ b/databases/redis-devel/distinfo @@ -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 |