summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOran Agra <oran@redislabs.com>2021-03-01 21:02:05 +0200
committerOran Agra <oran@redislabs.com>2021-03-01 21:02:05 +0200
commit7018ad69a22c992765ae3f3497ac5684edac6a81 (patch)
tree33e7d37c5ebd78f8203d65e0249ca826deb0d6ec
parent46df4db87b3ba0d19d156c8705057429e7e5b1d9 (diff)
downloadredis-7018ad69a22c992765ae3f3497ac5684edac6a81.tar.gz
Redis 6.2.1
-rw-r--r--00-RELEASENOTES27
-rw-r--r--src/version.h4
2 files changed, 29 insertions, 2 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
index 36ef7156f..d94c60465 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -12,6 +12,33 @@ SECURITY: There are security fixes in the release.
--------------------------------------------------------------------------------
================================================================================
+Redis 6.2.1 Released Mon Mar 1 17:51:36 IST 2021
+================================================================================
+
+Upgrade urgency: LOW.
+
+Here is a comprehensive list of changes in this release compared to 6.2.0,
+each one includes the PR number that added it, so you can get more details
+at https://github.com/redis/redis/pull/<number>
+
+Bug fixes:
+* Fix sanitize-dump-payload for stream with deleted records (#8568)
+* Prevent client-query-buffer-limit config from being set to lower than 1mb (#8557)
+
+Improvements:
+* Make port, tls-port and bind config options modifiable at runtime (#8510)
+
+Platform and deployment-related changes:
+* Fix compilation error on non-glibc systems if jemalloc is not used (#8533)
+* Improved memory consumption and memory usage tracking on FreeBSD (#8545)
+* Fix compilation on ARM64 MacOS with jemalloc (#8458)
+
+Modules:
+* New Module API for getting user name of a client (#8508)
+* Optimize RM_Call by utilizing a shared reusable client (#8516)
+* Fix crash running CLIENT INFO via RM_Call (#8560)
+
+================================================================================
Redis 6.2.0 GA Released Tue Feb 22 14:00:00 IST 2021
================================================================================
diff --git a/src/version.h b/src/version.h
index 62ddcfd59..64fdbe89b 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1,2 +1,2 @@
-#define REDIS_VERSION "6.2.0"
-#define REDIS_VERSION_NUM 0x00060200
+#define REDIS_VERSION "6.2.1"
+#define REDIS_VERSION_NUM 0x00060201