From 3c27a3dde0993210c5cc30d99717093f7537916f Mon Sep 17 00:00:00 2001 From: Peter Dillinger Date: Fri, 1 Nov 2024 08:32:35 -0700 Subject: [PATCH] Version and history for 9.7.4 --- HISTORY.md | 4 ++++ include/rocksdb/version.h | 2 +- unreleased_history/bug_fixes/blob_file_leak.md | 1 - 3 files changed, 5 insertions(+), 2 deletions(-) delete mode 100644 unreleased_history/bug_fixes/blob_file_leak.md diff --git a/HISTORY.md b/HISTORY.md index 36d472229a..05ad1a2024 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.7.4 (10/31/2024) +### Bug Fixes +* Fix a leak of obsolete blob files left open until DB::Close(). This bug was introduced in version 9.4.0. + ## 9.7.3 (10/16/2024) ### Behavior Changes * OPTIONS file to be loaded by remote worker is now preserved so that it does not get purged by the primary host. A similar technique as how we are preserving new SST files from getting purged is used for this. min_options_file_numbers_ is tracked like pending_outputs_ is tracked. diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index 2a19796b87..0afa2cab12 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 7 -#define ROCKSDB_PATCH 3 +#define ROCKSDB_PATCH 4 // 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/blob_file_leak.md b/unreleased_history/bug_fixes/blob_file_leak.md deleted file mode 100644 index 57f54df767..0000000000 --- a/unreleased_history/bug_fixes/blob_file_leak.md +++ /dev/null @@ -1 +0,0 @@ -* Fix a leak of obsolete blob files left open until DB::Close(). This bug was introduced in version 9.4.0.