]> git-server-git.apps.pok.os.sepia.ceph.com Git - rocksdb.git/commitdiff
Update HISTORY.md for 7.9.1
authoranand76 <anand76@devvm4702.ftw0.facebook.com>
Fri, 9 Dec 2022 03:25:26 +0000 (19:25 -0800)
committeranand76 <anand76@devvm4702.ftw0.facebook.com>
Fri, 9 Dec 2022 03:25:26 +0000 (19:25 -0800)
HISTORY.md

index a454a64bc15344b3cbd0c6cf505eab6294469826..89a846c05427a18a9f3da0f725bdc82500f895fd 100644 (file)
@@ -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.