Update from 2.6.0rc6 to 2.6.0rc7.

<ChangeLog>

UPGRADE URGENCY: HIGH

* [BUGFIX]   Theoretical bug in ziplist fixed.
* [BUGFIX]   Better out of memory handling (Log produced in log file).
* [BUGFIX]   Incrementally flush RDB file on slave side while performing the
             first synchronization with the master. This makes Redis less
             blocking in environments where disk I/O is slow.
* [BUGFIX]   Don't crash with Lua's redis.call() without arguments.
* [BUGFIX]   Don't crash after a big number of Lua calls on 32 bit systems
             because of a failed assertion.
* [BUGFIX]   Fix SORT behaviour when called from scripting.
* [BUGFIX]   Adjust slave PING period accordingly to REDIS_HZ define.
* [BUGFIX]   BITCOUNT: fix crash on overflowing arguments.
* [BUGFIX]   Return an error when SELECT argument is not an integer.
* [BUGFIX]   Blocking operations on lists were completely reimplemented for
             correctness. Now blocking list ops and pushes originated from
             Lua scripts will play well together and will be replicated
             and transmitted to the AOF correctly.
* [IMPROVED] Send async PING before starting replication to avoid blocking if
             master allows us to connect but it is actually not able to reply.
* [IMPROVED] Support slave-priority for Redis Sentinel.
* [IMPROVED] Hiredis library updated.

</ChangeLog>
This commit is contained in:
Sergey A. Osokin 2012-09-19 18:20:19 +00:00
parent 0e1f1543b2
commit ce693ff742
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=304537
3 changed files with 13 additions and 3 deletions

View file

@ -6,7 +6,7 @@
#
PORTNAME= redis
DISTVERSION= 2.6.0-rc6
DISTVERSION= 2.6.0-rc7
CATEGORIES= databases
MASTER_SITES= GOOGLE_CODE
PKGNAMESUFFIX= -devel

View file

@ -1,2 +1,2 @@
SHA256 (redis-2.6.0-rc6.tar.gz) = 0bc49799cc644bd849ca2a85d073fda6fd5e29a469969213a912e1e227000961
SIZE (redis-2.6.0-rc6.tar.gz) = 967845
SHA256 (redis-2.6.0-rc7.tar.gz) = 538e68479465b074497c1e76df70e40a61e6cfcb5e8f9dce5eaabc5448eedd43
SIZE (redis-2.6.0-rc7.tar.gz) = 973045

View file

@ -0,0 +1,10 @@
--- src/replication.c.orig 2012-09-19 10:46:28.000000000 +0400
+++ src/replication.c 2012-09-19 10:47:01.000000000 +0400
@@ -1,5 +1,7 @@
#include "redis.h"
+#include <sys/types.h>
+#include <sys/socket.h>
#include <sys/time.h>
#include <unistd.h>
#include <fcntl.h>