Skip to content

fix(deps): update all non-major dependencies#766

Closed
renovate[bot] wants to merge 2 commits intomainfrom
renovate/all-minor-patch
Closed

fix(deps): update all non-major dependencies#766
renovate[bot] wants to merge 2 commits intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Feb 24, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@eslint/js (source) 9.39.39.39.4 age confidence devDependencies patch
@types/node (source) 24.10.1324.12.0 age confidence devDependencies minor
anyhow 1.0.1001.0.102 age confidence dependencies patch
autoprefixer 10.4.2410.4.27 age confidence dependencies patch
axum 0.8.40.8.8 age confidence dependencies patch
bon (source) 3.6.53.9.0 age confidence dependencies minor
chrono 0.4.410.4.44 age confidence dependencies patch
clap 4.5.414.5.60 age confidence dependencies patch
eslint (source) 9.39.39.39.4 age confidence devDependencies patch
futures (source) 0.3.310.3.32 age confidence dependencies patch
globals 17.3.017.4.0 age confidence devDependencies minor
humantime 2.2.02.3.0 age confidence dependencies minor
lettre (source) 0.11.180.11.19 age confidence dependencies patch
log 0.4.270.4.29 age confidence dependencies patch
lucide-react (source) ^0.575.0^0.577.0 age confidence dependencies minor
metrics 0.24.20.24.3 age confidence dependencies patch
openai 6.24.06.27.0 age confidence dependencies minor
postgresql_embedded 0.20.00.20.2 age confidence dependencies patch
react-day-picker (source) 9.13.29.14.0 age confidence dependencies minor
react-syntax-highlighter 16.1.016.1.1 age confidence dependencies patch
rollup-plugin-visualizer 7.0.07.0.1 age confidence devDependencies patch
rust-embed 8.9.08.11.0 age confidence dependencies minor
rust_decimal 1.38.01.40.0 age confidence dependencies minor
rustls 0.23.290.23.37 age confidence dependencies patch
serde_json 1.0.1451.0.149 age confidence dependencies patch
serde_with 3.14.13.17.0 age confidence dependencies minor
serial_test 3.2.03.4.0 age confidence dev-dependencies minor
tempfile (source) 3.23.03.26.0 age confidence dev-dependencies minor
test-log 0.2.180.2.19 age confidence dev-dependencies patch
thiserror 2.0.172.0.18 age confidence dependencies patch
tokio (source) 1.47.11.50.0 age confidence dependencies minor
tokio-stream (source) 0.1.170.1.18 age confidence dependencies patch
tokio-test (source) 0.4.40.4.5 age confidence dev-dependencies patch
tokio-util (source) 0.7.150.7.18 age confidence dependencies patch
tower 0.5.20.5.3 age confidence dependencies patch
tower-http 0.6.60.6.8 age confidence dependencies patch
tracing (source) 0.1.410.1.44 age confidence dependencies patch
tracing-subscriber (source) 0.3.200.3.22 age confidence dependencies patch
url 2.5.72.5.8 age confidence dependencies patch
uuid 1.17.01.22.0 age confidence dependencies minor

Release Notes

eslint/eslint (@​eslint/js)

v9.39.4

Compare Source

dtolnay/anyhow (anyhow)

v1.0.102

Compare Source

v1.0.101

Compare Source

postcss/autoprefixer (autoprefixer)

v10.4.27

Compare Source

  • Removed development key from package.json.

v10.4.26

Compare Source

  • Reduced package size.

v10.4.25

Compare Source

  • Fixed broken gradients on CSS Custom Properties (by @​serger777).
tokio-rs/axum (axum)

v0.8.8: axum v0.8.8

Compare Source

  • Clarify documentation for Router::route_layer (#​3567)

v0.8.7: axum v0.8.7

Compare Source

  • Relax implicit Send / Sync bounds on RouterAsService, RouterIntoService (#​3555)
  • Make it easier to visually scan for default features (#​3550)
  • Fix some documentation typos

v0.8.6

Compare Source

v0.8.5: axum v0.8.5

Compare Source

  • fixed: Reject JSON request bodies with trailing characters after the JSON document (#​3453)
  • added: Implement OptionalFromRequest for Multipart (#​3220)
  • added: Getter methods Location::{status_code, location}
  • added: Support for writing arbitrary binary data into server-sent events (#​3425)]
  • added: middleware::ResponseAxumBodyLayer for mapping response body to axum::body::Body (#​3469)
  • added: impl FusedStream for WebSocket (#​3443)
  • changed: The sse module and Sse type no longer depend on the tokio feature (#​3154)
  • changed: If the location given to one of Redirects constructors is not a valid header value, instead of panicking on construction, the IntoResponse impl now returns an HTTP 500, just like Json does when serialization fails (#​3377)
  • changed: Update minimum rust version to 1.78 (#​3412)
elastio/bon (bon)

v3.9.0

Compare Source

Added
Internal

v3.8.2

Compare Source

Fixed
  • Don't attempt to compile big default value showcases as ignored rust doctests (#​360)
Internal

v3.8.1

Compare Source

Fixed
  • Fix clippy::wrong_self_convention warning for fields with is_ prefix etc. (#​349). Thanks @​nicmue for the contribution!
Internal
  • Add a regression test for clippy::wrong_self_convention (#​350)

v3.8.0

Compare Source

Lint Update Notice

This release brings some rustdoc improvements and no other visible API changes except that rustc and clippy will start reporting some more true-positive lints. For example builder methods defined via an impl block annotated with #[bon] will now be correctly reported as unused if they are not used. Also, using a private type in a public builder method will trigger a private_interfaces lint now.

This is all thanks to the updated span handling design researched and implemented by @​Eisverygoodletter. It's not clear what other new lints the new span handling may trigger in other realworld codebases. If you see a lint from the code generated by bon that you think shouldn't be there, please, open an issue, and it'll be fixed as soon as possible!

Changed
  • Make rustdoc source links for the starting function reference original function (#​341). Thanks @​Eisverygoodletter for the contribution!
  • Make rustdoc source links for setters/getters reference original member (#​345)
Internal

v3.7.2

Compare Source

Fixed
  • Add missing lifetime replacement for generic param declarations on derive(IntoFuture) impl block (#​337)
  • Set the lower bound requirement of rustversion to v1.0.19 (#​336). Thanks @​Fokko for the contribution!

v3.7.1

Compare Source

This is a small patch release to make bon easier to package for Debian.

Other
  • Add Copyright header to the MIT License (#​331)
Internal
  • Fix MSRV tests and lints from nightly 13-08-2025 (#​329)
  • Revert refactoring PR 320 to make code compatible with darling 0.20 (#​332)

v3.7.0

Compare Source

Added
Fixed
  • Add missing where clause forwarding to #[builder(derive(Into))] (#​325)
Internal
  • Make tests pass without the experimental-overwritable feature (#​326)
  • Sunset financial support by Kindness (#​324)
  • Fix clippy lints from nightly (2025-08-09) (#​323)
chronotope/chrono (chrono)

v0.4.44: 0.4.44

Compare Source

What's Changed

v0.4.43: 0.4.43

Compare Source

What's Changed

v0.4.42: 0.4.42

Compare Source

What's Changed

clap-rs/clap (clap)

v4.5.60

Compare Source

Fixes
  • (help) Quote empty default values, possible values

v4.5.59

Compare Source

Fixes
  • Command::ignore_errors no longer masks help/version on subcommands

v4.5.58

Compare Source

v4.5.57

Compare Source

Fixes
  • Regression from 4.5.55 where having an argument with .value_terminator("--") caused problems with an argument with .last(true)

v4.5.56

Compare Source

Fixes
  • On conflict error, don't show conflicting arguments in the usage

v4.5.55

Compare Source

Fixes
  • Fix inconsistency in precedence between positionals with a value_terminator("--") and escapes (--) where ./foo -- bar means the first arg is empty, rather than escaping future args

v4.5.54

Compare Source

Fixes
  • (help) Move [default] to its own paragraph when PossibleValue::help is present in --help

v4.5.53

Compare Source

Features
  • Add default_values_if, default_values_ifs

v4.5.52

Compare Source

Fixes
  • Don't panic when args_conflicts_with_subcommands conflicts with an ArgGroup

v4.5.51

Compare Source

Fixes
  • (help) Correctly calculate padding for short flags that take a value
  • (help) Don't panic on short flags using ArgAction::Count

v4.5.50

Compare Source

Features
  • Accept Cow where String and &str are accepted

v4.5.49

Compare Source

Fixes
  • (help) Correctly wrap when ANSI escape codes are present

v4.5.48

Compare Source

Documentation
  • Add a new CLI Concepts document as another way of framing clap
  • Expand the typed_derive cookbook entry

v4.5.47

Compare Source

Features
  • Added impl FromArgMatches for ()
  • Added impl Args for ()
  • Added impl Subcommand for ()
  • Added impl FromArgMatches for Infallible
  • Added impl Subcommand for Infallible
Fixes
  • (derive) Update runtime error text to match clap

v4.5.46

Compare Source

Features
  • Expose StyledStr::push_str

v4.5.45

Compare Source

Fixes
  • (unstable-v5) ValueEnum variants now use the full doc comment, not summary, for PossibleValue::help

v4.5.44

Compare Source

Features
  • Add Command::mut_subcommands

v4.5.43

Compare Source

Fixes
  • (help) In long help, list Possible Values before defaults, rather than after, for a more consistent look

v4.5.42

Compare Source

Fixes
  • Include subcommand visible long aliases in --help
eslint/eslint (eslint)

v9.39.4

Compare Source

Bug Fixes

Documentation

Chores

rust-lang/futures-rs (futures)

v0.3.32

Compare Source

  • Bump MSRV of utility crates to 1.71. (#​2989)
  • Soft-deprecate ready! macro in favor of std::task::ready! added in Rust 1.64 (#​2925)
  • Soft-deprecate pin_mut! macro in favor of std::pin::pin! added in Rust 1.68 (#​2929)
  • Add FuturesOrdered::clear (#​2927)
  • Add mpsc::*Receiver::recv (#​2947)
  • Add mpsc::*Receiver::try_recv and deprecate mpsc::*Receiver::::try_next (#​2944)
  • Implement FusedStream for sink::With (#​2948)
  • Add no_std support for shared (#​2868)
  • Make Mutex::new() const (#​2956)
  • Add #[clippy::has_significant_drop] to guards (#​2967)
  • Remove dependency to pin-utils (#​2929)
  • Remove dependency on num_cpus (#​2946)
  • Performance improvements (#​2983)
  • Documentation improvements (#​2925, #​2926, #​2940, #​2971)
sindresorhus/globals (globals)

v17.4.0

Compare Source

chronotope/humantime (humantime)

v2.3.0: 2.3.0

Compare Source

What's Changed

lettre/lettre (lettre)

v0.11.19

Compare Source

Features
  • Add raw header setter to MessageBuilder (#​1108)
Misc
  • Fix README example (#​1114)
  • Replace custom static_assert! macro with std::assert! (#​1112)
rust-lang/log (log)

v0.4.29

Compare Source

v0.4.28

Compare Source

lucide-icons/lucide (lucide-react)

v0.577.0: Version 0.577.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.576.0...0.577.0

v0.576.0: Version 0.576.0

Compare Source

What's Changed

Full Changelog: lucide-icons/lucide@0.575.0...0.576.0

metrics-rs/metrics (metrics)

v0.24.3

Compare Source

openai/openai-node (openai)

v6.27.0

Compare Source

Full Changelog: v6.26.0...v6.27.0

Features
  • api: The GA ComputerTool now uses the CompuerTool class. The 'computer_use_preview' tool is moved to ComputerUsePreview (0206188)
Chores
  • internal: improve import alias names (9cc2478)

v6.26.0

Compare Source

Full Changelog: v6.26.0...v6.27.0

Features
  • api: The GA ComputerTool now uses the CompuerTool class. The 'computer_use_preview' tool is moved to ComputerUsePreview (0206188)
Chores
  • internal: improve import alias names (9cc2478)

v6.25.0

Compare Source

Full Changelog: v6.24.0...v6.25.0

Features
Bug Fixes
Chores
  • internal: refactor sse event parsing (0ea2380)
theseus-rs/postgresql-embedded (postgresql_embedded)

v0.20.2

Compare Source

Other
  • remove num-format dependency

v0.20.1

Compare Source

Other
  • update rust to 1.92.0
  • reduce map_err by adding some From implementations
gpbl/react-day-picker (react-day-picker)

v9.14.0

Compare Source

Release date: 2026-02-26

This release introduces a new resetOnSelect prop and adds support for the Hijri calendar.

Resetting Selections in Range Mode

When in range selection mode, use the resetOnSelect prop to start a new range when a full range is already selected.

Hijri Calendar

To use the Hijri (Umm al-Qura) calendar, import DayPicker from react-day-picker/hijri:

import { DayPicker } from "react-day-picker/hijri";

export function HijriCalendar() {
  return <DayPicker />;
}

Read more in the documentation and play with it in playground.

What's Changed
react-syntax-highlighter/react-syntax-highlighter (react-syntax-highlighter)

v16.1.1

Compare Source

What's Changed

New Contributors

Full Changelog: react-syntax-highlighter/react-syntax-highlighter@v16.1.0...v16.1.1

btd/rollup-plugin-visualizer (rollup-plugin-visualizer)

v7.0.1

Compare Source

  • Fancy treemap
  • Correct main entry in package.json
paupino/rust-decimal (rust_decimal)

v1.40.0

Compare Source

What's Changed

New Contributors

Full Changelog: paupino/rust-decimal@1.39.0...1.40.0

v1.39.0

Compare Source

What's Changed
New Contributors

Full Changelog: paupino/rust-decimal@1.38.0...1.39.0

serde-rs/json (serde_json)

v1.0.149

Compare Source

  • Align arbitrary_precision number strings with zmij's formatting (#​1306, thanks @​b41sh)

v1.0.148

Compare Source

  • Update zmij dependency to 1.0

v1.0.147

Compare Source

  • Switch float-to-string algorithm from Ryū to Żmij for better f32 and f64 serialization performance (#​1304)

v1.0.146

Compare Source

jonasbb/serde_with (serde_with)

v3.17.0: serde_with v3.17.0

[Compare Source](https://redirect.github.com/jonasbb/serde_with/comp


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 was generated by Mend Renovate. View the repository job log.

@greptile-apps
Copy link
Copy Markdown
Contributor

greptile-apps Bot commented Feb 24, 2026

PR author is in the excluded authors list.

@JoshC8C7 JoshC8C7 changed the title chore(deps): update all non-major dependencies rebase! chore(deps): update all non-major dependencies Feb 24, 2026
@renovate renovate Bot changed the title rebase! chore(deps): update all non-major dependencies chore(deps): update all non-major dependencies Feb 24, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 0366e18 to 764417a Compare February 25, 2026 13:52
@renovate renovate Bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Feb 25, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 764417a to 90202c6 Compare February 25, 2026 14:10
@renovate renovate Bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Feb 25, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 90202c6 to fa0d592 Compare February 25, 2026 16:44
@renovate renovate Bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Feb 25, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 7cfdf7f to 204ebea Compare February 26, 2026 13:29
@renovate renovate Bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Feb 26, 2026
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Feb 26, 2026

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: dwctl/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path dwctl/Cargo.toml --package anyhow@1.0.100 --precise 1.0.102
error: package ID specification `anyhow@1.0.100` did not match any packages
help: there are similar package ID specifications:

  anyhow@1.0.102

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 1262ff7 to 7bfb707 Compare March 2, 2026 10:53
@renovate renovate Bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Mar 2, 2026
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from a6395be to b5c848b Compare March 5, 2026 17:54
@cloudflare-workers-and-pages
Copy link
Copy Markdown

cloudflare-workers-and-pages Bot commented Mar 5, 2026

Deploying control-layer with  Cloudflare Pages  Cloudflare Pages

Latest commit: 0e62601
Status: ✅  Deploy successful!
Preview URL: https://95185662.control-layer.pages.dev
Branch Preview URL: https://renovate-all-minor-patch.control-layer.pages.dev

View logs

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 096f545 to 899812e Compare March 6, 2026 01:26
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 899812e to f07bab2 Compare March 6, 2026 06:45
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from f07bab2 to b8f8bde Compare March 6, 2026 22:32
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Mar 9, 2026

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@pjb157 pjb157 closed this Apr 10, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants