]> git-server-git.apps.pok.os.sepia.ceph.com Git - rocksdb.git/commitdiff
Update HISTORY and version to 9.8.3
authoranand76 <anand1976@users.noreply.github.com>
Wed, 13 Nov 2024 05:19:57 +0000 (21:19 -0800)
committeranand76 <anand1976@users.noreply.github.com>
Wed, 13 Nov 2024 05:19:57 +0000 (21:19 -0800)
HISTORY.md
include/rocksdb/version.h
unreleased_history/bug_fixes/missing_strong_reads.md [deleted file]

index 4de03411def09a952ddbc9720ffc6cd9a4f3da2b..8456b76acc8b39d4900ce2697e2203300a1ec7f6 100644 (file)
@@ -1,6 +1,10 @@
 # Rocksdb Change Log
 > NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt`
 
+## 9.8.3 (11/12/2024)
+### Bug Fixes
+* Fix missing cases of corruption retry during DB open and read API processing.
+
 ## 9.8.2 (11/06/2024)
 ### Public API Changes
 * Added a new API `Transaction::GetAttributeGroupIterator` that can be used to create a multi-column-family attribute group iterator over the specified column families, including the data from both the transaction and the underlying database. This API is currently supported for optimistic and write-committed pessimistic transactions.
index 4fe18ded24102dc09926a89814c425e3fc2b06cf..33018133fd3a98c80a4038e30261728e71dd85ad 100644 (file)
@@ -13,7 +13,7 @@
 // minor or major version number planned for release.
 #define ROCKSDB_MAJOR 9
 #define ROCKSDB_MINOR 8
-#define ROCKSDB_PATCH 2
+#define ROCKSDB_PATCH 3
 
 // 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/missing_strong_reads.md b/unreleased_history/bug_fixes/missing_strong_reads.md
deleted file mode 100644 (file)
index b0d10c4..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Fix missing cases of corruption retry during DB open and read API processing.