summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2011-11-28 11:22:08 +0100
committerantirez <antirez@gmail.com>2011-11-28 11:22:08 +0100
commit54a2934f10b4379dc3dc8072f440ed3985eff7f8 (patch)
tree33d3154a5f5cf6482ae8db6a5a34e7f8912ec8d9
parenta675e5b1715be87b1913fdf42b872cd0c1f9df3c (diff)
downloadredis-54a2934f10b4379dc3dc8072f440ed3985eff7f8.tar.gz
Redis 2.4.42.4.4
-rw-r--r--00-RELEASENOTES16
-rw-r--r--src/version.h2
2 files changed, 17 insertions, 1 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
index 10c1961ee..8cda24ea9 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -18,6 +18,22 @@ to modify your program in order to use Redis 2.4.
CHANGELOG
---------
+What's new in Redis 2.4.4
+=========================
+
+* [BUGFIX] jemalloc upgraded to version 2.2.5, previous versions had a
+ potentially serious issue when allocating big memory areas, something that
+ Redis actually does. However we never received bug reports that appear
+ to be caused by jemalloc.
+* [BUGFIX] DISCARD now clears DIRTY_CAS flag in the client. Now the next
+ transaction will not fail if the previous transaction used WATCH and
+ the key was touched.
+* CLIENT LIST output modified to include the last command executed by clients.
+* Better bug report on crash.
+* Protocol errors are now logged for loglevel >= verbose.
+* Two new INFO fields related to AOF, that can be useful when investigating
+ Redis issues.
+
What's new in Redis 2.4.3
=========================
diff --git a/src/version.h b/src/version.h
index c21aec614..59162f5a2 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1 +1 @@
-#define REDIS_VERSION "2.4.3"
+#define REDIS_VERSION "2.4.4"