diff --git a/00-RELEASENOTES b/00-RELEASENOTES index 833620463..433fe95e0 100644 --- a/00-RELEASENOTES +++ b/00-RELEASENOTES @@ -11,8 +11,31 @@ CRITICAL: There is a critical bug affecting MOST USERS. Upgrade ASAP. SECURITY: There are security fixes in the release. -------------------------------------------------------------------------------- + ================================================================================ -Redis 7.2.0 GA Released Mon Aug 15 12:00:00 IDT 2023 +Redis 7.2.1 Released Wed 06 Sep 2023 15:00:00 IDT +================================================================================ + +Upgrade urgency SECURITY: See security fixes below. + +Security Fixes +============== + +* (CVE-2023-41053) Redis does not correctly identify keys accessed by SORT_RO and, + as a result, may grant users executing this command access to keys that are not + explicitly authorized by the ACL configuration. + + +Bug Fixes +========= + +* Fix crashes when joining a node to an existing 7.0 Redis Cluster (#12538) +* Correct request_policy and response_policy command tips on for some admin / + configuration commands (#12545, #12530) + + +================================================================================ +Redis 7.2.0 GA Released Tue Aug 15 12:00:00 IDT 2023 ================================================================================ Upgrade urgency LOW: This is the first stable Release for Redis 7.2. diff --git a/src/version.h b/src/version.h index 613ba8828..9f60ee4fc 100644 --- a/src/version.h +++ b/src/version.h @@ -1,2 +1,2 @@ -#define REDIS_VERSION "7.2.0" -#define REDIS_VERSION_NUM 0x00070200 +#define REDIS_VERSION "7.2.1" +#define REDIS_VERSION_NUM 0x00070201