From: anand76 Date: Fri, 9 Dec 2022 03:25:26 +0000 (-0800) Subject: Update HISTORY.md for 7.9.1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a5e94812951cb0a7160553dce6c29fe08633a93a;p=rocksdb.git Update HISTORY.md for 7.9.1 --- diff --git a/HISTORY.md b/HISTORY.md index a454a64b..89a846c0 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,8 +1,12 @@ # Rocksdb Change Log ## 7.9.1 (12/8/2022) ### Bug Fixes +* Fixed a regression in iterator where range tombstones after `iterate_upper_bound` is processed. * Fixed a memory leak in MultiGet with async_io read option, caused by IO errors during table file open +### Behavior changes +* Make best-efforts recovery verify SST unique ID before Version construction (#10962) + ## 7.9.0 (11/21/2022) ### Performance Improvements * Fixed an iterator performance regression for delete range users when scanning through a consecutive sequence of range tombstones (#10877). @@ -14,7 +18,6 @@ * Fixed a memory safety bug when using a SecondaryCache with `block_cache_compressed`. `block_cache_compressed` no longer attempts to use SecondaryCache features. * Fixed a regression in scan for async_io. During seek, valid buffers were getting cleared causing a regression. * Tiered Storage: fixed excessive keys written to penultimate level in non-debug builds. -* Fixed a regression in iterator where range tombstones after `iterate_upper_bound` is processed. ### New Features * Add basic support for user-defined timestamp to Merge (#10819). @@ -27,9 +30,6 @@ * Marked `block_cache_compressed` as a deprecated feature. Use SecondaryCache instead. * Added a `SecondaryCache::InsertSaved()` API, with default implementation depending on `Insert()`. Some implementations might need to add a custom implementation of `InsertSaved()`. (Details in API comments.) -### Behavior changes -* Make best-efforts recovery verify SST unique ID before Version construction (#10962) - ## 7.8.0 (10/22/2022) ### New Features * `DeleteRange()` now supports user-defined timestamp.