From: anand76 Date: Mon, 17 Nov 2025 20:57:58 +0000 (-0800) Subject: Update HISTORY.md and version for 10.8.3 X-Git-Tag: v10.8.3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6bf472dacebee82dd46aedf54f9287068c7d9724;p=rocksdb.git Update HISTORY.md and version for 10.8.3 --- diff --git a/HISTORY.md b/HISTORY.md index b905a1df3..aee2088f0 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` +## 10.8.3 (11/10/2025) +### New Features +* Add a GetColumnFamilyMetaData API variant in DB to get the SST files intersecting a given key range. + ## 10.8.2 (11/07/2025) ### New Features * Added an auto-tuning feature for DB manifest file size that also (by default) improves the safety of existing configurations in case `max_manifest_file_size` is repeatedly exceeded. The new recommendation is to set `max_manifest_file_size` to something small like 1MB and tune `max_manifest_space_amp_pct` as needed to balance write amp and space amp in the manifest. Refer to comments on those options in `DBOptions` for details. Both options are (now) mutable. diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index aa65c9200..c1835e4ae 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 10 #define ROCKSDB_MINOR 8 -#define ROCKSDB_PATCH 2 +#define ROCKSDB_PATCH 3 // Make it easy to do conditional compilation based on version checks, i.e. // #if ROCKSDB_VERSION_GE(4, 5, 6)