summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYanqin Jin <yanqin@fb.com>2022-10-05 13:53:04 -0700
committerYanqin Jin <yanqin@fb.com>2022-10-05 16:40:03 -0700
commit59495ff26a410eab30dab4f76b76ec5ba4ad293b (patch)
treeabb8ff8ff97d58ea99fa1d4a1311d4aeda6586d2
parent3acb421f6832739e7996843dc5bf7b09773e843a (diff)
Update HISTORY and bump version to 7.7.2v7.7.2
-rw-r--r--HISTORY.md6
-rw-r--r--include/rocksdb/version.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/HISTORY.md b/HISTORY.md
index 651dc8f35..18ddc2add 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -4,14 +4,14 @@
* Fixed a bug in iterator refresh that was not freeing up SuperVersion, which could cause excessive resource pinniung (#10770).
* Fixed a bug where RocksDB could be doing compaction endlessly when allow_ingest_behind is true and the bottommost level is not filled (#10767).
+### Behavior Changes
+* Sanitize min_write_buffer_number_to_merge to 1 if atomic flush is enabled to prevent unexpected data loss when WAL is disabled in a multi-column-family setting (#10773).
+
## 7.7.1 (09/26/2022)
### Bug Fixes
* Fixed an optimistic transaction validation bug caused by DBImpl::GetLatestSequenceForKey() returning non-latest seq for merge (#10724).
* Fixed a bug in iterator refresh which could segfault for DeleteRange users (#10739).
-### Behavior Changes
-* Sanitize min_write_buffer_number_to_merge to 1 if atomic flush is enabled to prevent unexpected data loss when WAL is disabled in a multi-column-family setting (#10773).
-
## 7.7.0 (09/18/2022)
### Bug Fixes
* Fixed a hang when an operation such as `GetLiveFiles` or `CreateNewBackup` is asked to trigger and wait for memtable flush on a read-only DB. Such indirect requests for memtable flush are now ignored on a read-only DB.
diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h
index e2647213d..1ab9b300e 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 7
#define ROCKSDB_MINOR 7
-#define ROCKSDB_PATCH 1
+#define ROCKSDB_PATCH 2
// 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