Skip to content

Bump the rust-dependencies group across 1 directory with 7 updates #5837

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the rust-dependencies group with 7 updates in the /quickwit directory:

Package From To
hostname 0.3.1 0.4.1
http-serde 1.1.3 2.1.1
rand 0.8.5 0.9.1
rustls 0.21.12 0.23.29
tokio-rustls 0.24.1 0.26.2
tower-http 0.4.4 0.6.6
lambda_runtime 0.13.0 0.14.2

Updates hostname from 0.3.1 to 0.4.1

Changelog

Sourced from hostname's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[0.4.0] - 2024-04-01

Added

  • CI setup now covers almost all supported Tier 1 and Tier 2 platform targets

Changed

  • Minimum Supported Rust version set to 1.67.0
  • Rust edition set to "2021"

Fixed

  • Handle edge cases for POSIX systems (#14)
  • docs.rs documentation build
Commits

Updates http-serde from 1.1.3 to 2.1.1

Commits

Updates rand from 0.8.5 to 0.9.1

Changelog

Sourced from rand's changelog.

[0.9.1] - 2025-04-17

Security and unsafe

  • Revise "not a crypto library" policy again (#1565)
  • Remove zerocopy dependency from rand (#1579)

Fixes

  • Fix feature simd_support for recent nightly rust (#1586)

Changes

  • Allow fn rand::seq::index::sample_weighted and fn IndexedRandom::choose_multiple_weighted to return fewer than amount results (#1623), reverting an undocumented change (#1382) to the previous release.

Additions

  • Add rand::distr::Alphabetic distribution. (#1587)
  • Re-export rand_core (#1604)

[0.9.0] - 2025-01-27

Security and unsafe

  • Policy: "rand is not a crypto library" (#1514)
  • Remove fork-protection from ReseedingRng and ThreadRng. Instead, it is recommended to call ThreadRng::reseed on fork. (#1379)
  • Use zerocopy to replace some unsafe code (#1349, #1393, #1446, #1502)

Dependencies

  • Bump the MSRV to 1.63.0 (#1207, #1246, #1269, #1341, #1416, #1536); note that 1.60.0 may work for dependents when using --ignore-rust-version
  • Update to rand_core v0.9.0 (#1558)

Features

  • Support std feature without getrandom or rand_chacha (#1354)
  • Enable feature small_rng by default (#1455)
  • Remove implicit feature rand_chacha; use std_rng instead. (#1473)
  • Rename feature serde1 to serde (#1477)
  • Rename feature getrandom to os_rng (#1537)
  • Add feature thread_rng (#1547)

API changes: rand_core traits

  • Add fn RngCore::read_adapter implementing std::io::Read (#1267)
  • Add trait CryptoBlockRng: BlockRngCore; make trait CryptoRng: RngCore (#1273)
  • Add traits TryRngCore, TryCryptoRng (#1424, #1499)
  • Rename fn SeedableRng::from_rng -> try_from_rng and add infallible variant fn from_rng (#1424)
  • Rename fn SeedableRng::from_entropy -> from_os_rng and add fallible variant fn try_from_os_rng (#1424)
  • Add bounds Clone and AsRef to associated type SeedableRng::Seed (#1491)

API changes: Rng trait and top-level fns

  • Rename fn rand::thread_rng() to rand::rng() and remove from the prelude (#1506)
  • Remove fn rand::random() from the prelude (#1506)
  • Add top-level fns random_iter, random_range, random_bool, random_ratio, fill (#1488)
  • Re-introduce fn Rng::gen_iter as random_iter (#1305, #1500)
  • Rename fn Rng::gen to random to avoid conflict with the new gen keyword in Rust 2024 (#1438)
  • Rename fns Rng::gen_range to random_range, gen_bool to random_bool, gen_ratio to random_ratio (#1505)
  • Annotate panicking methods with #[track_caller] (#1442, #1447)

... (truncated)

Commits
  • ec6d5c0 Prepare rand_core v0.9.1 (#1591)
  • 6a06056 rand_core: introduce an UnwrapMut wrapper (#1589)
  • 8929123 Add Alphabetic distribution (#1587)
  • 06b1642 Remove unnecessary underscore from `impl<T, const N: usize> Distribution<[T; ...
  • 49d76cd rename extract to extract_lane (#1586)
  • e0a70fd Change to use array::from_fn in Distribution\<[T; N]> for StandardUniform ...
  • 0bc3f65 Move rand distr (#1577)
  • 2677c49 Revise "not a crypto library" policy and SECURITY.md (#1565)
  • bfd1826 SeedableRng docs: add note on (lack of) reproducibility (#1572)
  • c01aee7 Fix some links (#1571)
  • Additional commits viewable in compare view

Updates rustls from 0.21.12 to 0.23.29

Commits
  • 4e0b5fe Bump version to 0.23.29
  • b854079 Propagate context for webpki signature algorithm errors
  • c84675e key_schedule: minimise lifetime of resumption secret
  • 788b0df key_schedule: erase master secret in traffic state
  • d2c64f0 key_schedule: separate ops not using current secret
  • e5998cd key_schedule: add state for derivations before finish
  • 9620bec tls13::key_schedule: move KeySchedule struct down
  • 373ad88 tls13::key_schedule: move SecretKind down
  • efa2066 Improve compactness of Debug impl for extensions
  • a5433a1 Correct calculation of ServerHello ECH confirmation
  • Additional commits viewable in compare view

Updates tokio-rustls from 0.24.1 to 0.26.2

Release notes

Sourced from tokio-rustls's releases.

v/0.26.0

Additions

Fixes

  • Ignoring NotConnected error in poll_shutdown - by @​djc in #42
  • Check for ErrorKind::WouldBlock in MidHandshake::SendAlert poll - by @​jbr in #47
  • Check for ErrorKind::WouldBlock in LayzConfigAcceptor - by @​jbr in #48
  • Fix for SendAlert io::ErrorKind - by @​jbr in #52
  • Fix for alert.write poll - by @​jbr in #51

What's Changed

Full Changelog: rustls/tokio-rustls@v/0.25.0...v/0.26.0

Commits

Updates tower-http from 0.4.4 to 0.6.6

Release notes

Sourced from tower-http's releases.

tower-http-0.6.6

Fixed

  • compression: fix panic when looking in vary header (#578)

#578: tower-rs/tower-http#578

New Contributors

Full Changelog: tower-rs/tower-http@tower-http-0.6.5...tower-http-0.6.6

tower-http-0.6.5

Added

  • normalize_path: add append_trailing_slash() mode (#547)

Fixed

  • redirect: remove payload headers if redirect changes method to GET (#575)
  • compression: avoid setting vary: accept-encoding if already set (#572)

#547: tower-rs/tower-http#547 #572: tower-rs/tower-http#572 #575: tower-rs/tower-http#575

New Contributors

Full Changelog: tower-rs/tower-http@tower-http-0.6.4...tower-http-0.6.5

tower-http 0.6.4

Added

  • decompression: Support HTTP responses containing multiple ZSTD frames (#548)
  • The ServiceExt trait for chaining layers onto an arbitrary http service just like ServiceBuilderExt allows for ServiceBuilder (#563)

Fixed

  • Remove unnecessary trait bounds on S::Error for Service impls of RequestBodyTimeout<S> and ResponseBodyTimeout<S> (#533)
  • compression: Respect is_end_stream (#535)
  • Fix a rare panic in fs::ServeDir (#553)
  • Fix invalid content-lenght of 1 in response to range requests to empty files (#556)
  • In AsyncRequireAuthorization, use the original inner service after it is

... (truncated)

Commits

Updates lambda_runtime from 0.13.0 to 0.14.2

Release notes

Sourced from lambda_runtime's releases.

lambda-runtime-0.14.2

What's Changed

New Contributors

Full Changelog: awslabs/aws-lambda-rust-runtime@lambda-runtime-0.14.1...lambda-runtime-0.14.2

lambda-runtime-0.14.0

Release runtime 0.14.0 with graceful shutdown hook

lambda-runtime-api-client 0.12.0 lambda-runtime 0.14.0 lambda-http 0.15.0 lambda-extesnion 0.12.0

What's Changed

New Contributors

... (truncated)

Commits
  • 62a36b0 feat(ci): add cargo-semver-checks workflows (#1003)
  • 2b3bcb7 Bump all packages versions to release doc updates (#1002)
  • 34b9c04 fix(docs): enable all features in docs.rs build (#1000)
  • 24125e2 Add type hint to LambdaRequest's Deserialize impl to avoid compiler recursive...
  • 1a7c696 feat: derive Deserialize, Clone, PartialEq, Eq for MetadataPrelude (#956)
  • 2862581 Bump version for runtime and runtime-api-client (#999)
  • 5d3e916 feat(ci): build and check rustdocs for warnings; fix(docs): add missing cfg f...
  • 489b235 CI/CD fixes (#994)
  • 00fef2c Release runtime 0.14.0 with graceful shutdown hook (#991)
  • 661cc26 fix(lambda-runtime,lambda-integration-tests): make spawn_graceful_shutdown_ha...
  • 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 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

Bumps the rust-dependencies group with 7 updates in the /quickwit directory:

| Package | From | To |
| --- | --- | --- |
| [hostname](https://github.com/svartalf/hostname) | `0.3.1` | `0.4.1` |
| [http-serde](https://gitlab.com/kornelski/http-serde) | `1.1.3` | `2.1.1` |
| [rand](https://github.com/rust-random/rand) | `0.8.5` | `0.9.1` |
| [rustls](https://github.com/rustls/rustls) | `0.21.12` | `0.23.29` |
| [tokio-rustls](https://github.com/rustls/tokio-rustls) | `0.24.1` | `0.26.2` |
| [tower-http](https://github.com/tower-rs/tower-http) | `0.4.4` | `0.6.6` |
| [lambda_runtime](https://github.com/awslabs/aws-lambda-rust-runtime) | `0.13.0` | `0.14.2` |



Updates `hostname` from 0.3.1 to 0.4.1
- [Release notes](https://github.com/svartalf/hostname/releases)
- [Changelog](https://github.com/djc/hostname/blob/main/CHANGELOG.md)
- [Commits](https://github.com/svartalf/hostname/commits)

Updates `http-serde` from 1.1.3 to 2.1.1
- [Commits](https://gitlab.com/kornelski/http-serde/compare/v1.1.3...v2.1.1)

Updates `rand` from 0.8.5 to 0.9.1
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@0.8.5...rand_core-0.9.1)

Updates `rustls` from 0.21.12 to 0.23.29
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.21.12...v/0.23.29)

Updates `tokio-rustls` from 0.24.1 to 0.26.2
- [Release notes](https://github.com/rustls/tokio-rustls/releases)
- [Commits](rustls/tokio-rustls@v/0.24.1...v/0.26.2)

Updates `tower-http` from 0.4.4 to 0.6.6
- [Release notes](https://github.com/tower-rs/tower-http/releases)
- [Commits](tower-rs/tower-http@tower-http-0.4.4...tower-http-0.6.6)

Updates `lambda_runtime` from 0.13.0 to 0.14.2
- [Release notes](https://github.com/awslabs/aws-lambda-rust-runtime/releases)
- [Commits](awslabs/aws-lambda-rust-runtime@lambda-http-0.13.0...lambda-runtime-0.14.2)

---
updated-dependencies:
- dependency-name: hostname
  dependency-version: 0.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: http-serde
  dependency-version: 2.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust-dependencies
- dependency-name: rand
  dependency-version: 0.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: rustls
  dependency-version: 0.23.29
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: tokio-rustls
  dependency-version: 0.26.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: tower-http
  dependency-version: 0.6.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: lambda_runtime
  dependency-version: 0.14.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
...

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 11, 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.

0 participants