diff options
author | osa <osa@FreeBSD.org> | 2013-05-04 01:38:24 +0800 |
---|---|---|
committer | osa <osa@FreeBSD.org> | 2013-05-04 01:38:24 +0800 |
commit | 62e4ecec1a689385c26c10a93465ef4314794fb3 (patch) | |
tree | ce5efd238ab296578460be790f15242b79feef4e /databases | |
parent | 4dc7aec51c0139a567b17ce765ee681e76636738 (diff) | |
download | freebsd-ports-gnome-62e4ecec1a689385c26c10a93465ef4314794fb3.tar.gz freebsd-ports-gnome-62e4ecec1a689385c26c10a93465ef4314794fb3.tar.zst freebsd-ports-gnome-62e4ecec1a689385c26c10a93465ef4314794fb3.zip |
Update from 2.6.11 to 2.6.13.
PR: 178124
<ChangeLog>
[ Redis 2.6.13 ]
UPGRADE URGENCY: MODERATE, nothing very critical but upgrading
is suggested if you experienced:
1) Strange issues with Lua scripting.
2) Not reconfigured reappearing master using Sentinel.
3) Server continusly trying to save on save error.
This version of Redis may also help with AOF and slow / busy
disks and latency issues.
* [FIX] Throttle BGSAVE attempt on saving error.
* [FIX] redis-cli: raise error on bad command line switch.
* [FIX] Redis/Jemalloc Gitignore were too aggressive.
* [FIX] Test: fix RDB test checking file permissions.
* [FIX] Sentinel: always redirect on master->slave transition.
* [FIX] Lua updated to version 5.1.5. Fixes rare scripting issues.
* [NEW] AOF: improved latency figures with slow/busy disks.
* [NEW] Sentinel: turn old master into a slave when it comes back.
* [NEW] More explicit panic message on out of memory.
* [NEW] redis-cli: --latency-history mode implemented.
[ Redis 2.6.12 ]
UPGRADE URGENCY: MODERATE, nothing very critical but a few non trivial bugs.
* [BUGFIX] redis-cli --bigkeys: don't crash with empty DB.
* [BUGFIX] stop-writes-on-bgsave-error now works in redis.conf
* [BUGFIX] Don't crash at startup if RDB is there but can't be opened.
* [BUGFIX] Initial value for master_link_down_since_seconds is now huge.
* [BUGFIX] Allow SELECT while loading the DB.
* [BUGFIX] Don't replicate/AOF an empty MULTI/EXEC if the transaction
is empty or containing just read-only commands.
* [BUGFIX] EXPIRE should not be able to resurrect keys (see issue #1026).
* [IMPROVED] Extended SET back ported from Redis 2.8 / unstable
See http://redis.io/commands/set for more information.
* [IMPROVED] Test suite improved.
</ChangeLog>
Diffstat (limited to 'databases')
-rw-r--r-- | databases/redis-devel/Makefile | 6 | ||||
-rw-r--r-- | databases/redis-devel/distinfo | 4 | ||||
-rw-r--r-- | databases/redis/Makefile | 6 | ||||
-rw-r--r-- | databases/redis/distinfo | 4 |
4 files changed, 8 insertions, 12 deletions
diff --git a/databases/redis-devel/Makefile b/databases/redis-devel/Makefile index 78ad26b2a7a5..b9ef866ca37b 100644 --- a/databases/redis-devel/Makefile +++ b/databases/redis-devel/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 2.6.11 +DISTVERSION= 2.6.13 CATEGORIES= databases MASTER_SITES= GOOGLE_CODE PKGNAMESUFFIX= -devel @@ -83,9 +83,7 @@ post-install: [ -d ${d} ] || ${MKDIR} ${d} && ${CHOWN} ${USERS}:${GROUPS} ${d} .endfor -test: build +regression-test: build @cd ${WRKSRC} && ${TCLSH} tests/test_helper.tcl -regression-test: test - .include <bsd.port.mk> diff --git a/databases/redis-devel/distinfo b/databases/redis-devel/distinfo index 4ab458675470..b123fd2385e8 100644 --- a/databases/redis-devel/distinfo +++ b/databases/redis-devel/distinfo @@ -1,2 +1,2 @@ -SHA256 (redis-2.6.11.tar.gz) = b0644669849a130659cf8dd48965cf116e4fe64a5bb86a239ea078d7464b6968 -SIZE (redis-2.6.11.tar.gz) = 993744 +SHA256 (redis-2.6.13.tar.gz) = 3b9439636c58ca06bee538a0f7298e02a33fcf98b8fa845c0b0cf8567751e948 +SIZE (redis-2.6.13.tar.gz) = 994331 diff --git a/databases/redis/Makefile b/databases/redis/Makefile index 1727d7f6391b..b1cfd9c1671c 100644 --- a/databases/redis/Makefile +++ b/databases/redis/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 2.6.11 +DISTVERSION= 2.6.13 CATEGORIES= databases MASTER_SITES= GOOGLE_CODE @@ -82,9 +82,7 @@ post-install: [ -d ${d} ] || ${MKDIR} ${d} && ${CHOWN} ${USERS}:${GROUPS} ${d} .endfor -test: build +regression-test: build @cd ${WRKSRC} && ${TCLSH} tests/test_helper.tcl -regression-test: test - .include <bsd.port.mk> diff --git a/databases/redis/distinfo b/databases/redis/distinfo index 4ab458675470..b123fd2385e8 100644 --- a/databases/redis/distinfo +++ b/databases/redis/distinfo @@ -1,2 +1,2 @@ -SHA256 (redis-2.6.11.tar.gz) = b0644669849a130659cf8dd48965cf116e4fe64a5bb86a239ea078d7464b6968 -SIZE (redis-2.6.11.tar.gz) = 993744 +SHA256 (redis-2.6.13.tar.gz) = 3b9439636c58ca06bee538a0f7298e02a33fcf98b8fa845c0b0cf8567751e948 +SIZE (redis-2.6.13.tar.gz) = 994331 |