diff --git a/SWAP-RELEASENOTES b/SWAP-RELEASENOTES index c9d78484f7c..ebd0456b291 100644 --- a/SWAP-RELEASENOTES +++ b/SWAP-RELEASENOTES @@ -1,3 +1,13 @@ +================================================================================ +ror-1.4.10 Released Thu Apr 9 00:00:00 CST 2026 +================================================================================ +* [fix] ltrim error caused by listMetaAppendSegment_ +* [fix] fix swapListMetaDelRange arguments error +* [fix] metascan is only allowed for current dbid +* [fix] restore server.current_client +* [fix] deferFreeClient +* [feat] set rocksdb db log dir + ================================================================================ ror-1.4.9 Released Thu Dec 4 00:00:00 CST 2025 ================================================================================ @@ -5,6 +15,7 @@ ror-1.4.9 Released Thu Dec 4 00:00:00 CST 2025 * [fix] Due to known risks when using io_uring in Linux kernel 5.10, the RocksDB asyncio feature is disabled by default. * [feat] gap changed from diff of gtid.set to diff of gtid.executed. * [feat] support tracking heartbeat && tracking invalidateoff + ================================================================================ ror-1.4.8 Released Wed Jul 23 00:00:00 AM CST 2025 ================================================================================ diff --git a/XREDIS-RELEASENOTES b/XREDIS-RELEASENOTES index c63d4925d93..5e7758f5f34 100644 --- a/XREDIS-RELEASENOTES +++ b/XREDIS-RELEASENOTES @@ -1,3 +1,10 @@ +================================================================================ +xredis-2.2.4 Released Thu Apr 9 00:00:00 CST 2026 +================================================================================ +* [hotfix] unit/memefficiency.tcl +* [hotfix] unit/maxmemory.tcl +* [hotfix] xsync continue error when xsync continue point adjust to psync from (server.repl_mode->from < server.repl_backlog_off) + ================================================================================ xredis-2.2.3 Released Tue Dec 23 00:00:00 CST 2025 ================================================================================ diff --git a/src/ctrip.h b/src/ctrip.h index a96053bc6dd..56a5b478f7f 100644 --- a/src/ctrip.h +++ b/src/ctrip.h @@ -8,7 +8,7 @@ #ifndef SRC_CTRIP_H_ #define SRC_CTRIP_H_ -#define XREDIS_VERSION "2.2.3" +#define XREDIS_VERSION "2.2.4" #define CONFIG_DEFAULT_SLAVE_REPLICATE_ALL 0 void xslaveofCommand(client *c); diff --git a/src/version.h b/src/version.h index f5eb9f7867f..4385464afe2 100644 --- a/src/version.h +++ b/src/version.h @@ -1,3 +1,3 @@ #define REDIS_VERSION "6.2.6" #define REDIS_VERSION_NUM 0x00060206 -#define SWAP_VERSION "1.4.9" +#define SWAP_VERSION "1.4.10"