chore(deps): update rust-zerover-patch-updates #1771

Merged
Jade merged 1 commit from renovate/rust-zerover-patch-updates into main 2026-05-15 19:20:33 +00:00
Collaborator

This PR contains the following updates:

Package Type Update Change
lettre (source) workspace.dependencies patch 0.11.210.11.22
nix workspace.dependencies patch 0.31.20.31.3
sentry (source) workspace.dependencies patch 0.48.00.48.2
sentry-tower (source) workspace.dependencies patch 0.48.00.48.2
sentry-tracing (source) workspace.dependencies patch 0.48.00.48.2
tower-http workspace.dependencies patch 0.6.80.6.10

Release Notes

lettre/lettre (lettre)

v0.11.22

Compare Source

Security
  • Fix inverted TLS hostname verification flag in boring-tls backend that silently disabled hostname verification (f5efffc)
Bug Fixes
  • Cap read_response buffer to prevent unbounded memory growth (#​1143)
Misc
  • Upgrade rustls-platform-verifier to v0.7 (#​1136)
nix-rust/nix (nix)

v0.31.3

Compare Source

Added
  • Enable module ioctl for Cygwin
    (#​2715)
  • Add
    CLOCK_BOOTTIME/CLOCK_PROCESS_CPUTIME_ID/CLOCK_THREAD_CPUTIME_ID/CLOCK_UPTIME
    to NetBSD-like platforms (#​2716)
  • unistd: add mkfifo for redox
    (#​2749)
  • Added kevent64 support on apple targets: Kqueue::kevent64, KEvent64,
    and Kevent64Flags. (#​2781)
Fixed
  • fix SaFlags_t definition on redox
    (#​2751)
  • Fixed EpollEvent::events() to use from_bits_retain instead of
    from_bits().unwrap(), preventing panics when the kernel returns
    unknown epoll flags. (#​2783)
  • Fixed KEvent::flags() and KEvent::fflags() to use from_bits_retain
    instead of from_bits().unwrap(), preventing panics when the kernel
    returns unknown kqueue flags.
    (#​2784)
getsentry/sentry-rust (sentry)

v0.48.2

Compare Source

New Features
  • Added rustls-no-provider feature flag in the sentry crate to allow using the rustls transport with a different crypto provider (#​1103).
Fixes
  • Serialize attachment envelope headers as JSON to correctly encode header values (#​1109).
  • Use checked arithmetic to handle possible overflows (#​1119, #​1121, #​1122).

v0.48.1

Compare Source

Fixes
  • Changed ClientOptions::enable_metrics to default to true, aligning metrics behavior with other Sentry SDKs (#​1106). Metric capture APIs still require the metrics feature flag at compile time.
tower-rs/tower-http (tower-http)

v0.6.10

Compare Source

Added

  • follow-redirect: expose Attempt::method() and Attempt::previous_method()
    so redirect policies can react to method changes across redirects (e.g.
    POST to GET on 301/303) (#​559)

Fixed

  • Restore tokio and async-compression as no-op features. These will be
    removed next breaking release (#​667)

What's Changed

New Contributors

Full Changelog: https://github.com/tower-rs/tower-http/compare/tower-http-0.6.9...tower-http-0.6.10

v0.6.9

Compare Source

Added:

  • on-early-drop: middleware that detects when a response future or response
    body is dropped before completion (#​636)

    Two events get hooks: the response future being dropped before
    the inner service produces a response, and the response body being
    dropped before reaching end-of-stream.

    Install custom callbacks with OnEarlyDropLayer::builder():

    use http::Request;
    use tower_http::on_early_drop::{OnBodyDropFn, OnEarlyDropLayer};
    
    let layer = OnEarlyDropLayer::builder()
        .on_future_drop(|req: &Request<()>| {
            let uri = req.uri().clone();
            move || eprintln!("future dropped for {}", uri)
        })
        .on_body_drop(OnBodyDropFn::new(|req: &Request<()>| {
            let uri = req.uri().clone();
            move |parts: &http::response::Parts| {
                let status = parts.status;
                move || eprintln!("body dropped for {} status {}", uri, status)
            }
        }));
    

    Or route both events through a trace::OnFailure hook with
    EarlyDropsAsFailures. Place this layer inside a TraceLayer so the
    emitted events inherit the request span:

    use tower::ServiceBuilder;
    use tower_http::on_early_drop::{OnEarlyDropLayer, EarlyDropsAsFailures};
    use tower_http::trace::{DefaultOnFailure, TraceLayer};
    
    let stack = ServiceBuilder::new()
        .layer(TraceLayer::new_for_http())
        .layer(OnEarlyDropLayer::new(
            EarlyDropsAsFailures::new(DefaultOnFailure::default()),
        ));
    
  • fs: make AsyncReadBody::with_capacity public (#​415)

Changed:

  • The implicit async-compression feature is removed (#​642)
  • The implicit tokio feature is removed (#​628)
  • fs: no longer auto-enables the tracing crate feature; enable tracing
    explicitly to restore error logging on ServeDir IO failures (#​614)

Fixed

  • trace: restore failure classification at end-of-stream (#​483)
  • follow-redirect: support unicode URLs (swaps iri-string dep for
    url) (#​646)
  • fs: reject reserved Windows DOS device names (CON, COM1, etc.) in
    ServeDir (#​663)

All the PRs

New Contributors

Full Changelog: https://github.com/tower-rs/tower-http/compare/tower-http-0.6.8...tower-http-0.6.9


Configuration

📅 Schedule: (UTC)

  • 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 Mend Renovate.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [lettre](https://lettre.rs) ([source](https://github.com/lettre/lettre)) | workspace.dependencies | patch | `0.11.21` → `0.11.22` | | [nix](https://github.com/nix-rust/nix) | workspace.dependencies | patch | `0.31.2` → `0.31.3` | | [sentry](https://sentry.io/welcome/) ([source](https://github.com/getsentry/sentry-rust)) | workspace.dependencies | patch | `0.48.0` → `0.48.2` | | [sentry-tower](https://sentry.io/welcome/) ([source](https://github.com/getsentry/sentry-rust)) | workspace.dependencies | patch | `0.48.0` → `0.48.2` | | [sentry-tracing](https://sentry.io/welcome/) ([source](https://github.com/getsentry/sentry-rust)) | workspace.dependencies | patch | `0.48.0` → `0.48.2` | | [tower-http](https://github.com/tower-rs/tower-http) | workspace.dependencies | patch | `0.6.8` → `0.6.10` | --- ### Release Notes <details> <summary>lettre/lettre (lettre)</summary> ### [`v0.11.22`](https://github.com/lettre/lettre/blob/HEAD/CHANGELOG.md#v01122-2026-05-14) [Compare Source](https://github.com/lettre/lettre/compare/v0.11.21...v0.11.22) ##### Security - Fix inverted TLS hostname verification flag in `boring-tls` backend that silently disabled hostname verification ([f5efffc]) ##### Bug Fixes - Cap `read_response` buffer to prevent unbounded memory growth ([#&#8203;1143]) ##### Misc - Upgrade `rustls-platform-verifier` to v0.7 ([#&#8203;1136]) [f5efffc]: https://github.com/lettre/lettre/commit/f5efffc88360dbdbfcef80f465e42d5bce68ca35 [#&#8203;1136]: https://github.com/lettre/lettre/pull/1136 [#&#8203;1143]: https://github.com/lettre/lettre/pull/1143 </details> <details> <summary>nix-rust/nix (nix)</summary> ### [`v0.31.3`](https://github.com/nix-rust/nix/blob/HEAD/CHANGELOG.md#0313---2026-05-11) [Compare Source](https://github.com/nix-rust/nix/compare/v0.31.2...v0.31.3) ##### Added - Enable module `ioctl` for Cygwin ([#&#8203;2715](https://github.com/nix-rust/nix/pull/2715)) - Add `CLOCK_BOOTTIME/CLOCK_PROCESS_CPUTIME_ID/CLOCK_THREAD_CPUTIME_ID/CLOCK_UPTIME` to NetBSD-like platforms ([#&#8203;2716](https://github.com/nix-rust/nix/pull/2716)) - unistd: add mkfifo for redox ([#&#8203;2749](https://github.com/nix-rust/nix/pull/2749)) - Added `kevent64` support on apple targets: `Kqueue::kevent64`, `KEvent64`, and `Kevent64Flags`. ([#&#8203;2781](https://github.com/nix-rust/nix/pull/2781)) ##### Fixed - fix SaFlags\_t definition on redox ([#&#8203;2751](https://github.com/nix-rust/nix/pull/2751)) - Fixed `EpollEvent::events()` to use `from_bits_retain` instead of `from_bits().unwrap()`, preventing panics when the kernel returns unknown epoll flags. ([#&#8203;2783](https://github.com/nix-rust/nix/pull/2783)) - Fixed `KEvent::flags()` and `KEvent::fflags()` to use `from_bits_retain` instead of `from_bits().unwrap()`, preventing panics when the kernel returns unknown kqueue flags. ([#&#8203;2784](https://github.com/nix-rust/nix/pull/2784)) </details> <details> <summary>getsentry/sentry-rust (sentry)</summary> ### [`v0.48.2`](https://github.com/getsentry/sentry-rust/blob/HEAD/CHANGELOG.md#0482) [Compare Source](https://github.com/getsentry/sentry-rust/compare/0.48.1...0.48.2) ##### New Features - Added `rustls-no-provider` feature flag in the `sentry` crate to allow using the `rustls` transport with a different crypto provider ([#&#8203;1103](https://github.com/getsentry/sentry-rust/pull/1103)). ##### Fixes - Serialize attachment envelope headers as JSON to correctly encode header values ([#&#8203;1109](https://github.com/getsentry/sentry-rust/pull/1109)). - Use checked arithmetic to handle possible overflows ([#&#8203;1119](https://github.com/getsentry/sentry-rust/pull/1119), [#&#8203;1121](https://github.com/getsentry/sentry-rust/pull/1121), [#&#8203;1122](https://github.com/getsentry/sentry-rust/pull/1122)). ### [`v0.48.1`](https://github.com/getsentry/sentry-rust/blob/HEAD/CHANGELOG.md#0481) [Compare Source](https://github.com/getsentry/sentry-rust/compare/0.48.0...0.48.1) ##### Fixes - Changed [`ClientOptions::enable_metrics`](https://docs.rs/sentry-core/latest/sentry_core/struct.ClientOptions.html#structfield.enable_metrics) to default to `true`, aligning metrics behavior with other Sentry SDKs ([#&#8203;1106](https://github.com/getsentry/sentry-rust/issues/1106)). Metric capture APIs still require the `metrics` feature flag at compile time. </details> <details> <summary>tower-rs/tower-http (tower-http)</summary> ### [`v0.6.10`](https://github.com/tower-rs/tower-http/releases/tag/tower-http-0.6.10) [Compare Source](https://github.com/tower-rs/tower-http/compare/tower-http-0.6.9...tower-http-0.6.10) #### Added - `follow-redirect`: expose `Attempt::method()` and `Attempt::previous_method()` so redirect policies can react to method changes across redirects (e.g. POST to GET on 301/303) ([#&#8203;559]) #### Fixed - Restore `tokio` and `async-compression` as no-op features. These will be removed next breaking release ([#&#8203;667]) [#&#8203;559]: https://github.com/tower-rs/tower-http/pull/559 [#&#8203;667]: https://github.com/tower-rs/tower-http/pull/667 #### What's Changed - fix: restore tokio and async-compression as no-op features by [@&#8203;jlizen](https://github.com/jlizen) in [#&#8203;667](https://github.com/tower-rs/tower-http/pull/667) - fix gate-ing of atomic64 in tests by [@&#8203;alexanderkjall](https://github.com/alexanderkjall) in [#&#8203;607](https://github.com/tower-rs/tower-http/pull/607) - follow\_redirect: expose previous and next request methods by [@&#8203;lucab](https://github.com/lucab) in [#&#8203;559](https://github.com/tower-rs/tower-http/pull/559) - chore: release tower-http 0.6.10 by [@&#8203;jlizen](https://github.com/jlizen) in [#&#8203;669](https://github.com/tower-rs/tower-http/pull/669) #### New Contributors - [@&#8203;lucab](https://github.com/lucab) made their first contribution in [#&#8203;559](https://github.com/tower-rs/tower-http/pull/559) **Full Changelog**: <https://github.com/tower-rs/tower-http/compare/tower-http-0.6.9...tower-http-0.6.10> ### [`v0.6.9`](https://github.com/tower-rs/tower-http/releases/tag/tower-http-0.6.9) [Compare Source](https://github.com/tower-rs/tower-http/compare/tower-http-0.6.8...tower-http-0.6.9) #### Added: - `on-early-drop`: middleware that detects when a response future or response body is dropped before completion ([#&#8203;636]) Two events get hooks: the response future being dropped before the inner service produces a response, and the response body being dropped before reaching end-of-stream. Install custom callbacks with `OnEarlyDropLayer::builder()`: ```rust use http::Request; use tower_http::on_early_drop::{OnBodyDropFn, OnEarlyDropLayer}; let layer = OnEarlyDropLayer::builder() .on_future_drop(|req: &Request<()>| { let uri = req.uri().clone(); move || eprintln!("future dropped for {}", uri) }) .on_body_drop(OnBodyDropFn::new(|req: &Request<()>| { let uri = req.uri().clone(); move |parts: &http::response::Parts| { let status = parts.status; move || eprintln!("body dropped for {} status {}", uri, status) } })); ``` Or route both events through a `trace::OnFailure` hook with `EarlyDropsAsFailures`. Place this layer inside a `TraceLayer` so the emitted events inherit the request span: ```rust use tower::ServiceBuilder; use tower_http::on_early_drop::{OnEarlyDropLayer, EarlyDropsAsFailures}; use tower_http::trace::{DefaultOnFailure, TraceLayer}; let stack = ServiceBuilder::new() .layer(TraceLayer::new_for_http()) .layer(OnEarlyDropLayer::new( EarlyDropsAsFailures::new(DefaultOnFailure::default()), )); ``` - `fs`: make `AsyncReadBody::with_capacity` public ([#&#8203;415]) #### Changed: - The implicit `async-compression` feature is removed ([#&#8203;642]) - The implicit `tokio` feature is removed ([#&#8203;628]) - `fs`: no longer auto-enables the `tracing` crate feature; enable `tracing` explicitly to restore error logging on `ServeDir` IO failures ([#&#8203;614]) #### Fixed - `trace`: restore failure classification at end-of-stream ([#&#8203;483]) - `follow-redirect`: support unicode URLs (swaps `iri-string` dep for `url`) ([#&#8203;646]) - `fs`: reject reserved Windows DOS device names (`CON`, `COM1`, etc.) in `ServeDir` ([#&#8203;663]) [#&#8203;415]: https://github.com/tower-rs/tower-http/pull/415 [#&#8203;483]: https://github.com/tower-rs/tower-http/pull/483 [#&#8203;614]: https://github.com/tower-rs/tower-http/pull/614 [#&#8203;628]: https://github.com/tower-rs/tower-http/pull/628 [#&#8203;636]: https://github.com/tower-rs/tower-http/pull/636 [#&#8203;642]: https://github.com/tower-rs/tower-http/pull/642 [#&#8203;646]: https://github.com/tower-rs/tower-http/pull/646 [#&#8203;663]: https://github.com/tower-rs/tower-http/pull/663 #### All the PRs - ci: update deny action to v2 by [@&#8203;seanmonstar](https://github.com/seanmonstar) in [#&#8203;627](https://github.com/tower-rs/tower-http/pull/627) - chore: improve code comments clarity by [@&#8203;xibeiyoumian](https://github.com/xibeiyoumian) in [#&#8203;626](https://github.com/tower-rs/tower-http/pull/626) - ci: Update to actions/checkout v6 by [@&#8203;tottoto](https://github.com/tottoto) in [#&#8203;629](https://github.com/tower-rs/tower-http/pull/629) - ci: msrv resolver by [@&#8203;seanmonstar](https://github.com/seanmonstar) in [#&#8203;635](https://github.com/tower-rs/tower-http/pull/635) - chore: Remove resolved cargo-deny config by [@&#8203;tottoto](https://github.com/tottoto) in [#&#8203;631](https://github.com/tower-rs/tower-http/pull/631) - ci: Update to cargo-check-external-types 0.4.0 by [@&#8203;tottoto](https://github.com/tottoto) in [#&#8203;633](https://github.com/tower-rs/tower-http/pull/633) - examples: Use typed default value clap config by [@&#8203;tottoto](https://github.com/tottoto) in [#&#8203;634](https://github.com/tower-rs/tower-http/pull/634) - examples: Disable unused reqwest feature by [@&#8203;tottoto](https://github.com/tottoto) in [#&#8203;632](https://github.com/tower-rs/tower-http/pull/632) - examples: Update to reqwest 0.13 by [@&#8203;tottoto](https://github.com/tottoto) in [#&#8203;640](https://github.com/tower-rs/tower-http/pull/640) - Fix clippy warnings in warp-key-value-store example by [@&#8203;jplatte](https://github.com/jplatte) in [#&#8203;637](https://github.com/tower-rs/tower-http/pull/637) - ci: Use Swatinem/rust-cache\@&#8203;v2 to cache by [@&#8203;tottoto](https://github.com/tottoto) in [#&#8203;644](https://github.com/tower-rs/tower-http/pull/644) - ci: Remove unused working-directory config by [@&#8203;tottoto](https://github.com/tottoto) in [#&#8203;645](https://github.com/tower-rs/tower-http/pull/645) - Use cargo-deny graph config by [@&#8203;tottoto](https://github.com/tottoto) in [#&#8203;639](https://github.com/tower-rs/tower-http/pull/639) - Fix: follow redirect unicode in [#&#8203;646](https://github.com/tower-rs/tower-http/pull/646) - doc: remove mention of deprecated bearer method in lib.rs comment by [@&#8203;VojtaStanek](https://github.com/VojtaStanek) in [#&#8203;641](https://github.com/tower-rs/tower-http/pull/641) - Allow Unicode-3.0 license by [@&#8203;tottoto](https://github.com/tottoto) in [#&#8203;648](https://github.com/tower-rs/tower-http/pull/648) - fix(docs): typo by [@&#8203;carlocorradini](https://github.com/carlocorradini) in [#&#8203;649](https://github.com/tower-rs/tower-http/pull/649) - fix: remove unused GzEncoder import in decompression in [#&#8203;647](https://github.com/tower-rs/tower-http/pull/647) - docs: update Example server in [#&#8203;652](https://github.com/tower-rs/tower-http/pull/652) - Don't automatically enable tracing for fs feature by [@&#8203;ginnyTheCat](https://github.com/ginnyTheCat) in [#&#8203;614](https://github.com/tower-rs/tower-http/pull/614) - examples: Remove unnecessary trait bound by [@&#8203;tottoto](https://github.com/tottoto) in [#&#8203;651](https://github.com/tower-rs/tower-http/pull/651) - Remove implicit async-compression feature by [@&#8203;tottoto](https://github.com/tottoto) in [#&#8203;642](https://github.com/tower-rs/tower-http/pull/642) - fix clippy warnings by [@&#8203;alexanderkjall](https://github.com/alexanderkjall) in [#&#8203;659](https://github.com/tower-rs/tower-http/pull/659) - Check for reserved DOS names by [@&#8203;Darksonn](https://github.com/Darksonn) in [#&#8203;663](https://github.com/tower-rs/tower-http/pull/663) - enable clippy for tower-http and fix current issues by [@&#8203;GlenDC](https://github.com/GlenDC) in [#&#8203;407](https://github.com/tower-rs/tower-http/pull/407) - chore: remove implicit tokio feature by [@&#8203;WaterWhisperer](https://github.com/WaterWhisperer) in [#&#8203;628](https://github.com/tower-rs/tower-http/pull/628) - trace: adds back call to classify\_eos on trailers by [@&#8203;markdingram](https://github.com/markdingram) in [#&#8203;483](https://github.com/tower-rs/tower-http/pull/483) - Make AsyncReadBody::with\_capacity public by [@&#8203;bouk](https://github.com/bouk) in [#&#8203;415](https://github.com/tower-rs/tower-http/pull/415) - examples: Use axum::body::to\_bytes by [@&#8203;tottoto](https://github.com/tottoto) in [#&#8203;650](https://github.com/tower-rs/tower-http/pull/650) - ci: Remove unnecessary protoc setup by [@&#8203;tottoto](https://github.com/tottoto) in [#&#8203;665](https://github.com/tower-rs/tower-http/pull/665) - feat(on-early-drop): Add middleware for client early drop detection by [@&#8203;fbergero](https://github.com/fbergero) in [#&#8203;636](https://github.com/tower-rs/tower-http/pull/636) - chore: release tower-http 0.6.9 by [@&#8203;jlizen](https://github.com/jlizen) in [#&#8203;666](https://github.com/tower-rs/tower-http/pull/666) #### New Contributors - [@&#8203;xibeiyoumian](https://github.com/xibeiyoumian) made their first contribution in [#&#8203;626](https://github.com/tower-rs/tower-http/pull/626) - [@&#8203;VojtaStanek](https://github.com/VojtaStanek) made their first contribution in [#&#8203;641](https://github.com/tower-rs/tower-http/pull/641) - [@&#8203;carlocorradini](https://github.com/carlocorradini) made their first contribution in [#&#8203;649](https://github.com/tower-rs/tower-http/pull/649) - [@&#8203;ginnyTheCat](https://github.com/ginnyTheCat) made their first contribution in [#&#8203;614](https://github.com/tower-rs/tower-http/pull/614) - [@&#8203;alexanderkjall](https://github.com/alexanderkjall) made their first contribution in [#&#8203;659](https://github.com/tower-rs/tower-http/pull/659) - [@&#8203;Darksonn](https://github.com/Darksonn) made their first contribution in [#&#8203;663](https://github.com/tower-rs/tower-http/pull/663) - [@&#8203;WaterWhisperer](https://github.com/WaterWhisperer) made their first contribution in [#&#8203;628](https://github.com/tower-rs/tower-http/pull/628) - [@&#8203;bouk](https://github.com/bouk) made their first contribution in [#&#8203;415](https://github.com/tower-rs/tower-http/pull/415) - [@&#8203;fbergero](https://github.com/fbergero) made their first contribution in [#&#8203;636](https://github.com/tower-rs/tower-http/pull/636) - [@&#8203;jlizen](https://github.com/jlizen) made their first contribution in [#&#8203;666](https://github.com/tower-rs/tower-http/pull/666) **Full Changelog**: <https://github.com/tower-rs/tower-http/compare/tower-http-0.6.8...tower-http-0.6.9> </details> --- ### Configuration 📅 **Schedule**: (UTC) - 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 [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNDAuMCIsInVwZGF0ZWRJblZlciI6IjQzLjE0MC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJEZXBlbmRlbmNpZXMiLCJEZXBlbmRlbmNpZXMvUmVub3ZhdGUiXX0=-->
chore(deps): update rust-zerover-patch-updates
All checks were successful
Auto Labeler / Apply labels based on changed files (pull_request_target) Successful in 5s
Checks / Prek / Check changed files (pull_request) Successful in 33s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m28s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m48s
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 32s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m53s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 10m53s
Checks / Prek / Check changed files (push) Successful in 7s
Documentation / Build and Deploy Documentation (push) Successful in 2m0s
Checks / Prek / Pre-commit & Formatting (push) Successful in 3m46s
Release Docker Image / Build linux-arm64 (release) (push) Successful in 13m17s
Checks / Prek / Clippy and Cargo Tests (push) Successful in 11m36s
Release Docker Image / Build linux-amd64 (release) (push) Successful in 18m58s
Release Docker Image / Create Multi-arch Release Manifest (push) Successful in 22s
Release Docker Image / Build linux-amd64 (max-perf) (push) Successful in 40m2s
Release Docker Image / Build linux-arm64 (max-perf) (push) Successful in 1h5m59s
Release Docker Image / Release Binaries (push) Has been skipped
Release Docker Image / Create Max-Perf Manifest (push) Successful in 18s
Release Docker Image / Mirror Images (push) Successful in 2m13s
466c98677c
Jade merged commit 466c98677c into main 2026-05-15 19:20:33 +00:00
Jade deleted branch renovate/rust-zerover-patch-updates 2026-05-15 19:20:33 +00:00
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
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!1771
No description provided.