Skip to content

Comments

Bump the rust-minor group across 1 directory with 17 updates#628

Merged
torokati44 merged 1 commit intomainfrom
dependabot/cargo/rust-minor-b182228b96
Dec 22, 2025
Merged

Bump the rust-minor group across 1 directory with 17 updates#628
torokati44 merged 1 commit intomainfrom
dependabot/cargo/rust-minor-b182228b96

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 22, 2025

Bumps the rust-minor group with 14 updates in the / directory:

Package From To
tracing 0.1.43 0.1.44
bumpalo 3.19.0 3.19.1
cc 1.2.49 1.2.50
itoa 1.0.15 1.0.16
libz-rs-sys 0.5.3 0.5.4
moxcms 0.7.10 0.7.11
portable-atomic 1.11.1 1.12.0
reqwest 0.12.24 0.12.26
rustls-pki-types 1.13.1 1.13.2
ryu 1.0.20 1.0.21
simd-adler32 0.3.7 0.3.8
toml_datetime 0.7.3 0.7.5+spec-1.1.0
toml_parser 1.0.4 1.0.6+spec-1.1.0
toml_writer 1.0.4 1.0.6+spec-1.1.0

Updates tracing from 0.1.43 to 0.1.44

Release notes

Sourced from tracing's releases.

tracing 0.1.44

Fixed

  • Fix record_all panic (#3432)

Changed

  • tracing-core: updated to 0.1.36 (#3440)

#3432: tokio-rs/tracing#3432 #3440: tokio-rs/tracing#3440

Commits

Updates bumpalo from 3.19.0 to 3.19.1

Changelog

Sourced from bumpalo's changelog.

3.19.1

Released 2025-12-16.

Changed

  • Annotated bumpalo::collections::String::from_str_in as #[inline].

Fixed

  • Fixed compilation failures with the latest nightly Rust when enabling the unstable allocator_api feature.

Commits

Updates cc from 1.2.49 to 1.2.50

Release notes

Sourced from cc's releases.

cc-v1.2.50

Other

  • Add tests for OUT_DIR escape for '..' file paths (#1631)
  • Fix #283: Make warnings(false) actually suppress compiler warnings (#1633)
Changelog

Sourced from cc's changelog.

1.2.50 - 2025-12-19

Other

  • Add tests for OUT_DIR escape for '..' file paths (#1631)
  • Fix #283: Make warnings(false) actually suppress compiler warnings (#1633)
Commits

Updates itoa from 1.0.15 to 1.0.16

Release notes

Sourced from itoa's releases.

1.0.16

  • Synchronize algorithm improvements from libcore (#65)
Commits
  • 4c18677 Release 1.0.16
  • 2e6134d Exclude benchmark dependencies from being compiled by miri
  • 2c7311b Merge pull request #65 from dtolnay/up
  • bb76a9c Update libcore implementation links
  • 83539d1 Ignore cast_lossless pedantic clippy lint
  • 4394758 Update benchmark chart
  • 997a4ef Write last digit without table lookup
  • bae1746 Copy fast divmod100 from zmij
  • 1087e9d Remove DECIMAL_PAIRS bounds checks
  • 200d064 Delete unreachable_unchecked hints
  • Additional commits viewable in compare view

Updates libz-rs-sys from 0.5.3 to 0.5.4

Release notes

Sourced from libz-rs-sys's releases.

v0.5.4

What's Changed

Full Changelog: trifectatechfoundation/zlib-rs@v0.5.3...v0.5.4

Commits

Updates moxcms from 0.7.10 to 0.7.11

Release notes

Sourced from moxcms's releases.

0.7.11

What's Changed

New Contributors

Full Changelog: awxkee/moxcms@0.7.10...0.7.11

Commits

Updates portable-atomic from 1.11.1 to 1.12.0

Changelog

Sourced from portable-atomic's changelog.

[1.12.0] - 2025-12-19

  • Fix build error on no-std pre-v6 Arm targets due to the recent upstream change. (83f6f3e)

  • Support unsafe-assume-single-core feature / portable_atomic_unsafe_assume_single_core cfg for targets with CAS. (38e9572)

  • Improve compile-time detection of s390x target feature. (5ae0ef5)

  • Documentation improvements. (c84f720)

Commits
  • b5efed0 Release portable-atomic 1.12.0
  • 4a02e1d Update comments
  • 9ac4c17 Update changelog
  • 61053bf ci: Temporarily disable thumbv5te test
  • c84f720 Update docs
  • 38e9572 Support assume-single-core for targets with CAS
  • ec16910 ci: Test macos-15-intel
  • bbe14f7 Disable doc(auto_cfg)
  • 8e955db ci: Ignore linker_messages on aarch64-pc-windows-msvc
  • 1f34ae1 ci: Test riscv64im-unknown-none-elf
  • Additional commits viewable in compare view

Updates reqwest from 0.12.24 to 0.12.26

Release notes

Sourced from reqwest's releases.

v0.12.26

tl;dr

  • Fix sending Accept-Encoding header only with values configured with reqwest, regardless of underlying tower-http config.

What's Changed

Full Changelog: seanmonstar/reqwest@v0.12.25...v0.12.26

v0.12.25

Highlights

  • Add Error::is_upgrade() to determine if the error was from an HTTP upgrade.
  • Fix sending Proxy-Authorization if only username is configured.
  • Fix sending Proxy-Authorization to HTTPS proxies when the target is HTTP.
  • Refactor internal decompression handling to use tower-http.

What's Changed

New Contributors

Full Changelog: seanmonstar/reqwest@v0.12.24...v0.12.25

Changelog

Sourced from reqwest's changelog.

v0.12.26

  • Fix sending Accept-Encoding header only with values configured with reqwest, regardless of underlying tower-http config.

v0.12.25

  • Add Error::is_upgrade() to determine if the error was from an HTTP upgrade.
  • Fix sending Proxy-Authorization if only username is configured.
  • Fix sending Proxy-Authorization to HTTPS proxies when the target is HTTP.
  • Refactor internal decompression handling to use tower-http.
Commits
  • 01f03a4 v0.12.26
  • e908f57 fix(http3): correct compression defaults (#2890)
  • 509c904 fix: disable default compression from tower-http if not enabled in reqwest (#...
  • 896aaea deps: update cookie_store to 0.22 (#2886)
  • f156a9f v0.12.25
  • fc1ff4f fix(proxy): forward Proxy-Authorization header to HTTPS proxies for HTTP targ...
  • b7c3712 Use decompression from tower-http (#2840)
  • 74e6f84 feat(error): add is_upgrade method to detect protocol upgrade errors (#2822)
  • c0c06b7 fix: send proxy-authorization even with empty password (#2868)
  • a2aa5a3 chore: minor improvement for docs (#2862)
  • Additional commits viewable in compare view

Updates rustls-pki-types from 1.13.1 to 1.13.2

Release notes

Sourced from rustls-pki-types's releases.

1.13.2

What's Changed

Commits

Updates ryu from 1.0.20 to 1.0.21

Release notes

Sourced from ryu's releases.

1.0.21

  • Documentation improvements
Commits
  • aaa2f8d Release 1.0.21
  • 03f8148 Remove supported compiler version statement from readme
  • b9121ee Update actions/upload-artifact@v5 -> v6
  • 56ac8ca Update actions/upload-artifact@v4 -> v5
  • 23a8290 Raise minimum tested compiler to rust 1.86
  • 7d5e43a Switch from cargo bench to criterion
  • e537df3 Benchmark using e from consts module
  • 6199a2b Switch from test::black_box to std::hint::black_box
  • 221e3d4 Resolve uninlined_format_args pedantic clippy lint
  • c667b72 Update to 2021 edition
  • Additional commits viewable in compare view

Updates simd-adler32 from 0.3.7 to 0.3.8

Commits

Updates toml_datetime from 0.7.3 to 0.7.5+spec-1.1.0

Commits
  • e32c7a2 chore: Release
  • df1c328 docs: Update changelog
  • b826cf4 feat(edit)!: Allow set_position(None) (#1080)
  • 8043f20 feat(edit)!: Allow set_position(None)
  • a02c0db feat: Support TOML 1.1 (#1079)
  • 5cfb838 feat(edit): Support TOML 1.1
  • 1eb4d60 feat(toml): Support TOML 1.1
  • 695d788 feat(edit)!: Multi-line inline tables with trailing commas
  • cc4f7ac feat(toml): Multi-line inline tables with trailing commas
  • 539f8c1 feat(datetime): Make seconds optional
  • Additional commits viewable in compare view

Updates toml_parser from 1.0.4 to 1.0.6+spec-1.1.0

Commits
  • e32c7a2 chore: Release
  • df1c328 docs: Update changelog
  • b826cf4 feat(edit)!: Allow set_position(None) (#1080)
  • 8043f20 feat(edit)!: Allow set_position(None)
  • a02c0db feat: Support TOML 1.1 (#1079)
  • 5cfb838 feat(edit): Support TOML 1.1
  • 1eb4d60 feat(toml): Support TOML 1.1
  • 695d788 feat(edit)!: Multi-line inline tables with trailing commas
  • cc4f7ac feat(toml): Multi-line inline tables with trailing commas
  • 539f8c1 feat(datetime): Make seconds optional
  • Additional commits viewable in compare view

Updates toml_writer from 1.0.4 to 1.0.6+spec-1.1.0

Commits
  • e32c7a2 chore: Release
  • df1c328 docs: Update changelog
  • b826cf4 feat(edit)!: Allow set_position(None) (#1080)
  • 8043f20 feat(edit)!: Allow set_position(None)
  • a02c0db feat: Support TOML 1.1 (#1079)
  • 5cfb838 feat(edit): Support TOML 1.1
  • 1eb4d60 feat(toml): Support TOML 1.1
  • 695d788 feat(edit)!: Multi-line inline tables with trailing commas
  • cc4f7ac feat(toml): Multi-line inline tables with trailing commas
  • 539f8c1 feat(datetime): Make seconds optional
  • Additional commits viewable in compare view

Updates tower-http from 0.6.7 to 0.6.8

Release notes

Sourced from tower-http's releases.

tower-http-0.6.8

Fixed

  • Disable multiple_members in Gzip decoder, since HTTP context only uses one member. (#621)

#621: tower-rs/tower-http#621

What's Changed

New Contributors

Full Changelog: tower-rs/tower-http@tower-http-0.6.7...tower-http-0.6.8

Commits

Updates tracing-core from 0.1.35 to 0.1.36

Release notes

Sourced from tracing-core's releases.

tracing-core 0.1.36

  • Fix record_all panic (#3432)

#3432: tokio-rs/tracing#3432

Commits

Updates zlib-rs from 0.5.3 to 0.5.4

Release notes

Sourced from zlib-rs's releases.

v0.5.4

What's Changed

Full Changelog: trifectatechfoundation/zlib-rs@v0.5.3...v0.5.4

Commits

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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Dec 22, 2025
@torokati44 torokati44 enabled auto-merge (rebase) December 22, 2025 15:49
Bumps the rust-minor group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [tracing](https://github.com/tokio-rs/tracing) | `0.1.43` | `0.1.44` |
| [bumpalo](https://github.com/fitzgen/bumpalo) | `3.19.0` | `3.19.1` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.49` | `1.2.50` |
| [itoa](https://github.com/dtolnay/itoa) | `1.0.15` | `1.0.16` |
| [libz-rs-sys](https://github.com/trifectatechfoundation/zlib-rs) | `0.5.3` | `0.5.4` |
| [moxcms](https://github.com/awxkee/moxcms) | `0.7.10` | `0.7.11` |
| [portable-atomic](https://github.com/taiki-e/portable-atomic) | `1.11.1` | `1.12.0` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.24` | `0.12.26` |
| [rustls-pki-types](https://github.com/rustls/pki-types) | `1.13.1` | `1.13.2` |
| [ryu](https://github.com/dtolnay/ryu) | `1.0.20` | `1.0.21` |
| [simd-adler32](https://github.com/mcountryman/simd-adler32) | `0.3.7` | `0.3.8` |
| [toml_datetime](https://github.com/toml-rs/toml) | `0.7.3` | `0.7.5+spec-1.1.0` |
| [toml_parser](https://github.com/toml-rs/toml) | `1.0.4` | `1.0.6+spec-1.1.0` |
| [toml_writer](https://github.com/toml-rs/toml) | `1.0.4` | `1.0.6+spec-1.1.0` |



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

Updates `bumpalo` from 3.19.0 to 3.19.1
- [Changelog](https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md)
- [Commits](fitzgen/bumpalo@v3.19.0...v3.19.1)

Updates `cc` from 1.2.49 to 1.2.50
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.49...cc-v1.2.50)

Updates `itoa` from 1.0.15 to 1.0.16
- [Release notes](https://github.com/dtolnay/itoa/releases)
- [Commits](dtolnay/itoa@1.0.15...1.0.16)

Updates `libz-rs-sys` from 0.5.3 to 0.5.4
- [Release notes](https://github.com/trifectatechfoundation/zlib-rs/releases)
- [Changelog](https://github.com/trifectatechfoundation/zlib-rs/blob/main/docs/release.md)
- [Commits](trifectatechfoundation/zlib-rs@v0.5.3...v0.5.4)

Updates `moxcms` from 0.7.10 to 0.7.11
- [Release notes](https://github.com/awxkee/moxcms/releases)
- [Commits](awxkee/moxcms@0.7.10...0.7.11)

Updates `portable-atomic` from 1.11.1 to 1.12.0
- [Release notes](https://github.com/taiki-e/portable-atomic/releases)
- [Changelog](https://github.com/taiki-e/portable-atomic/blob/main/CHANGELOG.md)
- [Commits](taiki-e/portable-atomic@v1.11.1...v1.12.0)

Updates `reqwest` from 0.12.24 to 0.12.26
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.24...v0.12.26)

Updates `rustls-pki-types` from 1.13.1 to 1.13.2
- [Release notes](https://github.com/rustls/pki-types/releases)
- [Commits](rustls/pki-types@v/1.13.1...v/1.13.2)

Updates `ryu` from 1.0.20 to 1.0.21
- [Release notes](https://github.com/dtolnay/ryu/releases)
- [Commits](dtolnay/ryu@1.0.20...1.0.21)

Updates `simd-adler32` from 0.3.7 to 0.3.8
- [Changelog](https://github.com/mcountryman/simd-adler32/blob/main/CHANGELOG.md)
- [Commits](https://github.com/mcountryman/simd-adler32/commits)

Updates `toml_datetime` from 0.7.3 to 0.7.5+spec-1.1.0
- [Commits](toml-rs/toml@toml_datetime-v0.7.3...toml_datetime-v0.7.5)

Updates `toml_parser` from 1.0.4 to 1.0.6+spec-1.1.0
- [Commits](toml-rs/toml@toml_parser-v1.0.4...toml_parser-v1.0.6)

Updates `toml_writer` from 1.0.4 to 1.0.6+spec-1.1.0
- [Commits](toml-rs/toml@toml_writer-v1.0.4...toml_writer-v1.0.6)

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

Updates `tracing-core` from 0.1.35 to 0.1.36
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-core-0.1.35...tracing-core-0.1.36)

Updates `zlib-rs` from 0.5.3 to 0.5.4
- [Release notes](https://github.com/trifectatechfoundation/zlib-rs/releases)
- [Changelog](https://github.com/trifectatechfoundation/zlib-rs/blob/main/docs/release.md)
- [Commits](trifectatechfoundation/zlib-rs@v0.5.3...v0.5.4)

---
updated-dependencies:
- dependency-name: tracing
  dependency-version: 0.1.44
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: bumpalo
  dependency-version: 3.19.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: cc
  dependency-version: 1.2.50
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: itoa
  dependency-version: 1.0.16
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: libz-rs-sys
  dependency-version: 0.5.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: moxcms
  dependency-version: 0.7.11
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: portable-atomic
  dependency-version: 1.12.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-minor
- dependency-name: reqwest
  dependency-version: 0.12.26
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: rustls-pki-types
  dependency-version: 1.13.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: ryu
  dependency-version: 1.0.21
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: simd-adler32
  dependency-version: 0.3.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: toml_datetime
  dependency-version: 0.7.5+spec-1.1.0
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: toml_parser
  dependency-version: 1.0.6+spec-1.1.0
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: toml_writer
  dependency-version: 1.0.6+spec-1.1.0
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: tower-http
  dependency-version: 0.6.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: tracing-core
  dependency-version: 0.1.36
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: zlib-rs
  dependency-version: 0.5.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@torokati44 torokati44 force-pushed the dependabot/cargo/rust-minor-b182228b96 branch from d32a20b to 07b10fc Compare December 22, 2025 15:49
@torokati44 torokati44 merged commit 41e4f93 into main Dec 22, 2025
9 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/rust-minor-b182228b96 branch December 22, 2025 15:57
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