chore(deps): update rust-patch-updates #1169

Merged
ginger merged 1 commit from renovate/rust-patch-updates into main 2025-11-21 14:45:03 +00:00
Collaborator

This PR contains the following updates:

Package Type Update Change
axum-server workspace.dependencies patch 0.7.2 -> 0.7.3
clap workspace.dependencies patch 4.5.51 -> 4.5.52
clap_builder dependencies patch 4.5.51 -> 4.5.52
image workspace.dependencies patch 0.25.8 -> 0.25.9
minicbor-serde workspace.dependencies patch 0.6.1 -> 0.6.2
serde-saphyr workspace.dependencies patch 0.0.7 -> 0.0.8

Release Notes

programatik29/axum-server (axum-server)

v0.7.3

Compare Source

  • fixed: axum-server not compiling in hyper 1.8.0.
clap-rs/clap (clap)

v4.5.52

Compare Source

Fixes
  • Don't panic when args_conflicts_with_subcommands conflicts with an ArgGroup
image-rs/image (image)

v0.25.9

Compare Source

Features:

  • Support extracting XMP metadata from PNG, JPEG, GIF, WebP and TIFF files (#​2567, #​2634, #​2644)
  • Support reading IPTC metadata from PNG and JPG files (#​2611)
  • Support reading ICC profile from GIF files (#​2644)
  • Allow setting a specific DEFLATE compression level when writing PNG (#​2583)
  • Initial support for 16-bit CMYK TIFF files (#​2588)
  • Allow extracting the alpha channel of a Pixel in a generic way (#​2638)

Structural changes:

  • EXR format decoding now only uses multi-threading via Rayon when the rayon feature is enabled (#​2643)
  • Upgraded zune-jpeg to 0.5.x, ravif to 0.12.x, gif to 0.14.x
  • pnm: parse integers in PBM/PGM/PPM headers without allocations (#​2620)
  • Replace doc_auto_cfg with doc_cfg (#​2637)

Bug fixes:

  • Do not encode empty JPEG images (#​2624)
  • tga: reject empty images (#​2614)
  • tga: fix orientation flip for color mapped images (#​2607)
  • tga: adjust colormap lookup to match tga 2.0 spec (#​2608)
twittner/minicbor (minicbor-serde)

v0.6.2

Compare Source

  • Add README.md
bourumir-wyngs/serde-saphyr (serde-saphyr)

v0.0.8: : protection hardening against memory exhaustion

Compare Source

This release incorporates all fixes made in response to feedback on version 0.0.7, including improvements to null-to-string deserialization, indentation of nested structures during serialization, proper quoting of map keys, and corrections to the ? operator in the reader.

It also includes a rewrite of the stream reader, introducing the methods serde_saphyr::read and serde_saphyr::read_with_options, which parse streams directly into an iterator. This iterator can yield documents (and enforce the budget) before the entire stream has been loaded into memory, protecting against memory-exhaustion attacks caused by extremely large or trivial inputs (for example, an all-zero stream). The release further includes performance enhancements and extensive new tests.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [axum-server](https://github.com/programatik29/axum-server) | workspace.dependencies | patch | `0.7.2` -> `0.7.3` | | [clap](https://github.com/clap-rs/clap) | workspace.dependencies | patch | `4.5.51` -> `4.5.52` | | [clap_builder](https://github.com/clap-rs/clap) | dependencies | patch | `4.5.51` -> `4.5.52` | | [image](https://github.com/image-rs/image) | workspace.dependencies | patch | `0.25.8` -> `0.25.9` | | [minicbor-serde](https://github.com/twittner/minicbor) | workspace.dependencies | patch | `0.6.1` -> `0.6.2` | | [serde-saphyr](https://github.com/bourumir-wyngs/serde-saphyr) | workspace.dependencies | patch | `0.0.7` -> `0.0.8` | --- ### Release Notes <details> <summary>programatik29/axum-server (axum-server)</summary> ### [`v0.7.3`](https://github.com/programatik29/axum-server/blob/HEAD/CHANGELOG.md#073-15-November-2025) [Compare Source](https://github.com/programatik29/axum-server/compare/v0.7.2...v0.7.3) - **fixed**: `axum-server` not compiling in hyper `1.8.0`. </details> <details> <summary>clap-rs/clap (clap)</summary> ### [`v4.5.52`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4552---2025-11-17) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.51...v4.5.52) ##### Fixes - Don't panic when `args_conflicts_with_subcommands` conflicts with an `ArgGroup` </details> <details> <summary>image-rs/image (image)</summary> ### [`v0.25.9`](https://github.com/image-rs/image/blob/HEAD/CHANGES.md#Version-0259) [Compare Source](https://github.com/image-rs/image/compare/v0.25.8...v0.25.9) Features: - Support extracting XMP metadata from PNG, JPEG, GIF, WebP and TIFF files ([#&#8203;2567](https://github.com/image-rs/image/issues/2567), [#&#8203;2634](https://github.com/image-rs/image/issues/2634), [#&#8203;2644](https://github.com/image-rs/image/issues/2644)) - Support reading IPTC metadata from PNG and JPG files ([#&#8203;2611](https://github.com/image-rs/image/issues/2611)) - Support reading ICC profile from GIF files ([#&#8203;2644](https://github.com/image-rs/image/issues/2644)) - Allow setting a specific DEFLATE compression level when writing PNG ([#&#8203;2583](https://github.com/image-rs/image/issues/2583)) - Initial support for 16-bit CMYK TIFF files ([#&#8203;2588](https://github.com/image-rs/image/issues/2588)) - Allow extracting the alpha channel of a `Pixel` in a generic way ([#&#8203;2638](https://github.com/image-rs/image/issues/2638)) Structural changes: - EXR format decoding now only uses multi-threading via Rayon when the `rayon` feature is enabled ([#&#8203;2643](https://github.com/image-rs/image/issues/2643)) - Upgraded zune-jpeg to 0.5.x, ravif to 0.12.x, gif to 0.14.x - pnm: parse integers in PBM/PGM/PPM headers without allocations ([#&#8203;2620](https://github.com/image-rs/image/issues/2620)) - Replace `doc_auto_cfg` with `doc_cfg` ([#&#8203;2637](https://github.com/image-rs/image/issues/2637)) Bug fixes: - Do not encode empty JPEG images ([#&#8203;2624](https://github.com/image-rs/image/issues/2624)) - tga: reject empty images ([#&#8203;2614](https://github.com/image-rs/image/issues/2614)) - tga: fix orientation flip for color mapped images ([#&#8203;2607](https://github.com/image-rs/image/issues/2607)) - tga: adjust colormap lookup to match tga 2.0 spec ([#&#8203;2608](https://github.com/image-rs/image/issues/2608)) </details> <details> <summary>twittner/minicbor (minicbor-serde)</summary> ### [`v0.6.2`](https://github.com/twittner/minicbor/blob/HEAD/CHANGELOG.md#062) [Compare Source](https://github.com/twittner/minicbor/compare/minicbor-serde-v0.6.1...minicbor-serde-v0.6.2) - Add README.md </details> <details> <summary>bourumir-wyngs/serde-saphyr (serde-saphyr)</summary> ### [`v0.0.8`](https://github.com/bourumir-wyngs/serde-saphyr/releases/tag/0.0.8): : protection hardening against memory exhaustion [Compare Source](https://github.com/bourumir-wyngs/serde-saphyr/compare/0.0.7...0.0.8) This release incorporates all fixes made in response to feedback on version 0.0.7, including improvements to null-to-string deserialization, indentation of nested structures during serialization, proper quoting of map keys, and corrections to the ? operator in the reader. It also includes a rewrite of the stream reader, introducing the methods serde\_saphyr::read and serde\_saphyr::read\_with\_options, which parse streams directly into an iterator. This iterator can yield documents (and enforce the budget) before the entire stream has been loaded into memory, protecting against memory-exhaustion attacks caused by extremely large or trivial inputs (for example, an all-zero stream). The release further includes performance enhancements and extensive new tests. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNDYuNCIsInVwZGF0ZWRJblZlciI6IjQxLjE0Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJEZXBlbmRlbmNpZXMiLCJEZXBlbmRlbmNpZXMvUmVub3ZhdGUiXX0=-->
chore(deps): update rust crate axum-server to v0.7.3
Some checks failed
Documentation / Build and Deploy Documentation (pull_request) Successful in 50s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 3m4s
Update flake hashes / update-flake-hashes (pull_request) Successful in 14s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 7m45s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 7m53s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 23m54s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Failing after 22s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 15m17s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 15m27s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 16s
ca7c713041
renovate force-pushed renovate/rust-patch-updates from ca7c713041
Some checks failed
Documentation / Build and Deploy Documentation (pull_request) Successful in 50s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 3m4s
Update flake hashes / update-flake-hashes (pull_request) Successful in 14s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 7m45s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 7m53s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 23m54s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Failing after 22s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 15m17s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 15m27s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 16s
to 02a0bd0056
Some checks failed
Documentation / Build and Deploy Documentation (pull_request) Successful in 53s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 3m17s
Update flake hashes / update-flake-hashes (pull_request) Successful in 18s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 8m4s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 8m33s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Failing after 19s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 24m12s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 15m51s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 15m59s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 23s
2025-11-16 05:04:57 +00:00
Compare
renovate changed title from chore(deps): update rust crate axum-server to v0.7.3 to chore(deps): update rust-patch-updates 2025-11-16 05:04:58 +00:00
ginger force-pushed renovate/rust-patch-updates from 02a0bd0056
Some checks failed
Documentation / Build and Deploy Documentation (pull_request) Successful in 53s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 3m17s
Update flake hashes / update-flake-hashes (pull_request) Successful in 18s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 8m4s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 8m33s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Failing after 19s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 24m12s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 15m51s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 15m59s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 23s
to 1e5998afac
Some checks failed
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m1s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m3s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 6m54s
Update flake hashes / update-flake-hashes (pull_request) Successful in 19s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 6m19s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Failing after 35s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 18m51s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 17m27s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 16m18s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 24s
2025-11-16 22:01:52 +00:00
Compare
ginger scheduled this pull request to auto merge when all checks succeed 2025-11-16 22:04:34 +00:00
ginger canceled auto merging this pull request when all checks succeed 2025-11-16 22:10:52 +00:00
ginger scheduled this pull request to auto merge when all checks succeed 2025-11-16 22:10:59 +00:00
renovate force-pushed renovate/rust-patch-updates from 1e5998afac
Some checks failed
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m1s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m3s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 6m54s
Update flake hashes / update-flake-hashes (pull_request) Successful in 19s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 6m19s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Failing after 35s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 18m51s
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 17m27s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 16m18s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 24s
to 71dd9800ae
Some checks failed
Documentation / Build and Deploy Documentation (pull_request) Failing after 9s
Checks / Prek / Pre-commit & Formatting (pull_request) Failing after 1m23s
Release Docker Image / Build linux-amd64 (release) (pull_request) Failing after 24s
Release Docker Image / Build linux-arm64 (release) (pull_request) Failing after 33s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Has been skipped
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Has been skipped
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Has been skipped
Release Docker Image / Create Max-Perf Manifest (pull_request) Has been skipped
Update flake hashes / update-flake-hashes (pull_request) Successful in 29s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 27m28s
2025-11-18 05:04:06 +00:00
Compare
ginger force-pushed renovate/rust-patch-updates from 71dd9800ae
Some checks failed
Documentation / Build and Deploy Documentation (pull_request) Failing after 9s
Checks / Prek / Pre-commit & Formatting (pull_request) Failing after 1m23s
Release Docker Image / Build linux-amd64 (release) (pull_request) Failing after 24s
Release Docker Image / Build linux-arm64 (release) (pull_request) Failing after 33s
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Has been skipped
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Has been skipped
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Has been skipped
Release Docker Image / Create Max-Perf Manifest (pull_request) Has been skipped
Update flake hashes / update-flake-hashes (pull_request) Successful in 29s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 27m28s
to 57c3290f02
Some checks failed
Documentation / Build and Deploy Documentation (pull_request) Failing after 9s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 3m11s
Update flake hashes / update-flake-hashes (pull_request) Successful in 37s
Release Docker Image / Build linux-arm64 (release) (pull_request) Successful in 10m12s
Release Docker Image / Build linux-amd64 (release) (pull_request) Successful in 10m24s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 18m52s
Release Docker Image / Build linux-amd64 (release) (push) Waiting to run
Release Docker Image / Build linux-arm64 (release) (push) Waiting to run
Release Docker Image / Create Multi-arch Release Manifest (push) Blocked by required conditions
Release Docker Image / Build linux-amd64 (max-perf) (push) Blocked by required conditions
Release Docker Image / Build linux-arm64 (max-perf) (push) Blocked by required conditions
Release Docker Image / Create Max-Perf Manifest (push) Blocked by required conditions
Release Docker Image / Create Multi-arch Release Manifest (pull_request) Successful in 19s
Documentation / Build and Deploy Documentation (push) Failing after 11s
Checks / Prek / Pre-commit & Formatting (push) Successful in 2m36s
Checks / Prek / Clippy and Cargo Tests (push) Has been cancelled
Release Docker Image / Build linux-amd64 (max-perf) (pull_request) Successful in 15m23s
Release Docker Image / Build linux-arm64 (max-perf) (pull_request) Successful in 15m15s
Release Docker Image / Create Max-Perf Manifest (pull_request) Successful in 22s
2025-11-21 14:25:56 +00:00
Compare
ginger merged commit 57c3290f02 into main 2025-11-21 14:45:03 +00:00
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
continuwuation/continuwuity!1169
No description provided.