Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 2, 2026

Bumps the rust group with 34 updates in the / directory:

Package From To
k8s-openapi 0.26.1 0.27.0
kube 2.0.1 3.0.1
thiserror 2.0.17 2.0.18
tokio 1.48.0 1.49.0
tokio-stream 0.1.17 0.1.18
tracing-opentelemetry 0.32.0 0.32.1
serde_json 1.0.148 1.0.149
cc 1.2.51 1.2.55
getrandom 0.2.16 0.2.17
h2 0.4.12 0.4.13
indexmap 2.12.1 2.13.0
iri-string 0.7.9 0.7.10
libc 0.2.178 0.2.180
pest 2.8.4 2.8.5
pest_derive 2.8.4 2.8.5
proc-macro2 1.0.104 1.0.106
prost 0.14.1 0.14.3
quote 1.0.42 1.0.44
rand_core 0.9.3 0.9.5
rustc-demangle 0.1.26 0.1.27
rustls 0.23.35 0.23.36
rustls-native-certs 0.8.2 0.8.3
rustls-pki-types 1.13.2 1.14.0
rustls-webpki 0.103.8 0.103.9
slab 0.4.11 0.4.12
socket2 0.6.1 0.6.2
syn 2.0.111 2.0.114
tokio-util 0.7.17 0.7.18
tonic 0.14.2 0.14.3
tonic-prost 0.14.2 0.14.3
tower 0.5.2 0.5.3
url 2.5.7 2.5.8
zerocopy 0.8.31 0.8.37
zmij 1.0.2 1.0.19

Updates k8s-openapi from 0.26.1 to 0.27.0

Release notes

Sourced from k8s-openapi's releases.

v0.27.0

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.
Changelog

Sourced from k8s-openapi's changelog.

v0.27.0 (2026-01-11)

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.

Commits

Updates kube from 2.0.1 to 3.0.1

Release notes

Sourced from kube's releases.

3.0.1

What's Changed

Bugfix release for schemas, admission, and docs. Minor internal improvements listed in the milestone. Important fixes below.

Fixed

New Contributors

Full Changelog: kube-rs/kube@3.0.0...3.0.1

3.0.0

New Major

As per the new release schedule to match up with the new Kubernetes release. Lots of additions, fixes and improvements. Thanks to everyone who contributed so heavily over the holidays! Happy new year.

Breaking Changes

Kubernetes v1_35 support via k8s-openapi 0.27

Please upgrade k8s-openapi along with kube to avoid conflicts.

jiff replaces chrono

Matching k8s-openapi's change, kube has also swapped out chrono. The biggest impact of this is for interacting with timestamps in metadata, but it also updates 2 smaller public interfaces in LogParams, Client::with_valid_until. See controller-rs#217 for an example change.

Changes: kube-rs/kube#1868 + kube-rs/kube#1870

ErrorResponse has been replaced with Status

ErrorResponse served as a partial metav1/Status replacement which ended up hiding error information to users. These structs have merged, more information is available on errors, and a type alias with a deprecation warning is in place for ErrorResponse which will be removed in a later version.

This creates a small breaking change for users matching on specific Error::Api codes;

     .map_err(|error| match error {
-        kube::Error::Api(kube::error::ErrorResponse { code: 403, .. }) => {
-            Error::UnauthorizedToPatch(obj)
-        }
+        kube::Error::Api(s) if s.is_forbidden() => Error::UnauthorizedToPatch(obj),
         other => Error::Other(other),
     })?;

kube-rs/kube#1875 + kube-rs/kube#1883 + kube-rs/kube#1891.

... (truncated)

Changelog

Sourced from kube's changelog.

3.0.1 / 2026-01-30

What's Changed

Bugfix release for schemas, admission, and docs. Minor internal improvements listed in the milestone. Important fixes below.

Fixed

3.0.0 / 2026-01-12

New Major

As per the new release schedule to match up with the new Kubernetes release. Lots of additions, fixes and improvements. Thanks to everyone who contributed so heavily over the holidays! Happy new year.

Breaking Changes

Kubernetes v1_35 support via k8s-openapi 0.27

Please upgrade k8s-openapi along with kube to avoid conflicts.

jiff replaces chrono

Matching k8s-openapi's change, kube has also swapped out chrono. The biggest impact of this is for interacting with timestamps in metadata, but it also updates 2 smaller public interfaces in LogParams, Client::with_valid_until. See controller-rs#217 for an example change.

Changes: kube-rs/kube#1868 + kube-rs/kube#1870

ErrorResponse has been replaced with Status

ErrorResponse served as a partial metav1/Status replacement which ended up hiding error information to users. These structs have merged, more information is available on errors, and a type alias with a deprecation warning is in place for ErrorResponse which will be removed in a later version.

This creates a small breaking change for users matching on specific Error::Api codes;

     .map_err(|error| match error {
-        kube::Error::Api(kube::error::ErrorResponse { code: 403, .. }) => {
-            Error::UnauthorizedToPatch(obj)
-        }
+        kube::Error::Api(s) if s.is_forbidden() => Error::UnauthorizedToPatch(obj),
         other => Error::Other(other),
     })?;

kube-rs/kube#1875 + kube-rs/kube#1883 + kube-rs/kube#1891.

Predicates now has a TTL Cache

This prevents unbounded memory for controllers, particularly affecting ones watching quickly rotating objects with generated names (e.g. pods). By default the TTL is 1h. It can be configured via new PredicateConfig parameter. To use the default;

</tr></table> 

... (truncated)

Commits

Updates thiserror from 2.0.17 to 2.0.18

Release notes

Sourced from thiserror's releases.

2.0.18

Commits
  • dc0f6a2 Release 2.0.18
  • 0275292 Touch up PR 443
  • 3c33bc6 Merge pull request #443 from LucaCappelletti94/master
  • 995939c Reproduce issue 442
  • 21653d1 Made clippy lifetime allows conditional
  • 45e5388 Update actions/upload-artifact@v5 -> v6
  • 386aac1 Update actions/upload-artifact@v4 -> v5
  • ec50561 Update actions/checkout@v5 -> v6
  • 247eab5 Update name of empty_enum clippy lint
  • 91b181f Raise required compiler to Rust 1.68
  • Additional commits viewable in compare view

Updates tokio from 1.48.0 to 1.49.0

Release notes

Sourced from tokio's releases.

Tokio v1.49.0

1.49.0 (January 3rd, 2026)

Added

  • net: add support for TCLASS option on IPv6 (#7781)
  • runtime: stabilize runtime::id::Id (#7125)
  • task: implement Extend for JoinSet (#7195)
  • task: stabilize the LocalSet::id() (#7776)

Changed

  • net: deprecate {TcpStream,TcpSocket}::set_linger (#7752)

Fixed

  • macros: fix the hygiene issue of join! and try_join! (#7766)
  • runtime: revert "replace manual vtable definitions with Wake" (#7699)
  • sync: return TryRecvError::Disconnected from Receiver::try_recv after Receiver::close (#7686)
  • task: remove unnecessary trait bounds on the Debug implementation (#7720)

Unstable

  • fs: handle EINTR in fs::write for io-uring (#7786)
  • fs: support io-uring with tokio::fs::read (#7696)
  • runtime: disable io-uring on EPERM (#7724)
  • time: add alternative timer for better multicore scalability (#7467)

Documented

  • docs: fix a typos in bounded.rs and park.rs (#7817)
  • io: add SyncIoBridge cross-references to copy and copy_buf (#7798)
  • io: doc that AsyncWrite does not inherit from std::io::Write (#7705)
  • metrics: clarify that num_alive_tasks is not strongly consistent (#7614)
  • net: clarify the cancellation safety of the TcpStream::peek (#7305)
  • net: clarify the drop behavior of unix::OwnedWriteHalf (#7742)
  • net: clarify the platform-dependent backlog in TcpSocket docs (#7738)
  • runtime: mention LocalRuntime in new_current_thread docs (#7820)
  • sync: add missing period to mpsc::Sender::try_send docs (#7721)
  • sync: clarify the cancellation safety of oneshot::Receiver (#7780)
  • sync: improve the docs for the errors of mpsc (#7722)
  • task: add example for spawn_local usage on local runtime (#7689)

#7125: tokio-rs/tokio#7125 #7195: tokio-rs/tokio#7195 #7305: tokio-rs/tokio#7305 #7467: tokio-rs/tokio#7467 #7614: tokio-rs/tokio#7614 #7686: tokio-rs/tokio#7686 #7689: tokio-rs/tokio#7689

... (truncated)

Commits

Updates tokio-stream from 0.1.17 to 0.1.18

Commits

Updates tracing-opentelemetry from 0.32.0 to 0.32.1

Release notes

Sourced from tracing-opentelemetry's releases.

0.32.1

Added

  • allow OpenTelemetry context access with SpanRef (#234)
  • add event-counting filtering layer for spans (#228)
  • publicly export SetParentError

Fixed

  • fix panic in multithreaded follows-from

Other

  • Remove unwanted dependency on opentelemetry sdk crate (#241)
  • update README.md links to use the latest version (#239)
  • remove thiserror and unused dependencies (#238)
Changelog

Sourced from tracing-opentelemetry's changelog.

0.32.1 - 2025-12-17

Added

  • allow OpenTelemetry context access with SpanRef (#234)
  • add event-counting filtering layer for spans (#228)
  • publicly export SetParentError

Fixed

  • fix panic in multithreaded follows-from

Other

  • Remove unwanted dependency on opentelemetry sdk crate (#241)
  • update README.md links to use the latest version (#239)
  • remove thiserror and unused dependencies (#238)
Commits
  • feedb22 chore: prepare release of 0.32.1 (#246)
  • 99b934b feat: allow OpenTelemetry context access with SpanRef (#234)
  • 35be2a5 docs: add functionality rustdocs to layer
  • a31f8db fix: fix panic in multithreaded follows-from
  • 94fddb0 test: add test for mutlithreaded follows from panic
  • 6b81167 Remove unwanted dependency on opentelemetry sdk crate (#241)
  • 938a9a8 fix: fix broken compilation (#245)
  • 13f7ca2 feat: add event-counting filtering layer for spans (#228)
  • 884b00c chore: update README.md links to use the latest version (#239)
  • 79be94c chore: remove thiserror and unused dependencies (#238)
  • Additional commits viewable in compare view

Updates serde_json from 1.0.148 to 1.0.149

Release notes

Sourced from serde_json's releases.

v1.0.149

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

Updates cc from 1.2.51 to 1.2.55

Release notes

Sourced from cc's releases.

cc-v1.2.55

Other

  • Regenerate target info (#1667)
  • Fix RUSTFLAGS typo in test-linker-plugin-lto (#1665)
  • Disable PIC for armv7-sony-vita-newlibeabihf (#1664)

cc-v1.2.54

Other

  • Fix x86_64-unknown-linux-gnuasan parsing (#1661)
  • Regenerate target info (#1660)

cc-v1.2.53

Other

  • Add missing RISC-V targets (#1657)

cc-v1.2.52

Other

  • Fix contradictory doc for CC compiler in crate doc (#1650)
  • Have CUDA compilaion check for sbsa-linux when targeting aarch64. (#1647)
  • Update link for -Cdwarf-version; Remove -Z (stabilized in 1.88) (#1648)
  • Fix Build::env_tool to check for .exe on windows (#1646)
Changelog

Sourced from cc's changelog.

1.2.55 - 2026-01-30

Other

  • Regenerate target info (#1667)
  • Fix RUSTFLAGS typo in test-linker-plugin-lto (#1665)
  • Disable PIC for armv7-sony-vita-newlibeabihf (#1664)

1.2.54 - 2026-01-23

Other

  • Fix x86_64-unknown-linux-gnuasan parsing (#1661)
  • Regenerate target info (#1660)

1.2.53 - 2026-01-16

Other

  • Add missing RISC-V targets (#1657)

1.2.52 - 2026-01-09

Other

  • Fix contradictory doc for CC compiler in crate doc (#1650)
  • Have CUDA compilaion check for sbsa-linux when targeting aarch64. (#1647)
  • Update link for -Cdwarf-version; Remove -Z (stabilized in 1.88) (#1648)
  • Fix Build::env_tool to check for .exe on windows (#1646)
Commits

Updates find-msvc-tools from 0.1.6 to 0.1.9

Release notes

Sourced from find-msvc-tools's releases.

find-msvc-tools-v0.1.9

Other

  • Add find_windows_sdk API (#1663)

find-msvc-tools-v0.1.8

Other

  • Regenerate windows sys bindings (#1653)

find-msvc-tools-v0.1.7

Other

  • Fix tool existence check in find_tool method (#1645)
  • Fix SdkInfo::find_tool to check for executable extension (#1644)
Commits

Updates foldhash from 0.1.5 to 0.2.0

Commits

Updates getrandom from 0.2.16 to 0.2.17

Changelog

Sourced from getrandom's changelog.

[0.2.17] - 2026-01-12

Fixed

  • Use doc_cfg instead of doc_auto_cfg (partial backport of #732) #768
  • BCryptGenRandom signature #778

#732: rust-random/getrandom#732 #768: rust-random/getrandom#768 #778: rust-random/getrandom#778

Commits

Updates h2 from 0.4.12 to 0.4.13

Release notes

Sourced from h2's releases.

v0.4.13

What's Changed

New Contributors

Full Changelog: hyperium/h2@v0.4.12...v0.4.13

Changelog

Sourced from h2's changelog.

0.4.13 (January 5, 2026)

  • Add support for 1xx informational responses on client and server side.
  • Fix auto-releasing of padding bytes of DATA frames for flow control windows.
  • Fix to stop assigning capacity to pending streams which can't use it yet.
  • Fix tracing to not grab the parent for the connection span.
Commits

Updates hashbrown from 0.15.5 to 0.16.1

Release notes

Sourced from hashbrown's releases.

v0.16.1

Added

  • Added HashTable methods related to the raw bucket index (#657)
  • Added VacantEntryRef::insert_with_key (#579)

Changed

  • Removed specialization for Copy types (#662)
  • The get_many_mut family of methods have been renamed to get_disjoint_mut to match the standard library. The old names are still present for now, but deprecated. (#648)
  • Recognize and use over-sized allocations when using custom allocators. (#523)
  • Depend on serde_core instead of serde. (#649)
  • Optimized collect on rayon parallel iterators. (#652)

v0.16.0

Changed

  • Bump foldhash, the default hasher, to 0.2.0.
  • Replaced DefaultHashBuilder with a newtype wrapper around foldhash instead of re-exporting it directly.
Changelog

Sourced from hashbrown's changelog.

0.16.1 - 2025-11-20

Added

  • Added HashTable methods related to the raw bucket index (#657)
  • Added VacantEntryRef::insert_with_key (#579)

Changed

  • Removed specialization for Copy types (#662)
  • The get_many_mut family of methods have been renamed to get_disjoint_mut to match the standard library. The old names are still present for now, but deprecated. (#648)
  • Recognize and use over-sized allocations when using custom allocators. (#523)
  • Depend on serde_core instead of serde. (#649)
  • Optimized collect on rayon parallel iterators. (#652)

0.16.0 - 2025-08-28

Changed

  • Bump foldhash, the default hasher, to 0.2.0.
  • Replaced DefaultHashBuilder with a newtype wrapper around foldhash instead of re-exporting it directly.
Commits
  • 1876e4f Add PR link for get_disjoint_mut rename
  • 2e363b6 Update CHANGELOG for version 0.16.1
  • 88d54a5 chore: release v0.16.1
  • 21be06c Merge pull request #657 from cuviper/table-bucket
  • af971f3 Add T to bucket iterators and inline their methods
  • 7ccb6d6 Add HashTable::iter_buckets and iter_hash_buckets
  • aeb7996 Add HashTable::get_bucket_entry_unchecked
  • e885a4e get_bucket_entry -> Result\<OccupiedEntry, AbsentEntry>
  • dabfbef Add get_bucket_unchecked and get_bucket_unchecked_mut
  • 42d9377 Make HashTable entries use Tag instead of a full hash
  • Additional commits viewable in compare view

Updates indexmap from 2.12.1 to 2.13.0

Changelog

Sourced from indexmap's changelog.

2.13.0 (2026-01-07)

  • Implemented Clone for IntoKeys and IntoValues.
  • Added map::Slice::split_at_checked and split_at_mut_checked.
  • Added set::Slice::split_at_checked.
Commits
  • a4aba99 Merge pull request #431 from cuviper/release-2.13.0
  • e345f3a Release 2.13.0
  • e6b677b Merge pull request #430 from cuviper/split_at_checked
  • 61c9d53 Add Slice::split_at_checked and split_at_mut_checked
  • 8b8d350 Merge pull request #426 from cuviper/clone-intokv
  • 88efd0c impl Clone for IntoKeys and IntoValues
  • 3b6d04b Merge pull request #425 from cuviper/inner-core
  • eb30eb1 Move crate::map::core to crate::inner
  • ...

    Description has been truncated

Bumps the rust group with 34 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [k8s-openapi](https://github.com/Arnavion/k8s-openapi) | `0.26.1` | `0.27.0` |
| [kube](https://github.com/kube-rs/kube) | `2.0.1` | `3.0.1` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.17` | `2.0.18` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.48.0` | `1.49.0` |
| [tokio-stream](https://github.com/tokio-rs/tokio) | `0.1.17` | `0.1.18` |
| [tracing-opentelemetry](https://github.com/tokio-rs/tracing-opentelemetry) | `0.32.0` | `0.32.1` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.148` | `1.0.149` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.51` | `1.2.55` |
| [getrandom](https://github.com/rust-random/getrandom) | `0.2.16` | `0.2.17` |
| [h2](https://github.com/hyperium/h2) | `0.4.12` | `0.4.13` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.12.1` | `2.13.0` |
| [iri-string](https://github.com/lo48576/iri-string) | `0.7.9` | `0.7.10` |
| [libc](https://github.com/rust-lang/libc) | `0.2.178` | `0.2.180` |
| [pest](https://github.com/pest-parser/pest) | `2.8.4` | `2.8.5` |
| [pest_derive](https://github.com/pest-parser/pest) | `2.8.4` | `2.8.5` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.104` | `1.0.106` |
| [prost](https://github.com/tokio-rs/prost) | `0.14.1` | `0.14.3` |
| [quote](https://github.com/dtolnay/quote) | `1.0.42` | `1.0.44` |
| [rand_core](https://github.com/rust-random/rand_core) | `0.9.3` | `0.9.5` |
| [rustc-demangle](https://github.com/rust-lang/rustc-demangle) | `0.1.26` | `0.1.27` |
| [rustls](https://github.com/rustls/rustls) | `0.23.35` | `0.23.36` |
| [rustls-native-certs](https://github.com/rustls/rustls-native-certs) | `0.8.2` | `0.8.3` |
| [rustls-pki-types](https://github.com/rustls/pki-types) | `1.13.2` | `1.14.0` |
| [rustls-webpki](https://github.com/rustls/webpki) | `0.103.8` | `0.103.9` |
| [slab](https://github.com/tokio-rs/slab) | `0.4.11` | `0.4.12` |
| [socket2](https://github.com/rust-lang/socket2) | `0.6.1` | `0.6.2` |
| [syn](https://github.com/dtolnay/syn) | `2.0.111` | `2.0.114` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.17` | `0.7.18` |
| [tonic](https://github.com/hyperium/tonic) | `0.14.2` | `0.14.3` |
| [tonic-prost](https://github.com/hyperium/tonic) | `0.14.2` | `0.14.3` |
| [tower](https://github.com/tower-rs/tower) | `0.5.2` | `0.5.3` |
| [url](https://github.com/servo/rust-url) | `2.5.7` | `2.5.8` |
| [zerocopy](https://github.com/google/zerocopy) | `0.8.31` | `0.8.37` |
| [zmij](https://github.com/dtolnay/zmij) | `1.0.2` | `1.0.19` |



Updates `k8s-openapi` from 0.26.1 to 0.27.0
- [Release notes](https://github.com/Arnavion/k8s-openapi/releases)
- [Changelog](https://github.com/Arnavion/k8s-openapi/blob/master/CHANGELOG.md)
- [Commits](Arnavion/k8s-openapi@v0.26.1...v0.27.0)

Updates `kube` from 2.0.1 to 3.0.1
- [Release notes](https://github.com/kube-rs/kube/releases)
- [Changelog](https://github.com/kube-rs/kube/blob/main/CHANGELOG.md)
- [Commits](kube-rs/kube@2.0.1...3.0.1)

Updates `thiserror` from 2.0.17 to 2.0.18
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.17...2.0.18)

Updates `tokio` from 1.48.0 to 1.49.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.48.0...tokio-1.49.0)

Updates `tokio-stream` from 0.1.17 to 0.1.18
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-stream-0.1.17...tokio-stream-0.1.18)

Updates `tracing-opentelemetry` from 0.32.0 to 0.32.1
- [Release notes](https://github.com/tokio-rs/tracing-opentelemetry/releases)
- [Changelog](https://github.com/tokio-rs/tracing-opentelemetry/blob/v0.1.x/CHANGELOG.md)
- [Commits](tokio-rs/tracing-opentelemetry@v0.32.0...v0.32.1)

Updates `serde_json` from 1.0.148 to 1.0.149
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.148...v1.0.149)

Updates `cc` from 1.2.51 to 1.2.55
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.51...cc-v1.2.55)

Updates `find-msvc-tools` from 0.1.6 to 0.1.9
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@find-msvc-tools-v0.1.6...find-msvc-tools-v0.1.9)

Updates `foldhash` from 0.1.5 to 0.2.0
- [Commits](orlp/foldhash@v0.1.5...v0.2.0)

Updates `getrandom` from 0.2.16 to 0.2.17
- [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md)
- [Commits](rust-random/getrandom@v0.2.16...v0.2.17)

Updates `h2` from 0.4.12 to 0.4.13
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/master/CHANGELOG.md)
- [Commits](hyperium/h2@v0.4.12...v0.4.13)

Updates `hashbrown` from 0.15.5 to 0.16.1
- [Release notes](https://github.com/rust-lang/hashbrown/releases)
- [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md)
- [Commits](rust-lang/hashbrown@v0.15.5...v0.16.1)

Updates `indexmap` from 2.12.1 to 2.13.0
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.12.1...2.13.0)

Updates `iri-string` from 0.7.9 to 0.7.10
- [Changelog](https://github.com/lo48576/iri-string/blob/develop/CHANGELOG.md)
- [Commits](lo48576/iri-string@v0.7.9...v0.7.10)

Updates `jsonpath-rust` from 0.7.5 to 1.0.4
- [Changelog](https://github.com/besok/jsonpath-rust/blob/main/CHANGELOG.md)
- [Commits](https://github.com/besok/jsonpath-rust/commits)

Updates `kube-client` from 2.0.1 to 3.0.1
- [Release notes](https://github.com/kube-rs/kube/releases)
- [Changelog](https://github.com/kube-rs/kube/blob/main/CHANGELOG.md)
- [Commits](kube-rs/kube@2.0.1...3.0.1)

Updates `kube-core` from 2.0.1 to 3.0.1
- [Release notes](https://github.com/kube-rs/kube/releases)
- [Changelog](https://github.com/kube-rs/kube/blob/main/CHANGELOG.md)
- [Commits](kube-rs/kube@2.0.1...3.0.1)

Updates `kube-runtime` from 2.0.1 to 3.0.1
- [Release notes](https://github.com/kube-rs/kube/releases)
- [Changelog](https://github.com/kube-rs/kube/blob/main/CHANGELOG.md)
- [Commits](kube-rs/kube@2.0.1...3.0.1)

Updates `libc` from 0.2.178 to 0.2.180
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.180/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.178...0.2.180)

Updates `pest` from 2.8.4 to 2.8.5
- [Release notes](https://github.com/pest-parser/pest/releases)
- [Commits](pest-parser/pest@v2.8.4...v2.8.5)

Updates `pest_derive` from 2.8.4 to 2.8.5
- [Release notes](https://github.com/pest-parser/pest/releases)
- [Commits](pest-parser/pest@v2.8.4...v2.8.5)

Updates `pest_generator` from 2.8.4 to 2.8.5
- [Release notes](https://github.com/pest-parser/pest/releases)
- [Commits](pest-parser/pest@v2.8.4...v2.8.5)

Updates `pest_meta` from 2.8.4 to 2.8.5
- [Release notes](https://github.com/pest-parser/pest/releases)
- [Commits](pest-parser/pest@v2.8.4...v2.8.5)

Updates `proc-macro2` from 1.0.104 to 1.0.106
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.104...1.0.106)

Updates `prost` from 0.14.1 to 0.14.3
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Changelog](https://github.com/tokio-rs/prost/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/prost@v0.14.1...v0.14.3)

Updates `prost-derive` from 0.14.1 to 0.14.3
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Changelog](https://github.com/tokio-rs/prost/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/prost@v0.14.1...v0.14.3)

Updates `quote` from 1.0.42 to 1.0.44
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.42...1.0.44)

Updates `rand_core` from 0.9.3 to 0.9.5
- [Release notes](https://github.com/rust-random/rand_core/releases)
- [Changelog](https://github.com/rust-random/rand_core/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-random/rand_core/commits)

Updates `rustc-demangle` from 0.1.26 to 0.1.27
- [Release notes](https://github.com/rust-lang/rustc-demangle/releases)
- [Changelog](https://github.com/rust-lang/rustc-demangle/blob/main/CHANGELOG.md)
- [Commits](rust-lang/rustc-demangle@rustc-demangle-v0.1.26...rustc-demangle-v0.1.27)

Updates `rustls` from 0.23.35 to 0.23.36
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.23.35...v/0.23.36)

Updates `rustls-native-certs` from 0.8.2 to 0.8.3
- [Release notes](https://github.com/rustls/rustls-native-certs/releases)
- [Commits](rustls/rustls-native-certs@v/0.8.2...v/0.8.3)

Updates `rustls-pki-types` from 1.13.2 to 1.14.0
- [Release notes](https://github.com/rustls/pki-types/releases)
- [Commits](rustls/pki-types@v/1.13.2...v/1.14.0)

Updates `rustls-webpki` from 0.103.8 to 0.103.9
- [Release notes](https://github.com/rustls/webpki/releases)
- [Commits](rustls/webpki@v/0.103.8...v/0.103.9)

Updates `slab` from 0.4.11 to 0.4.12
- [Release notes](https://github.com/tokio-rs/slab/releases)
- [Changelog](https://github.com/tokio-rs/slab/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/slab@v0.4.11...v0.4.12)

Updates `socket2` from 0.6.1 to 0.6.2
- [Release notes](https://github.com/rust-lang/socket2/releases)
- [Changelog](https://github.com/rust-lang/socket2/blob/master/CHANGELOG.md)
- [Commits](rust-lang/socket2@v0.6.1...v0.6.2)

Updates `syn` from 2.0.111 to 2.0.114
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.111...2.0.114)

Updates `tokio-util` from 0.7.17 to 0.7.18
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-util-0.7.17...tokio-util-0.7.18)

Updates `tonic` from 0.14.2 to 0.14.3
- [Release notes](https://github.com/hyperium/tonic/releases)
- [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md)
- [Commits](hyperium/tonic@v0.14.2...v0.14.3)

Updates `tonic-prost` from 0.14.2 to 0.14.3
- [Release notes](https://github.com/hyperium/tonic/releases)
- [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md)
- [Commits](hyperium/tonic@v0.14.2...v0.14.3)

Updates `tower` from 0.5.2 to 0.5.3
- [Release notes](https://github.com/tower-rs/tower/releases)
- [Commits](tower-rs/tower@tower-0.5.2...tower-0.5.3)

Updates `url` from 2.5.7 to 2.5.8
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](servo/rust-url@v2.5.7...v2.5.8)

Updates `zerocopy` from 0.8.31 to 0.8.37
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.8.31...v0.8.37)

Updates `zerocopy-derive` from 0.8.31 to 0.8.37
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.8.31...v0.8.37)

Updates `zmij` from 1.0.2 to 1.0.19
- [Release notes](https://github.com/dtolnay/zmij/releases)
- [Commits](dtolnay/zmij@1.0.2...1.0.19)

---
updated-dependencies:
- dependency-name: k8s-openapi
  dependency-version: 0.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: kube
  dependency-version: 3.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust
- dependency-name: thiserror
  dependency-version: 2.0.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: tokio
  dependency-version: 1.49.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: tokio-stream
  dependency-version: 0.1.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: tracing-opentelemetry
  dependency-version: 0.32.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: serde_json
  dependency-version: 1.0.149
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: cc
  dependency-version: 1.2.55
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: find-msvc-tools
  dependency-version: 0.1.9
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: foldhash
  dependency-version: 0.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: getrandom
  dependency-version: 0.2.17
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: h2
  dependency-version: 0.4.13
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: hashbrown
  dependency-version: 0.16.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: indexmap
  dependency-version: 2.13.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: iri-string
  dependency-version: 0.7.10
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: jsonpath-rust
  dependency-version: 1.0.4
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: rust
- dependency-name: kube-client
  dependency-version: 3.0.1
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: rust
- dependency-name: kube-core
  dependency-version: 3.0.1
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: rust
- dependency-name: kube-runtime
  dependency-version: 3.0.1
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: rust
- dependency-name: libc
  dependency-version: 0.2.180
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: pest
  dependency-version: 2.8.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: pest_derive
  dependency-version: 2.8.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: pest_generator
  dependency-version: 2.8.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: pest_meta
  dependency-version: 2.8.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: proc-macro2
  dependency-version: 1.0.106
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: prost
  dependency-version: 0.14.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: prost-derive
  dependency-version: 0.14.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: quote
  dependency-version: 1.0.44
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: rand_core
  dependency-version: 0.9.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: rustc-demangle
  dependency-version: 0.1.27
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: rustls
  dependency-version: 0.23.36
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: rustls-native-certs
  dependency-version: 0.8.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: rustls-pki-types
  dependency-version: 1.14.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: rustls-webpki
  dependency-version: 0.103.9
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: slab
  dependency-version: 0.4.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: socket2
  dependency-version: 0.6.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: syn
  dependency-version: 2.0.114
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: tokio-util
  dependency-version: 0.7.18
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: tonic
  dependency-version: 0.14.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: tonic-prost
  dependency-version: 0.14.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: tower
  dependency-version: 0.5.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: url
  dependency-version: 2.5.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: zerocopy
  dependency-version: 0.8.37
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: zerocopy-derive
  dependency-version: 0.8.37
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: zmij
  dependency-version: 1.0.19
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Feb 2, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update Rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants