From 7d8c021a9ad1e687b11b5a8042a595bb4dc614cc Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 9 Jun 2011 19:08:22 +0200 Subject: [PATCH] Redis 2.2.9 --- 00-RELEASENOTES | 12 ++++++++++++ src/version.h | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/00-RELEASENOTES b/00-RELEASENOTES index b42f16be8..7f7abb971 100644 --- a/00-RELEASENOTES +++ b/00-RELEASENOTES @@ -15,6 +15,18 @@ CHANGELOG What's new in Redis 2.2.8 ========================= +Redis 2.2.9 is an important bugfix release: + +* A Slave used to rewrite the AOF log after a sync with the master, but the + rewrite was performed at the wrong time, causing inconsistencies in the + AOF file generated. +* [LR]LPUSH replication in presence of BRPOPLPUSH was broken. Fixed. +* Memory leak in BRPOPLPUSH fixed. +* Pub/Sub bug resulting in random crashes fixed. + +What's new in Redis 2.2.8 +========================= + * A new form of dict.c (hash table implementation) iterator that performs less copy-on-write of pages, introduced in Redis 2.2.7, caused ZINTERSTORE, ZUNIONSTORE, SINTER, SINTERSTORE commands to behave in the wrong way. diff --git a/src/version.h b/src/version.h index e44ee94c7..5018abf5a 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define REDIS_VERSION "2.2.8" +#define REDIS_VERSION "2.2.9" -- GitLab