]> git-server-git.apps.pok.os.sepia.ceph.com Git - rocksdb.git/commitdiff
Update HISTORY and version to 10.1.0
authoranand76 <anand1976@users.noreply.github.com>
Thu, 6 Mar 2025 17:51:05 +0000 (09:51 -0800)
committeranand76 <anand1976@users.noreply.github.com>
Thu, 6 Mar 2025 17:51:05 +0000 (09:51 -0800)
HISTORY.md
include/rocksdb/version.h
unreleased_history/public_api_changes/read_options_property_bag.md [deleted file]
unreleased_history/public_api_changes/remote_compaction_aborted_status.md [deleted file]

index ab8466abd1ce8a43552f725363ce0052166573eb..fcef3186ca1b72b1dfe96a28d64e407711c7c95b 100644 (file)
@@ -1,6 +1,12 @@
 # Rocksdb Change Log
 > NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt`
 
+## 10.1.0 (03/05/2025)
+### Public API Changes
+* Add an unordered map of name/value pairs, ReadOptions::property_bag, to pass opaque options through to an external table when creating an Iterator.
+* Introduced CompactionServiceJobStatus::kAborted to allow handling aborted scenario in Schedule(), Wait() or OnInstallation() APIs in Remote Compactions.
+* Added a column family option disallow_memtable_writes to safely fail any attempts to write to a non-default column family. This can be used for column families that are ingest only.
+
 ## 10.0.0 (02/21/2025)
 ### New Features
 * Introduced new `auto_refresh_iterator_with_snapshot` opt-in knob that (when enabled) will periodically release obsolete memory and storage resources for as long as the iterator is making progress and its supplied `read_options.snapshot` was initialized with non-nullptr value.
index 46e6b49d628361540a8cc036726a5faf6e309f7e..104a6483dc5c49c36fd75a8335ec8d6594cf0107 100644 (file)
@@ -12,7 +12,7 @@
 // NOTE: in 'main' development branch, this should be the *next*
 // minor or major version number planned for release.
 #define ROCKSDB_MAJOR 10
-#define ROCKSDB_MINOR 0
+#define ROCKSDB_MINOR 1
 #define ROCKSDB_PATCH 0
 
 // Do not use these. We made the mistake of declaring macros starting with
diff --git a/unreleased_history/public_api_changes/read_options_property_bag.md b/unreleased_history/public_api_changes/read_options_property_bag.md
deleted file mode 100644 (file)
index 5b9b58e..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Add an unordered map of name/value pairs, ReadOptions::property_bag, to pass opaque options through to an external table when creating an Iterator.
diff --git a/unreleased_history/public_api_changes/remote_compaction_aborted_status.md b/unreleased_history/public_api_changes/remote_compaction_aborted_status.md
deleted file mode 100644 (file)
index eb36ed6..0000000
+++ /dev/null
@@ -1 +0,0 @@
-Introduced CompactionServiceJobStatus::kAborted to allow handling aborted scenario in Schedule(), Wait() or OnInstallation() APIs in Remote Compactions.