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

Merged
ginger merged 1 commit from renovate/rust-zerover-patch-updates into main 2026-07-09 16:39:50 +00:00
Collaborator

This PR contains the following updates:

Package Type Update Change
sentry (source) workspace.dependencies patch 0.48.30.48.4
sentry-tower (source) workspace.dependencies patch 0.48.30.48.4
sentry-tracing (source) workspace.dependencies patch 0.48.30.48.4
tokio-metrics (source) workspace.dependencies patch 0.5.00.5.1

Release Notes

getsentry/sentry-rust (sentry)

v0.48.4

Compare Source

New Features
  • Added builder-style setters to ClientOptions (#​1221):

    // Before
    let options = sentry::ClientOptions {
        dsn: "https://examplePublicKey@o0.ingest.sentry.io/0",
        debug: true,
        release: Some("my-app@1.0.0".into()),
        ..Default::default()
    };
    
    // After
    let options = sentry::ClientOptions::new()
        .dsn("https://examplePublicKey@o0.ingest.sentry.io/0")
        .debug(true)
        .release("my-app@1.0.0");
    
Deprecations
  • Constructing ClientOptions with struct-literal syntax, including ..Default::default() functional update syntax, is deprecated and will stop compiling in the next breaking release, as we will mark ClientOptions as #[non_exhaustive] (#​1221). Reading and assigning individual public fields will remain supported. Please migrate to the builder-style setters introduced in this release.
tokio-rs/tokio-metrics (tokio-metrics)

v0.5.1

Compare Source

Fixed
  • make PollTimeHistogram available without tokio_unstable (#​131)
Other
  • describe relation to Dial9 (#​129)
  • replace version-pinned docs links in readme with latest (#​125)
  • Update tokio-metrics dependency version to 0.5 (#​124)

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 | |---|---|---|---| | [sentry](https://sentry.io/welcome/) ([source](https://github.com/getsentry/sentry-rust)) | workspace.dependencies | patch | `0.48.3` → `0.48.4` | | [sentry-tower](https://sentry.io/welcome/) ([source](https://github.com/getsentry/sentry-rust)) | workspace.dependencies | patch | `0.48.3` → `0.48.4` | | [sentry-tracing](https://sentry.io/welcome/) ([source](https://github.com/getsentry/sentry-rust)) | workspace.dependencies | patch | `0.48.3` → `0.48.4` | | [tokio-metrics](https://tokio.rs) ([source](https://github.com/tokio-rs/tokio-metrics)) | workspace.dependencies | patch | `0.5.0` → `0.5.1` | --- ### Release Notes <details> <summary>getsentry/sentry-rust (sentry)</summary> ### [`v0.48.4`](https://github.com/getsentry/sentry-rust/blob/HEAD/CHANGELOG.md#0484) [Compare Source](https://github.com/getsentry/sentry-rust/compare/0.48.3...0.48.4) ##### New Features - Added builder-style setters to [`ClientOptions`](https://docs.rs/sentry-core/0.48.3/sentry_core/struct.ClientOptions.html) ([#&#8203;1221](https://github.com/getsentry/sentry-rust/pull/1221)): ```rust // Before let options = sentry::ClientOptions { dsn: "https://examplePublicKey@o0.ingest.sentry.io/0", debug: true, release: Some("my-app@1.0.0".into()), ..Default::default() }; // After let options = sentry::ClientOptions::new() .dsn("https://examplePublicKey@o0.ingest.sentry.io/0") .debug(true) .release("my-app@1.0.0"); ``` ##### Deprecations - Constructing `ClientOptions` with struct-literal syntax, including `..Default::default()` functional update syntax, is deprecated and **will stop compiling in the next breaking release**, as we will mark `ClientOptions` as `#[non_exhaustive]` ([#&#8203;1221](https://github.com/getsentry/sentry-rust/pull/1221)). Reading and assigning individual public fields will remain supported. Please migrate to the builder-style setters introduced in this release. </details> <details> <summary>tokio-rs/tokio-metrics (tokio-metrics)</summary> ### [`v0.5.1`](https://github.com/tokio-rs/tokio-metrics/blob/HEAD/CHANGELOG.md#051---2026-07-08) [Compare Source](https://github.com/tokio-rs/tokio-metrics/compare/v0.5.0...v0.5.1) ##### Fixed - make PollTimeHistogram available without tokio\_unstable ([#&#8203;131](https://github.com/tokio-rs/tokio-metrics/pull/131)) ##### Other - describe relation to Dial9 ([#&#8203;129](https://github.com/tokio-rs/tokio-metrics/pull/129)) - replace version-pinned docs links in readme with latest ([#&#8203;125](https://github.com/tokio-rs/tokio-metrics/pull/125)) - Update tokio-metrics dependency version to 0.5 ([#&#8203;124](https://github.com/tokio-rs/tokio-metrics/pull/124)) </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:eyJjcmVhdGVkSW5WZXIiOiI0My4yNTIuMSIsInVwZGF0ZWRJblZlciI6IjQzLjI1Mi4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJEZXBlbmRlbmNpZXMiLCJEZXBlbmRlbmNpZXMvUmVub3ZhdGUiXX0=-->
renovate force-pushed renovate/rust-zerover-patch-updates from eceb0173c6
All checks were successful
Auto Labeler / Apply labels based on changed files (pull_request_target) Successful in 3s
Checks / Prek / Check changed files (pull_request) Successful in 6s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m1s
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 6s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m26s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m31s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 12m26s
to 70ebfb4446
All checks were successful
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 6s
Checks / Prek / Check changed files (pull_request) Successful in 4s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m16s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m7s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m11s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 11m23s
2026-07-09 05:03:31 +00:00
Compare
renovate changed title from chore(deps): update rust-zerover-patch-updates to v0.48.4 to chore(deps): update rust-zerover-patch-updates 2026-07-09 05:03:33 +00:00
ginger merged commit f5be5748f0 into main 2026-07-09 16:39:50 +00:00
ginger deleted branch renovate/rust-zerover-patch-updates 2026-07-09 16:39:50 +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!1925
No description provided.