Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.22.0 #861

Merged
merged 2 commits into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
36 changes: 34 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,42 @@

## [Unreleased]

## 0.22.0 (2024-02-13)

* Free memory on writebatch index and avoid unnecessary clones (jkurian)
* Update snappy to 1.1.10 (timsueberkrueb)
* Prefer rocksdb_free to free for RocksDB memory (niklasf)
* Expose flush_cfs_opt to flush multiple column families (lizhanhui)
* Update to RocksDB 8.3.2 (niklasf)
* Remove temporary boxed keys in batched_multi_get (axnsan12)
* Convert properties to `&PropName` which can be converted at no cost to `&CStr` and `&str` (mina86)
* Bump MSRV to 1.63.0 (mina86)
* Convert properties to `&PropName` which can be converted at no cost to `&CStr`
and `&str` (mina86)
* Add allow_ingest_behind ffi call for DB Options (siyuan0322)
* Remove wrong outlive requirements for cache in docs (zheland)
* Feat: support `column_family_metadata` and `column_family_metadata_cf` (ovr)
* Update RocksDB to 8.5.3 (niklasf)
* Expose ReadTier publicly (tinct-martini)
* Update RocksDB to 8.6.7 (aleksuss)
* Feat: expose `set_optimize_filters_for_memory` (zaidoon1)
* Feat: expose compression option parallel_threads (zaidoon1)
* Fix: add raw iterator validation before calling next method (aleksuss)
* Fix typo in documentation (jazarine)
* Feat: Expose `set_wal_compression_type` (ovr)
* Update RocksDB to 8.8.1 (zaidoon1)
* Feat: Expose `compact_on_deletion_collector_factory` (zaidoon1)
* Fix bug in DBWALIterator that would return updates before the given sequence (schmidek)
* Feat: Expose wait_for_compact (zaidoon1)
* Feat: Expose `set_auto_readahead_size` (niklasf)
* Update RocksDB to 8.9.1 (zaidoon1)
* Feat: Expose `set_periodic_compaction_seconds` (zaidoon1)
* Update hash commit of the rocksdb submodule to corresponding v8.9.1 (aleksuss)
* Make CompactOptions Send and Sync (GodTamIt)
* Update to RocksDB 8.10.0 (zaidoon1)
* Add WriteBufferManager support (benoitmeriaux)
* Update doc and parameter name for `optimize_for_point_lookup` (XiangpengHao)
* Expose rocksdb cumulative statistics and histograms (AhmedSoliman)
* Make FlushOptions Send and Sync (jansegre)
* Export memory usage builder and MemoryUsage structs to users (AhmedSoliman)

## 0.21.0 (2023-05-09)

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rocksdb"
description = "Rust wrapper for Facebook's RocksDB embeddable database"
version = "0.21.0"
version = "0.22.0"
edition = "2018"
rust-version = "1.66.0"
authors = ["Tyler Neely <t@jujit.su>", "David Greenberg <dsg123456789@gmail.com>"]
Expand Down