summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Dillinger <peterd@meta.com>2024-01-26 08:38:54 -0800
committerPeter Dillinger <peterd@meta.com>2024-01-26 08:38:54 -0800
commita53094983b30af1e618dfff99d9d0af5f914abc7 (patch)
tree1aaddbad53c724ff99529f18e26973cd3a3e4ac1
parentcc20520d5fb6ae80e8d049dac0b4a142d541541e (diff)
Version bump and HISTORY for 8.11.1 patch
-rw-r--r--HISTORY.md5
-rw-r--r--include/rocksdb/version.h2
-rw-r--r--unreleased_history/bug_fixes/new_ingested_data_with_old_seqno.md1
3 files changed, 6 insertions, 2 deletions
diff --git a/HISTORY.md b/HISTORY.md
index bd293c79e..b28d9de95 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -1,6 +1,11 @@
# Rocksdb Change Log
> NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt`
+## 8.11.1 (01/25/2024)
+### Bug Fixes
+* Fix a bug where older data of an ingested key can be returned for read when universal compaction is used
+* Apply appropriate rate limiting and priorities in more places.
+
## 8.11.0 (01/19/2024)
### New Features
* Add new statistics: `rocksdb.sst.write.micros` measures time of each write to SST file; `rocksdb.file.write.{flush|compaction|db.open}.micros` measure time of each write to SST table (currently only block-based table format) and blob file for flush, compaction and db open.
diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h
index 4ff6ab51f..d19bf2733 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 8
#define ROCKSDB_MINOR 11
-#define ROCKSDB_PATCH 0
+#define ROCKSDB_PATCH 1
// 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/new_ingested_data_with_old_seqno.md b/unreleased_history/bug_fixes/new_ingested_data_with_old_seqno.md
deleted file mode 100644
index 8d0f32b4b..000000000
--- a/unreleased_history/bug_fixes/new_ingested_data_with_old_seqno.md
+++ /dev/null
@@ -1 +0,0 @@
-Fix a bug where older data of an ingested key can be returned for read when universal compaction is used