Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Jul 2, 2025

Bumps the cargo group with 7 updates in the / directory:

Package From To
tokio 1.18.2 1.26.0
bumpalo 3.9.1 3.15.4
h2 0.3.13 0.3.21
lz4-sys 1.9.3 1.10.0
shlex 1.1.0 1.3.0
time 0.1.44 0.1.45
traitobject 0.1.0 0.1.1

Updates tokio from 1.18.2 to 1.26.0

Release notes

Sourced from tokio's releases.

Tokio v1.26.0

Fixed

Added

Changed

Internal Changes

Unstable

Documented

... (truncated)

Commits

Updates bumpalo from 3.9.1 to 3.15.4

Changelog

Sourced from bumpalo's changelog.

3.15.4

Released 2024-03-07.

Added

  • Added the bumpalo::collections::Vec::extend_from_slices_copy method, which is a faster way to extend a vec from multiple slices when the element is Copy than calling extend_from_slice_copy N times.

3.15.3

Released 2024-02-22.

Added

  • Added additional performance improvements to bumpalo::collections::Vec related to reserving capacity.

3.15.2

Released 2024-02-21.

Added

  • Add a bumpalo::collections::Vec::extend_from_slice_copy method. This doesn't exist on the standard library's Vec but they have access to specialization, so their regular extend_from_slice has a specialization for Copy types. Using this new method for Copy types is a ~80x performance improvement over the plain extend_from_slice method.

3.15.1

Released 2024-02-20.

Fixed

  • Fixed the MSRV listed in Cargo.toml, whose update was forgotten when the MSRV bumped in release 3.15.0.

3.15.0

... (truncated)

Commits
  • 49c5a71 Bump to version 3.15.4
  • 6a91333 Adds Vec::extend_from_slices_copy that accepts multiple slices (#240)
  • 2ed8718 Bump to 3.15.3
  • 1803cca Modifies RawVec reserve fn structure to improve inlining (#239)
  • 2ffdfb3 Bump to version 3.15.2
  • 54c88f0 Provides implementation of Vec::extend_from_slice optimized for T: Copy (...
  • f8597ce Fix MSRV in Cargo.toml; bump to version 3.15.1
  • bb660a3 Bump to version 3.15.0
  • 2543c41 Add a quickcheck for growing or shrinking existing allocations (#233)
  • 7b3fd17 Improve performance of String::from_str_in
  • Additional commits viewable in compare view

Updates h2 from 0.3.13 to 0.3.21

Release notes

Sourced from h2's releases.

v0.3.21

What's Changed

  • Fix opening of new streams over peer's max concurrent limit.
  • Fix RecvStream to return data even if it has received a CANCEL stream error.
  • Update MSRV to 1.63.

New Contributors

v0.3.20

Bug Fixes

  • Fix panic if a server received a request with a :status pseudo header in the 1xx range. (#695)
  • Fix panic if a reset stream had pending push promises that were more than allowed. (#685)
  • Fix potential flow control overflow by subtraction, instead returning a connection error. (#692)

New Contributors

v0.3.19

What's Changed

  • Fix counting reset streams when triggered by a GOAWAY.
  • Send too_many_resets in opaque debug data of GOAWAY when too many resets received.

New Contributors

v0.3.18

What's Changed

v0.3.17

What's Changed

  • Add Error::is_library() method to check if the originated inside h2.
  • Add max_pending_accept_reset_streams(usize) option to client and server builders.
  • Fix theoretical memory growth when receiving too many HEADERS and then RST_STREAM frames faster than an application can accept them off the queue. (CVE-2023-26964)

v0.3.16

What's Changed

  • Set Protocol extension on requests when received Extended CONNECT requests.
  • Remove B: Unpin + 'static bound requiremented of bufs
  • Fix releasing of frames when stream is finished, reducing memory usage.
  • Fix panic when trying to send data and connection window is available, but stream window is not.
  • Fix spurious wakeups when stream capacity is not available.

... (truncated)

Changelog

Sourced from h2's changelog.

0.3.21 (August 21, 2023)

  • Fix opening of new streams over peer's max concurrent limit.
  • Fix RecvStream to return data even if it has received a CANCEL stream error.
  • Update MSRV to 1.63.

0.3.20 (June 26, 2023)

  • Fix panic if a server received a request with a :status pseudo header in the 1xx range.
  • Fix panic if a reset stream had pending push promises that were more than allowed.
  • Fix potential flow control overflow by subtraction, instead returning a connection error.

0.3.19 (May 12, 2023)

  • Fix counting reset streams when triggered by a GOAWAY.
  • Send too_many_resets in opaque debug data of GOAWAY when too many resets received.

0.3.18 (April 17, 2023)

  • Fix panic because of opposite check in is_remote_local().

0.3.17 (April 13, 2023)

  • Add Error::is_library() method to check if the originated inside h2.
  • Add max_pending_accept_reset_streams(usize) option to client and server builders.
  • Fix theoretical memory growth when receiving too many HEADERS and then RST_STREAM frames faster than an application can accept them off the queue. (CVE-2023-26964)

0.3.16 (February 27, 2023)

  • Set Protocol extension on requests when received Extended CONNECT requests.
  • Remove B: Unpin + 'static bound requiremented of bufs
  • Fix releasing of frames when stream is finished, reducing memory usage.
  • Fix panic when trying to send data and connection window is available, but stream window is not.
  • Fix spurious wakeups when stream capacity is not available.

0.3.15 (October 21, 2022)

  • Remove B: Buf bound on SendStream's parameter
  • add accessor for StreamId u32

0.3.14 (August 16, 2022)

  • Add Error::is_reset function.
  • Bump MSRV to Rust 1.56.
  • Return RST_STREAM(NO_ERROR) when the server early responds.
Commits

Updates lz4-sys from 1.9.3 to 1.10.0

Changelog

Sourced from lz4-sys's changelog.

1.26.0:

  • Update to lz4 1.10.0

1.25.0:

  • Add content_size setting to Lz4FrameInfo
  • Add LZ4_setStreamDecode
  • Docs updates

1.24.0:

  • Update to lz4 1.9.4 (lz4-sys 1.9.4) - this fixes CVE-2021-3520, which was a security vulnerability in the core lz4 library
  • export the include directory of lz4 from build.rs

1.23.3 (March 5, 2022):

  • Update lz4 to 1.9.3
  • Add [de]compress_to_buffer to block API to allow reusing buffers (#16)
  • Windows static lib support
  • Support favor_dec_speed
  • Misc small fixes

1.23.2:

  • Update lz4 to 1.9.2
  • Remove dependency on skeptic (replace with build-dependency docmatic for README testing)
  • Move to Rust 2018 edition

1.23.0:

  • Update lz4 to v1.8.2
  • Add lz4 block mode api

1.22.0:

  • Update lz4 to v1.8.0
  • Remove lz4 redundant dependency to gcc #22 (thanks to Xidorn Quan)

1.21.1:

  • Fix always rebuild issue #21

1.21.0:

  • Fix smallest 11-byte stream decoding (thanks to Niklas Hambüchen)
  • Update lz4 to v1.7.5

1.20.0:

  • Split out separate sys package #16 (thanks to Thijs Cadier)

1.19.173:

  • Update lz4 to v1.7.3

... (truncated)

Commits

Updates shlex from 1.1.0 to 1.3.0

Changelog

Sourced from shlex's changelog.

1.3.0

  • Full fix for the high-severity security vulnerability RUSTSEC-2024-0006 a.k.a. GHSA-r7qv-8r2h-pg27:
    • Deprecates quote APIs in favor of try_ equivalents that complain about nul bytes.
    • Also adds a builder API, which allows re-enabling nul bytes without using the deprecated interface, and in the future can allow other things (as discussed in quoting_warning).
    • Adds documentation about various security risks that remain, particularly with interactive shells.
  • Adds explicit MSRV of 1.46.0.

1.2.1

  • Partial fix for the high-severity security vulnerability RUSTSEC-2024-0006 a.k.a. GHSA-r7qv-8r2h-pg27 without bumping MSRV:
    • The bytes { and \xa0 are now escaped by quoting functions.

1.2.0

  • Adds bytes module to support operating directly on byte strings.
Commits
  • 4a0724b Address security issues involving quote API
  • 4c53044 Minimal fix for the high-severity issue without bumping MSRV
  • fde8a71 Version bump
  • f44b62e Merge pull request #15 from danielparks/bytes
  • 0c786d4 Implement Shlex with bytes::Shlex.
  • 879d212 Add support for operating on byte strings
  • aa2d6e3 Merge pull request #14 from atouchet/badge
  • 18d1dae Fix CI badge
  • 6064b48 Merge pull request #11 from adetaylor/fuzz
  • 6480b2c Adding fuzzers for unsafe code.
  • Additional commits viewable in compare view

Updates time from 0.1.44 to 0.1.45

Commits

Updates traitobject from 0.1.0 to 0.1.1

Commits

You can trigger a rebase of this PR 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps the cargo group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [tokio](https://github.com/tokio-rs/tokio) | `1.18.2` | `1.26.0` |
| [bumpalo](https://github.com/fitzgen/bumpalo) | `3.9.1` | `3.15.4` |
| [h2](https://github.com/hyperium/h2) | `0.3.13` | `0.3.21` |
| [lz4-sys](https://github.com/10xGenomics/lz4-rs) | `1.9.3` | `1.10.0` |
| [shlex](https://github.com/comex/rust-shlex) | `1.1.0` | `1.3.0` |
| [time](https://github.com/time-rs/time) | `0.1.44` | `0.1.45` |
| [traitobject](https://github.com/reem/rust-traitobject) | `0.1.0` | `0.1.1` |



Updates `tokio` from 1.18.2 to 1.26.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.18.2...tokio-1.26.0)

Updates `bumpalo` from 3.9.1 to 3.15.4
- [Changelog](https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md)
- [Commits](fitzgen/bumpalo@3.9.1...3.15.4)

Updates `h2` from 0.3.13 to 0.3.21
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/master/CHANGELOG.md)
- [Commits](hyperium/h2@v0.3.13...v0.3.21)

Updates `lz4-sys` from 1.9.3 to 1.10.0
- [Release notes](https://github.com/10xGenomics/lz4-rs/releases)
- [Changelog](https://github.com/10XGenomics/lz4-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/10xGenomics/lz4-rs/commits)

Updates `shlex` from 1.1.0 to 1.3.0
- [Changelog](https://github.com/comex/rust-shlex/blob/master/CHANGELOG.md)
- [Commits](comex/rust-shlex@1.1.0...1.3.0)

Updates `time` from 0.1.44 to 0.1.45
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](https://github.com/time-rs/time/commits)

Updates `traitobject` from 0.1.0 to 0.1.1
- [Commits](https://github.com/reem/rust-traitobject/commits)

---
updated-dependencies:
- dependency-name: tokio
  dependency-version: 1.26.0
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: bumpalo
  dependency-version: 3.15.4
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: h2
  dependency-version: 0.3.21
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: lz4-sys
  dependency-version: 1.10.0
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: shlex
  dependency-version: 1.3.0
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: time
  dependency-version: 0.1.45
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: traitobject
  dependency-version: 0.1.1
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jul 2, 2025
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.

1 participant