Skip to content

chore(deps): Update non-major dependencies - #32

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/non-major-deps
Open

chore(deps): Update non-major dependencies#32
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/non-major-deps

Conversation

@renovate

@renovate renovate Bot commented Jan 19, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change
clap dependencies minor 4.5.604.6.4
colored dependencies minor 3.0.03.1.1
helm/kind-action action minor v1.13.0v1.14.0
k8s-openapi dependencies minor 0.260.28
mockall dev-dependencies minor 0.140.15
regex dependencies minor 1.12.41.13.1
rust (source, changelog) toolchain minor 1.90.01.97.1
tokio (source) dependencies minor 1.49.01.53.1

Release Notes

clap-rs/clap (clap)

v4.6.4

Compare Source

v4.6.3

Compare Source

v4.6.2

Compare Source

Fixes
  • (help) Say alias when there is only one

v4.6.1

Compare Source

Fixes
  • (derive) Ensure rebuilds happen when an read env variable is changed

v4.6.0

Compare Source

Compatibility
  • Update MSRV to 1.85

v4.5.61

Compare Source

Internal
  • Update dependencies
mackwic/colored (colored)

v3.1.1

Compare Source

helm/kind-action (helm/kind-action)

v1.14.0

Compare Source

What's Changed

New Contributors

Full Changelog: helm/kind-action@v1...v1.14.0

Arnavion/k8s-openapi (k8s-openapi)

v0.28.0

Compare Source

k8s-openapi

  • BREAKING CHANGE: Added support for Kubernetes 1.36 under the v1_36 feature.

  • BREAKING CHANGE: Dropped support for Kubernetes 1.31.

  • FEATURE: schemars v0.8 support has been restored under the schemars08 feature flag. This can be enabled independently of the existing schemars feature that enables schemars v1 support.

  • FEATURE: StatefulSetSpec::volume_claim_templates field now uses a map merge strategy using its .metadata.name as the key.

Corresponding Kubernetes API server versions:

  • v1.32.13
  • v1.33.13
  • v1.34.9
  • v1.35.6
  • v1.36.2

k8s-openapi-codegen-common

  • FEATURE: schemars v0.8 support has been restored via a new parameter to fn run().

k8s-openapi-derive

  • FEATURE: schemars v0.8 support has been restored via a new #[custom_resource_definition(generate_schema08)] attr.

v0.27.1

Compare Source

k8s-openapi

  • BUGFIX: apimachinery::pkg::api::resource::Quantity now supports deserializing from a JSON floating point literal as well.

Corresponding Kubernetes API server versions:

  • v1.31.14
  • v1.32.13
  • v1.33.9
  • v1.34.5
  • v1.35.2

k8s-openapi-codegen-common

  • No changes.

k8s-openapi-derive

  • No changes except to bump the k8s-openapi-codegen-common dependency to the new version.

v0.27.0

Compare Source

k8s-openapi

  • BREAKING CHANGE: Added support for Kubernetes 1.35 under the v1_35 feature.

  • BREAKING CHANGE: Dropped support for Kubernetes 1.30.

  • BREAKING CHANGE: chrono::DateTime has been replaced by jiff::Timestamp in the implementations of apimachinery::pkg::apis::meta::v1::{MicroTime, Time}.

  • FEATURE: All newtypes now implement From for their inner type, eg Time impls From<jiff::Timestamp>.

Corresponding Kubernetes API server versions:

  • v1.31.14
  • v1.32.11
  • v1.33.7
  • v1.34.3
  • v1.35.0

k8s-openapi-codegen-common

  • No changes.

k8s-openapi-derive

  • No changes except to bump the k8s-openapi-codegen-common dependency to the new version.

asomers/mockall (mockall)

v0.15.0

Compare Source

Added
  • Compatibility with the #[auto_impl] macro.
    (#​686)
rust-lang/regex (regex)

v1.13.1

Compare Source

===================
This is a release that fixes a bug where incorrect regex match offsets could be
reported. Note that this doesn't impact whether a match occurs or not, just
where it occurs. The match offsets are still valid for slicing, they just may
not refer to the correct leftmost-first match. See
#​1364 for (many) more details.

Bug fixes:

  • #​1354:
    Fixes previously unsound reverse suffix and inner optimizations.

v1.13.0

Compare Source

===================
This release includes a new API, a regex! macro, for lazy compilation of
a regex from a string literal. If you use regexes a lot, it's likely you've
already written one exactly like it. The new macro can be used like this:

use regex::regex;

fn is_match(line: &str) -> bool {
    // The regex will be compiled approximately once and reused automatically.
    // This avoids the footgun of using `Regex::new` here, which would
    // guarantee that it would be compiled every time this routine is called.
    // This would likely make this routine much slower than it needs to be.
    regex!(r"bar|baz").is_match(line)
}

let hay = "\
path/to/foo:54:Blue Harvest
path/to/bar:90:Something, Something, Something, Dark Side
path/to/baz:3:It's a Trap!
";

let matches = hay.lines().filter(|line| is_match(line)).count();
assert_eq!(matches, 2);

Improvements:

  • #​709:
    Add a new regex! macro for efficient and automatic reuse of a compiled regex.
rust-lang/rust (rust)

v1.97.1

Compare Source

==========================

  • rustc: Fix miscompilation in LLVM optimization
    This backports an LLVM submodule bump to include the LLVM-side fix and a
    revert of the rustc change that is one known trigger for the bug. The rustc
    side revert should not be strictly necessary but is done out of abundance of caution.

v1.97.0

Compare Source

==========================

Language

Platform Support

Refer to Rust's platform support page
for more information on Rust's tiered platform support.

Stabilized APIs

These previously stable APIs are now stable in const contexts:

Cargo

Rustdoc

Compatibility Notes

v1.96.1

Compare Source

===========================

v1.96.0

Compare Source

==========================

Language

Compiler

Libraries

Stabilized APIs

Cargo

Rustdoc

Compatibility Notes

Internal Changes

These changes do not affect any public interfaces of Rust, but they represent
significant improvements to the performance or internals of rustc and related
tools.

v1.95.0

Compare Source

===========================

Language

Compiler

Platform Support

Refer to Rust's platform support page
for more information on Rust's tiered platform support.

Libraries

Stabilized APIs

These previously stable APIs are now stable in const contexts:

Rustdoc

Compatibility Notes

Internal Changes

These changes do not affect any public interfaces of Rust, but they represent
significant improvements to the performance or internals of rustc and related
tools.

v1.94.1

Compare Source

===========================

v1.94.0

Compare Source

==========================

Language

Platform Support

Refer to Rust's platform support page
for more information on Rust's tiered platform support.

Libraries

Stabilized APIs

These previously stable APIs are now stable in const contexts:

Cargo

  • Stabilize the config include key. The top-level include config key allows loading additional config files, enabling better organization, sharing, and management of Cargo configurations across projects and environments. docs #​16284
  • Stabilize the pubtime field in registry index. This records when a crate version was published and enables time-based dependency resolution in the future. Note that crates.io will gradually backfill existing packages when a new version is published. Not all crates have pubtime yet. #​16369 #​16372
  • Cargo now parses TOML v1.1 for manifests and configuration files. Note that using these features in Cargo.toml will raise your development MSRV, but the published manifest remains compatible with older parsers. #​16415
  • Make CARGO_BIN_EXE_<crate> available at runtime

Compatibility Notes

Internal Changes

These changes do not affect any public interfaces of Rust, but they represent
significant improvements to the performance or internals of rustc and related
tools.

v1.93.1

Compare Source

===========================

v1.93.0

Compare Source

==========================

Language

Compiler

Platform Support

Refer to Rust's platform support page
for more information on Rust's tiered platform support.

Libraries

Stabilized APIs

Cargo

Rustdoc

Compatibility Notes

v1.92.0

Compare Source

==========================

Language

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • 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.

@renovate renovate Bot changed the title chore(deps): Update Rust crate k8s-openapi to 0.27 chore(deps): Update non-major dependencies Jan 19, 2026
@renovate
renovate Bot force-pushed the renovate/non-major-deps branch from a758187 to 82a1696 Compare January 22, 2026 05:04
@renovate
renovate Bot force-pushed the renovate/non-major-deps branch 2 times, most recently from 9d9689f to 77d616f Compare February 2, 2026 02:01
@renovate
renovate Bot force-pushed the renovate/non-major-deps branch 2 times, most recently from c2d2a57 to 3e7096e Compare February 9, 2026 00:35
@renovate
renovate Bot force-pushed the renovate/non-major-deps branch 3 times, most recently from f340dd5 to bb6e5f4 Compare February 20, 2026 05:04
@renovate
renovate Bot force-pushed the renovate/non-major-deps branch 4 times, most recently from ee84d95 to f720296 Compare February 28, 2026 05:41
@renovate
renovate Bot force-pushed the renovate/non-major-deps branch 2 times, most recently from da26a3b to 4a8aef4 Compare March 15, 2026 21:23
@renovate
renovate Bot force-pushed the renovate/non-major-deps branch 2 times, most recently from 80ccb42 to 10a8300 Compare April 11, 2026 12:44
@renovate
renovate Bot force-pushed the renovate/non-major-deps branch 4 times, most recently from 56b5f59 to 2b9891d Compare April 19, 2026 21:48
@renovate
renovate Bot force-pushed the renovate/non-major-deps branch from 2b9891d to 774acff Compare April 29, 2026 20:40
@renovate
renovate Bot force-pushed the renovate/non-major-deps branch 2 times, most recently from d63a567 to 159898f Compare May 11, 2026 15:17
@renovate
renovate Bot force-pushed the renovate/non-major-deps branch 2 times, most recently from bdbfab9 to 00086f4 Compare May 28, 2026 20:31
@renovate
renovate Bot force-pushed the renovate/non-major-deps branch from 00086f4 to 304a057 Compare May 31, 2026 02:14
@renovate
renovate Bot force-pushed the renovate/non-major-deps branch from 304a057 to 57b082b Compare June 18, 2026 05:09
@renovate
renovate Bot force-pushed the renovate/non-major-deps branch from 57b082b to 511742d Compare June 20, 2026 05:52
@renovate
renovate Bot force-pushed the renovate/non-major-deps branch from 511742d to ede7809 Compare July 1, 2026 21:14
@renovate
renovate Bot force-pushed the renovate/non-major-deps branch from ede7809 to 740f248 Compare July 3, 2026 01:49
@renovate
renovate Bot force-pushed the renovate/non-major-deps branch 4 times, most recently from 0ab53e0 to a82178d Compare July 19, 2026 01:41
@renovate
renovate Bot force-pushed the renovate/non-major-deps branch 4 times, most recently from c32063f to 853ebfc Compare July 23, 2026 17:54
@renovate
renovate Bot force-pushed the renovate/non-major-deps branch from 853ebfc to fa4110b Compare July 25, 2026 02:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants