Skip to content

Bump the rust-dependencies group in /quickwit with 11 updates #5859

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 12, 2025

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

Package From To
hostname 0.3.1 0.4.1
http-serde 1.1.3 2.1.1
numfmt 1.1.1 1.2.0
rand 0.8.5 0.9.1
rustls 0.21.12 0.23.29
tokio 1.46.1 1.47.1
tokio-rustls 0.24.1 0.26.2
tower-http 0.4.4 0.6.6
uuid 1.17.0 1.18.0
aws_lambda_events 0.16.1 0.17.0
lambda_runtime 0.13.0 0.14.3

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 numfmt from 1.1.1 to 1.2.0

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 from 1.46.1 to 1.47.1

Release notes

Sourced from tokio's releases.

Tokio v1.47.1

1.47.1 (August 1st, 2025)

Fixed

  • process: fix panic from spurious pidfd wakeup (#7494)
  • sync: fix broken link of Python asyncio.Event in SetOnce docs (#7485)

#7485: tokio-rs/tokio#7485 #7494: tokio-rs/tokio#7494

Tokio v1.47.0

1.47.0 (July 25th, 2025)

This release adds poll_proceed and cooperative to the coop module for cooperative scheduling, adds SetOnce to the sync module which provides similar functionality to [std::sync::OnceLock], and adds a new method sync::Notify::notified_owned() which returns an OwnedNotified without a lifetime parameter.

Added

  • coop: add cooperative and poll_proceed (#7405)
  • sync: add SetOnce (#7418)
  • sync: add sync::Notify::notified_owned() (#7465)

Changed

  • deps: upgrade windows-sys 0.52 → 0.59 (#7117)
  • deps: update to socket2 v0.6 (#7443)
  • sync: improve AtomicWaker::wake performance (#7450)

Documented

  • metrics: fix listed feature requirements for some metrics (#7449)
  • runtime: improve safety comments of Readiness<'_> (#7415)

#7405: tokio-rs/tokio#7405 #7415: tokio-rs/tokio#7415 #7418: tokio-rs/tokio#7418 #7449: tokio-rs/tokio#7449 #7450: tokio-rs/tokio#7450 #7465: tokio-rs/tokio#7465

Commits

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 uuid from 1.17.0 to 1.18.0

Release notes

Sourced from uuid's releases.

v1.18.0

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.17.0...v1.18.0

Commits
  • 60a49eb Merge pull request #839 from uuid-rs/cargo/v1.18.0
  • eb8c697 prepare for 1.18.0 release
  • 281f26f Merge pull request #838 from uuid-rs/chore/time-conversion
  • 2d67ab2 don't use allocated values in errors
  • c284ed5 wrap the error type used in time conversions
  • 87a4359 Merge pull request #835 from dcormier/main
  • 8927396 Merge pull request #837 from uuid-rs/fix/lifetime-syntaxes
  • 6dfb4b1 Conversions between Timestamp and std::time::SystemTime
  • b508383 fix up mismatched_lifetime_syntaxes lint
  • See full diff in compare view

Updates aws_lambda_events from 0.16.1 to 0.17.0

Release notes

Sourced from aws_lambda_events's releases.

lambda-events-0.16.0 & lambda-http-0.14.0

What's Changed

New Contributors

Full Changelog: awslabs/aws-lambda-rust-runtime@lambda-extension-0.11.0...lambda-events-0.16.0

lambda_runtime 0.14.3 and lambda_runtime_api_client 0.12.2 and lambda-extension 0.12.1 and aws_lambda_events 0.17.0 and lambda_http 0.5.1

What's Changed

New Contributors

... (truncated)

Commits

Updates lambda_runtime from 0.13.0 to 0.14.3

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
  • 1447217 chore: (lambda-http, lambda-extension): add missing docsrs feature annotation...
  • 9a3642e chore(lambda-extension, lambda-http, lambda-runtime-api-client, lambda-runtim...
  • 0cdd565 add catchall feature to resolve #1017 (#1018)
  • ee2e0d2 Add support for Direct Lambda Resolver event format (#1015)
  • fd0354e Add alternative to pip3 install of cargo lambda (#981)
  • 35860b0 fix(lambda-events): impl Default for all Kinesis Event structs (#1011)
  • fd6f528 Capture String Panic Messages (#962)
  • b927092 Update all dependencies and fix examples (#959)
  • 0383301 fix(lambda-events): derive Default on KinesisEvent (#1008)
  • f8b9a2a chore(lambda-runtime): slightly optimize graceful shutdown helper by using ne...
  • 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 in /quickwit with 11 updates:

| 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` |
| [numfmt](https://github.com/kurtlawrence/numfmt) | `1.1.1` | `1.2.0` |
| [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](https://github.com/tokio-rs/tokio) | `1.46.1` | `1.47.1` |
| [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` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.17.0` | `1.18.0` |
| [aws_lambda_events](https://github.com/awslabs/aws-lambda-rust-runtime) | `0.16.1` | `0.17.0` |
| [lambda_runtime](https://github.com/awslabs/aws-lambda-rust-runtime) | `0.13.0` | `0.14.3` |


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 `numfmt` from 1.1.1 to 1.2.0
- [Commits](https://github.com/kurtlawrence/numfmt/commits)

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` from 1.46.1 to 1.47.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.46.1...tokio-1.47.1)

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 `uuid` from 1.17.0 to 1.18.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@v1.17.0...v1.18.0)

Updates `aws_lambda_events` from 0.16.1 to 0.17.0
- [Release notes](https://github.com/awslabs/aws-lambda-rust-runtime/releases)
- [Commits](https://github.com/awslabs/aws-lambda-rust-runtime/commits)

Updates `lambda_runtime` from 0.13.0 to 0.14.3
- [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.3)

---
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: numfmt
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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
  dependency-version: 1.47.1
  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: uuid
  dependency-version: 1.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: aws_lambda_events
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: lambda_runtime
  dependency-version: 0.14.3
  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 Aug 12, 2025
@guilload guilload closed this Aug 12, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 12, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@guilload guilload deleted the dependabot/cargo/quickwit/rust-dependencies-ed8ed71680 branch August 12, 2025 17:20
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