From 41214f0b4e05aa8123583968df039c0d35228a4f Mon Sep 17 00:00:00 2001 From: anand76 Date: Fri, 31 May 2024 10:26:59 -0700 Subject: [PATCH] Update HISTORY.md and version.h for 9.2.2 patch version --- HISTORY.md | 4 ++++ include/rocksdb/version.h | 2 +- unreleased_history/bug_fixes/tiered_cache_fs_buffer.md | 1 - 3 files changed, 5 insertions(+), 2 deletions(-) delete mode 100644 unreleased_history/bug_fixes/tiered_cache_fs_buffer.md diff --git a/HISTORY.md b/HISTORY.md index 4f250625d1..40e99e84fc 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,10 @@ # Rocksdb Change Log > NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt` +## 9.2.2 (05/31/2024) +### Bug Fixes +* Fixed a bug causing stale memory access when using the TieredSecondaryCache with an NVM secondary cache, and a file system that supports return an FS allocated buffer for MultiRead (FSSupportedOps::kFSBuffer is set). + ## 9.2.1 (05/03/2024) ### Public API Changes * Add a kAdmPolicyAllowAll option to TieredAdmissionPolicy that admits all blocks evicted from the primary block cache into the compressed secondary cache. diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index 3a70041e19..7434407b5b 100644 --- a/include/rocksdb/version.h +++ b/include/rocksdb/version.h @@ -13,7 +13,7 @@ // minor or major version number planned for release. #define ROCKSDB_MAJOR 9 #define ROCKSDB_MINOR 2 -#define ROCKSDB_PATCH 1 +#define ROCKSDB_PATCH 2 // Do not use these. We made the mistake of declaring macros starting with // double underscore. Now we have to live with our choice. We'll deprecate these diff --git a/unreleased_history/bug_fixes/tiered_cache_fs_buffer.md b/unreleased_history/bug_fixes/tiered_cache_fs_buffer.md deleted file mode 100644 index 3d0b5dfa62..0000000000 --- a/unreleased_history/bug_fixes/tiered_cache_fs_buffer.md +++ /dev/null @@ -1 +0,0 @@ -Fixed a bug causing stale memory access when using the TieredSecondaryCache with an NVM secondary cache, and a file system that supports return an FS allocated buffer for MultiRead (FSSupportedOps::kFSBuffer is set).