Skip to content

deps: bump the deps-patches group with 6 updates - #856

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/deps-patches-04110240d4
Open

deps: bump the deps-patches group with 6 updates#856
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/deps-patches-04110240d4

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 31, 2026

Copy link
Copy Markdown
Contributor

Bumps the deps-patches group with 6 updates:

Package From To
binstalk-downloader 0.13.44 0.13.45
blake3 1.8.6 1.8.7
detect-targets 0.1.89 0.1.90
uuid 1.24.1 1.25.0
syn 3.0.3 3.0.4
redb 4.1.0 4.2.0

Updates binstalk-downloader from 0.13.44 to 0.13.45

Release notes

Sourced from binstalk-downloader's releases.

binstalk-downloader-v0.13.45

Added

  • add --allow-insecure-http to permit plaintext HTTP (#2635)

Other

  • (deps) bump netdev from 0.45.0 to 0.46.0 in the deps group (#2632)
Commits
  • 64125a3 chore: release (#2620)
  • e192da8 build(deps): bump clap-cargo from 0.18.3 to 0.19.0 in the deps group (#2639)
  • 8f13773 dep: Upgrade transitive dependencies (#2638)
  • 4779ab6 feat: add --allow-insecure-http to permit plaintext HTTP (#2635)
  • b629f84 build(deps): bump netdev from 0.45.0 to 0.46.0 in the deps group (#2632)
  • 86d826d dep: Upgrade transitive dependencies (#2630)
  • b5723a5 dep: Upgrade transitive dependencies (#2627)
  • 44679a2 build(deps): bump actions/attest from 4.2.1 to 4.2.2 (#2626)
  • f21464c build(deps): bump actions/attest from 4.2.0 to 4.2.1 (#2621)
  • f3284c9 dep: Upgrade transitive dependencies (#2619)
  • Additional commits viewable in compare view

Updates blake3 from 1.8.6 to 1.8.7

Release notes

Sourced from blake3's releases.

1.8.7

version 1.8.7

Changes since 1.8.6:

  • Remove the arrayref dependency. Unfortunately the crates.io owner was compromised.
Commits
  • f3149ec version 1.8.7
  • b65bcb7 add #[allow(deprecated)] annotations to fix nightly/beta warnings
  • 483a220 fix warnings related to not using MAX constants
  • ba02549 Codex: remove arrayref
  • See full diff in compare view

Updates detect-targets from 0.1.89 to 0.1.90

Release notes

Sourced from detect-targets's releases.

detect-targets-v0.1.90

Other

  • update Cargo.lock dependencies
Commits
  • 64125a3 chore: release (#2620)
  • e192da8 build(deps): bump clap-cargo from 0.18.3 to 0.19.0 in the deps group (#2639)
  • 8f13773 dep: Upgrade transitive dependencies (#2638)
  • 4779ab6 feat: add --allow-insecure-http to permit plaintext HTTP (#2635)
  • b629f84 build(deps): bump netdev from 0.45.0 to 0.46.0 in the deps group (#2632)
  • 86d826d dep: Upgrade transitive dependencies (#2630)
  • b5723a5 dep: Upgrade transitive dependencies (#2627)
  • 44679a2 build(deps): bump actions/attest from 4.2.1 to 4.2.2 (#2626)
  • f21464c build(deps): bump actions/attest from 4.2.0 to 4.2.1 (#2621)
  • f3284c9 dep: Upgrade transitive dependencies (#2619)
  • Additional commits viewable in compare view

Updates uuid from 1.24.1 to 1.25.0

Release notes

Sourced from uuid's releases.

1.25.0

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.24.1...1.25.0

Commits
  • 302e0bf Merge pull request #903 from uuid-rs/cargo/1.25.0
  • b7ccde8 prepare for 1.25.0 release
  • c62dffb Merge pull request #902 from ChrisJr404/serde-bytes-module
  • 8c198b2 Add a serde::bytes module that encodes as a byte string
  • See full diff in compare view

Updates syn from 3.0.3 to 3.0.4

Release notes

Sourced from syn's releases.

3.0.4

  • Allow safe fn in impl Parse for ForeignItemFn (#2078)
Commits
  • b5d62a6 Release 3.0.4
  • abf019c Merge pull request #2078 from dtolnay/foreginitemfn
  • d454333 Allow safe fn in impl Parse for ForeignItemFn
  • 8011b1c Update test suite to nightly-2026-08-18
  • 56a8d83 Raise rayon thread size for tests
  • f2c5c50 Ignore assert_is_empty pedantic clippy lint
  • 0eba76d Update test suite to nightly-2026-08-05
  • baaebce Update test suite to nightly-2026-07-25
  • b886a38 Update test suite to nightly-2026-07-24
  • 3c41416 Update test suite to nightly-2026-07-23
  • See full diff in compare view

Updates redb from 4.1.0 to 4.2.0

Release notes

Sourced from redb's releases.

4.2.0

New features

  • Add an experimental cursor API, behind the experimental_cursor feature flag: Table::lower_bound_mut() and Table::upper_bound_mut() return a CursorMut pointing at a gap between entries, modeled on the standard library's BTreeMap cursors. Inserting sorted data through its insert_before() method can be around 3x faster than calling insert() with the same data; insert_after() inserts through the gap in descending order at the same speed. ReadableTable::lower_bound() and ReadableTable::upper_bound() return a read-only Cursor. The feature is unstable and may change incompatibly, or be removed, in any release.
  • Add ReadOnlyTable::get_owned(), ReadOnlyTable::range_owned(), ReadOnlyMultimapTable::get_owned(), and ReadOnlyMultimapTable::range_owned(), which return the new OwnedAccessGuard, OwnedRange, OwnedMultimapValue, and OwnedMultimapRange types. These keep the read transaction alive until they are dropped, including the guards yielded by the iterators, which may outlive the iterator that produced them.
  • Add Table::entry() and the associated Entry, OccupiedEntry, and VacantEntry types, mirroring std::collections::BTreeMap::entry. Supports or_insert, or_insert_with, or_insert_with_key, and_modify, and the usual OccupiedEntry / VacantEntry accessors.
  • Add ExtractIf::close() to explicitly finalize an extract iterator without removing unread entries.

Optimizations

  • Improve write performance: Durability::None commits are about 2x faster, and writes that do not split a page are about 15% faster for single-key Durability::None commits and about 6% faster for batched writes.
  • Improve write performance when tables of a single WriteTransaction are modified concurrently from multiple threads. Writes to separate tables previously serialized on internal locks and could be slower than writing from a single thread; they now scale with the number of threads. Up to about 4x faster.
  • Optimize Table::pop_first() and Table::pop_last() to be about 2x faster.
  • Optimize inserting in ascending key order. A table loaded in key order occupies about half as much space, and loads faster.
  • Optimize Table::retain(), Table::retain_in(), Table::extract_if(), and Table::extract_from_if(). Benchmarks on large tables show a 30-100x speedup for retaining and an 18-65x speedup for extracting, depending on the fraction of entries affected. Iterating an extract iterator from both ends no longer degrades removal batching.
  • Avoid unnecessary write amplification when removing a value that is not present from a multimap table. Such a removal is now a no-op.

Minor improvements

  • Table::retain(), Table::retain_in(), Table::extract_if(), and Table::extract_from_if() now poison the write transaction if their predicate panics or an internal error prevents removals from being applied, causing WriteTransaction::commit() to return CommitError::TransactionPoisoned. After an extract iterator returns an error, later calls keep returning an error instead of continuing.
  • Enable file space reclamation during non-durable transactions performed while a savepoint exists.
  • Reuse pages freed by a durable write transaction in the next write transaction when no live read transaction or savepoint still needs them. Previously, pages were not reused for one additional transaction.

... (truncated)

Changelog

Sourced from redb's changelog.

4.2.0 - 2026-08-17

New features

  • Add an experimental cursor API, behind the experimental_cursor feature flag: Table::lower_bound_mut() and Table::upper_bound_mut() return a CursorMut pointing at a gap between entries, modeled on the standard library's BTreeMap cursors. Inserting sorted data through its insert_before() method can be around 3x faster than calling insert() with the same data; insert_after() inserts through the gap in descending order at the same speed. ReadableTable::lower_bound() and ReadableTable::upper_bound() return a read-only Cursor. The feature is unstable and may change incompatibly, or be removed, in any release.
  • Add ReadOnlyTable::get_owned(), ReadOnlyTable::range_owned(), ReadOnlyMultimapTable::get_owned(), and ReadOnlyMultimapTable::range_owned(), which return the new OwnedAccessGuard, OwnedRange, OwnedMultimapValue, and OwnedMultimapRange types. These keep the read transaction alive until they are dropped, including the guards yielded by the iterators, which may outlive the iterator that produced them.
  • Add Table::entry() and the associated Entry, OccupiedEntry, and VacantEntry types, mirroring std::collections::BTreeMap::entry. Supports or_insert, or_insert_with, or_insert_with_key, and_modify, and the usual OccupiedEntry / VacantEntry accessors.
  • Add ExtractIf::close() to explicitly finalize an extract iterator without removing unread entries.

Optimizations

  • Improve write performance: Durability::None commits are about 2x faster, and writes that do not split a page are about 15% faster for single-key Durability::None commits and about 6% faster for batched writes.
  • Improve write performance when tables of a single WriteTransaction are modified concurrently from multiple threads. Writes to separate tables previously serialized on internal locks and could be slower than writing from a single thread; they now scale with the number of threads. Up to about 4x faster.
  • Optimize Table::pop_first() and Table::pop_last() to be about 2x faster.
  • Optimize inserting in ascending key order. A table loaded in key order occupies about half as much space, and loads faster.
  • Optimize Table::retain(), Table::retain_in(), Table::extract_if(), and Table::extract_from_if(). Benchmarks on large tables show a 30-100x speedup for retaining and an 18-65x speedup for extracting, depending on the fraction of entries affected. Iterating an extract iterator from both ends no longer degrades removal batching.
  • Avoid unnecessary write amplification when removing a value that is not present from a multimap table. Such a removal is now a no-op.

Minor improvements

  • Table::retain(), Table::retain_in(), Table::extract_if(), and Table::extract_from_if() now poison the write transaction if their predicate panics or an internal error prevents removals from being applied, causing WriteTransaction::commit() to return CommitError::TransactionPoisoned. After an extract iterator returns an error, later calls keep returning an error instead of continuing.
  • Enable file space reclamation during non-durable transactions performed while a savepoint exists.
  • Reuse pages freed by a durable write transaction in the next write transaction when no live read transaction or savepoint still needs them. Previously, pages were not reused for one additional

... (truncated)

Commits
  • 23b6ba0 Bump version to 4.2.0
  • a382aa4 Update changelog
  • e433e52 Update the post-commit epilogue's pages in place
  • cff6e50 Report the repeated benchmark read phases as a single row
  • e01dfab Report benchmark results as rates rather than durations
  • 553cacd Build without std
  • 55735f8 Call StorageBackend::close() when opening a database fails
  • 927c2e4 Report backend failures through crate::io::Error
  • 2471234 Report malformed freed-page records instead of panicking
  • d0d9ed8 Generate a lockfile in test_wasi when one is missing
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the deps-patches group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [binstalk-downloader](https://github.com/cargo-bins/cargo-binstall) | `0.13.44` | `0.13.45` |
| [blake3](https://github.com/BLAKE3-team/BLAKE3) | `1.8.6` | `1.8.7` |
| [detect-targets](https://github.com/cargo-bins/cargo-binstall) | `0.1.89` | `0.1.90` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.24.1` | `1.25.0` |
| [syn](https://github.com/dtolnay/syn) | `3.0.3` | `3.0.4` |
| [redb](https://github.com/cberner/redb) | `4.1.0` | `4.2.0` |


Updates `binstalk-downloader` from 0.13.44 to 0.13.45
- [Release notes](https://github.com/cargo-bins/cargo-binstall/releases)
- [Changelog](https://github.com/cargo-bins/cargo-binstall/blob/main/release-plz.toml)
- [Commits](cargo-bins/cargo-binstall@binstalk-downloader-v0.13.44...binstalk-downloader-v0.13.45)

Updates `blake3` from 1.8.6 to 1.8.7
- [Release notes](https://github.com/BLAKE3-team/BLAKE3/releases)
- [Commits](BLAKE3-team/BLAKE3@1.8.6...1.8.7)

Updates `detect-targets` from 0.1.89 to 0.1.90
- [Release notes](https://github.com/cargo-bins/cargo-binstall/releases)
- [Changelog](https://github.com/cargo-bins/cargo-binstall/blob/main/release-plz.toml)
- [Commits](cargo-bins/cargo-binstall@detect-targets-v0.1.89...detect-targets-v0.1.90)

Updates `uuid` from 1.24.1 to 1.25.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@v1.24.1...1.25.0)

Updates `syn` from 3.0.3 to 3.0.4
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@3.0.3...3.0.4)

Updates `redb` from 4.1.0 to 4.2.0
- [Release notes](https://github.com/cberner/redb/releases)
- [Changelog](https://github.com/cberner/redb/blob/master/CHANGELOG.md)
- [Commits](cberner/redb@v4.1.0...v4.2.0)

---
updated-dependencies:
- dependency-name: binstalk-downloader
  dependency-version: 0.13.45
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps-patches
- dependency-name: blake3
  dependency-version: 1.8.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps-patches
- dependency-name: detect-targets
  dependency-version: 0.1.90
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps-patches
- dependency-name: uuid
  dependency-version: 1.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps-patches
- dependency-name: syn
  dependency-version: 3.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps-patches
- dependency-name: redb
  dependency-version: 4.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps-patches
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Aug 31, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update Rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants