Skip to content

Update Rust crate heed to 0.22#11

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/heed-0.x
Open

Update Rust crate heed to 0.22#11
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/heed-0.x

Conversation

@renovate

@renovate renovate Bot commented Feb 26, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
heed dependencies minor 0.210.22

Release Notes

Kerollmops/heed (heed)

v0.22.1

Compare Source

heed & heed3

This release brings a new functionality: the possibility to create multiple nested read transactions from an uncommitted write transaction. You can also examine another usage in the dedicated example file.

We finally merged the changes to upstream LMDB (mdb.master3), and the patch has been thoroughly reviewed by Howard Chu.

// opening a write transaction
let mut wtxn = env.write_txn()?;

// [use the RwTxn to write into the env]

// opening multiple read-only transactions without committing beforehand
let rtxns = (0..1000).map(|_| env.nested_read_txn(&wtxn)).collect::<heed::Result<Vec<_>>>()?;

// you can also spawn nested read transactions from the write txn too
let rtxns = (0..1000).map(|_| wtxn.nested_read_txn()).collect::<heed::Result<Vec<_>>>()?;

// [use the RoTxns and move them onto different threads]

v0.22.0

Compare Source

heed & heed3

This release brings better-polished support for the heed/heed3 duality. It also improves the documentation, adds support for custom duplicate sort comparators, supports the PREV_SNAPSHOT flag, better support for Thread Local Storage (TLS)-backed of transactions, and bumps LMDB to the latest patch.

What's Changed

Full Changelog: meilisearch/heed@v0.21.0...v0.22.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/heed-0.x branch from 3130cab to 17089a1 Compare March 14, 2026 13:57
@renovate renovate Bot force-pushed the renovate/heed-0.x branch from 17089a1 to fc88d78 Compare April 15, 2026 19:54
@renovate renovate Bot changed the title fix(deps): update rust crate heed to 0.22 Update Rust crate heed to 0.22 Apr 15, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants