From: anand76 Date: Wed, 13 Nov 2024 05:19:57 +0000 (-0800) Subject: Update HISTORY and version to 9.8.3 X-Git-Tag: v9.8.4~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1b497c95b3d7c672b8082671abd8fdb1fcea2526;p=rocksdb.git Update HISTORY and version to 9.8.3 --- diff --git a/HISTORY.md b/HISTORY.md index 4de03411d..8456b76ac 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.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. diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h index 4fe18ded2..33018133f 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 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 index b0d10c4b1..000000000 --- a/unreleased_history/bug_fixes/missing_strong_reads.md +++ /dev/null @@ -1 +0,0 @@ -Fix missing cases of corruption retry during DB open and read API processing.