Update Rust crate kube to 0.99.0 #191

Merged
pierre merged 1 commits from renovate/kube-0.x into master 2025-03-29 12:56:59 +00:00
Owner

This PR contains the following updates:

Package Type Update Change
kube dependencies minor 0.98.0 -> 0.99.0

Release Notes

kube-rs/kube (kube)

v0.99.0

Compare Source

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

Highlights

Dependency Cleanups
Features

What's Changed

Added
Changed
Fixed

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [kube](https://github.com/kube-rs/kube) | dependencies | minor | `0.98.0` -> `0.99.0` | --- ### Release Notes <details> <summary>kube-rs/kube (kube)</summary> ### [`v0.99.0`](https://github.com/kube-rs/kube/blob/HEAD/CHANGELOG.md#0990--2025-03-12) [Compare Source](https://github.com/kube-rs/kube/compare/0.98.0...0.99.0) \=================== <!-- Release notes generated using configuration in .github/release.yml at 0.99.0 --> #### Highlights ##### Dependency Cleanups - `backoff` ([unmaintained](https://github.com/ihrwein/backoff)) replaced with `backon` in https://github.com/kube-rs/kube/pull/1653 - No change if you are using [`default_backoff`](https://docs.rs/kube/latest/kube/runtime/trait.WatchStreamExt.html#method.default_backoff) natively, or through `Controller`. - Parameters configurable via [`ExponentialBackoff`](https://docs.rs/kube/latest/kube/runtime/watcher/struct.ExponentialBackoff.html) from [`backon::ExponentialBuilder`](https://docs.rs/backon/1.4.0/backon/struct.ExponentialBuilder.html) into [`WatchStreamExt::backoff`](https://docs.rs/kube/latest/kube/runtime/trait.WatchStreamExt.html#method.backoff) - `json-patch` bumped and uses [re-exported `jsonptr`](https://docs.rs/json-patch/4.0.0/json_patch/index.html#reexports) for less version clashes https://github.com/kube-rs/kube/pull/1718 - `rand` dependency no longer explicit as only rng is under `ws` feature via `tungstenite`'s [`client::generate_key`](https://docs.rs/tungstenite/latest/tungstenite/handshake/client/fn.generate_key.html) https://github.com/kube-rs/kube/pull/1691 - `ring` ([still maintained](https://github.com/briansmith/ring/discussions/2414)) now optional for `rustls-tls` feature (for alternate `aws-lc-rs`) https://github.com/kube-rs/kube/pull/1717 ##### Features - Support for the `v5.channel.k8s.io` streaming `ws` protocol to allow closing streams properly ([kubernetes.io blog](https://kubernetes.io/blog/2024/08/20/websockets-transition/)) https://github.com/kube-rs/kube/pull/1693 - `CustomResource` derive; typed attributes for [`#[kube(scale)]`](https://docs.rs/kube/latest/kube/derive.CustomResource.html#kubescale) and [`#[kube(deprecated)]`](https://docs.rs/kube/latest/kube/derive.CustomResource.html#kubedeprecated--warning) in https://github.com/kube-rs/kube/pull/1656 + https://github.com/kube-rs/kube/pull/1697 - [`Client::with_valid_until`](https://docs.rs/kube/latest/kube/struct.Client.html#method.with_valid_until) to handle short lived local client certs https://github.com/kube-rs/kube/pull/1707 - New common [`conditions`](https://docs.rs/kube/latest/kube/runtime/wait/conditions/index.html#functions) that can be [awaited](https://docs.rs/kube/latest/kube/runtime/wait/fn.await_condition.html) https://github.com/kube-rs/kube/pull/1710 #### What's Changed ##### Added - Add typed scale argument to derive macro by [@&#8203;Techassi](https://github.com/Techassi) in https://github.com/kube-rs/kube/pull/1656 - Add deprecated argument to derive macro by [@&#8203;Techassi](https://github.com/Techassi) in https://github.com/kube-rs/kube/pull/1697 - Add `Api::get_metadata_opt_with` by [@&#8203;sebsoto](https://github.com/sebsoto) in https://github.com/kube-rs/kube/pull/1708 - Add common wait conditions for Deployments, LoadBalancer Services, and Ingress by [@&#8203;detjensrobert](https://github.com/detjensrobert) in https://github.com/kube-rs/kube/pull/1710 - Add `Client::with_valid_until` for client cert expiry by [@&#8203;goenning](https://github.com/goenning) in https://github.com/kube-rs/kube/pull/1707 - kube-runtime: make `ExponentialBackoff` public by [@&#8203;gdeleon2](https://github.com/gdeleon2) in https://github.com/kube-rs/kube/pull/1716 ##### Changed - Replace `backoff` with `backon` by [@&#8203;flavio](https://github.com/flavio) in https://github.com/kube-rs/kube/pull/1653 - Bump `rand` to 0.9 by [@&#8203;clux](https://github.com/clux) in https://github.com/kube-rs/kube/pull/1686 - Remove `rand` dependency in favor of `tungstenite` fn by [@&#8203;clux](https://github.com/clux) in https://github.com/kube-rs/kube/pull/1691 - Exec can return stdout data even after stdin is closed. by [@&#8203;esw-amzn](https://github.com/esw-amzn) in https://github.com/kube-rs/kube/pull/1693 - Bump `json-patch` to 4 use bundled `jsonptr` to 0.7 by [@&#8203;clux](https://github.com/clux) in https://github.com/kube-rs/kube/pull/1718 - Allow removing hyper-rustls/ring feature by [@&#8203;eliad-wiz](https://github.com/eliad-wiz) in https://github.com/kube-rs/kube/pull/1717 ##### Fixed - kube-runtime: fix exponential backoff max times by [@&#8203;eliad-wiz](https://github.com/eliad-wiz) in https://github.com/kube-rs/kube/pull/1713 - `CustomResource` derive; allow `status` attribute to take a path by [@&#8203;clux](https://github.com/clux) in https://github.com/kube-rs/kube/pull/1704 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDAuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIyMC4zIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->
pierre added 1 commit 2025-03-13 00:05:56 +00:00
Update Rust crate kube to 0.99.0
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/pr Build encountered an error
5af3ce55d0
pierre force-pushed renovate/kube-0.x from 5af3ce55d0 to 80d7c19d85 2025-03-29 00:32:03 +00:00 Compare
Author
Owner

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.

### 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.
pierre merged commit bdbc84c106 into master 2025-03-29 12:56:59 +00:00
pierre deleted branch renovate/kube-0.x 2025-03-29 12:57:00 +00:00
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: pierre/MinioK8sBuckets#191
No description provided.