Skip to content

build(deps): bump the kube group with 5 updates #379

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 16, 2025

Updates the requirements on k8s-openapi, kube-client, kube-core, kube-runtime and kube to permit the latest version.
Updates k8s-openapi to 0.24.0

Release notes

Sourced from k8s-openapi's releases.

v0.24.0

k8s-openapi

  • BREAKING CHANGE: Added support for Kubernetes 1.32 under the v1_32 feature.

  • BREAKING CHANGE: Dropped support for Kubernetes 1.26 and 1.27.

Corresponding Kubernetes API server versions:

  • v1.28.15
  • v1.29.12
  • v1.30.8
  • v1.31.4
  • v1.32.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.24.0 (2024-12-21)

k8s-openapi

  • BREAKING CHANGE: Added support for Kubernetes 1.32 under the v1_32 feature.

  • BREAKING CHANGE: Dropped support for Kubernetes 1.26 and 1.27.

Corresponding Kubernetes API server versions:

  • v1.28.15
  • v1.29.12
  • v1.30.8
  • v1.31.4
  • v1.32.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.

v0.23.0 (2024-09-15)

k8s-openapi

  • BREAKING CHANGE: Added support for Kubernetes 1.31 under the v1_31 feature.

  • BREAKING CHANGE: Dropped support for Kubernetes 1.24 and 1.25.

Corresponding Kubernetes API server versions:

  • v1.26.15
  • v1.27.16
  • v1.28.14
  • v1.29.9
  • v1.30.5
  • v1.31.1

k8s-openapi-codegen-common

  • No changes.

k8s-openapi-derive

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

... (truncated)

Commits

Updates kube-client to 0.99.0

Release notes

Sourced from kube-client's releases.

0.99.0

Highlights

Dependency Cleanups

Features

What's Changed

Added

Changed

Fixed

New Contributors

Full Changelog: kube-rs/kube@0.98.0...0.99.0

Changelog

Sourced from kube-client's changelog.

0.99.0 / 2025-03-12

Highlights

Dependency Cleanups

Features

What's Changed

Added

Changed

Fixed

0.98.0 / 2024-12-23

Highlights

... (truncated)

Commits

Updates kube-core to 1.0.0

Release notes

Sourced from kube-core's releases.

1.0.0

A Major Version

It's been a long time coming, but time has come to draw the line in the sand. No alphas, no betas. Hope it finds you all well. Thanks to everyone who has contributed over the years.

This is a somewhat symbolic gesture, because semver-breaking changes are still hard to avoid with a large set of sub-1.0 dependencies we need to bump, as well as managing the large api surface of Kubernetes.

Therefore, the plan is to align our breaking changes and major bumps with Kubernetes versions / k8s-openapi versions for now, and this should allow our other releases to stream in. See kube-rs/kube#1688 for more information.

Kubernetes v1_33 support via k8s-openapi 0.25

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

New minimum versions: MSRV 1.82.0, MK8SV: 1.30*

KubeSchema

The CELSchema alternate derive for JsonSchema has been renamed to KubeSchema to indicate the increased functionality.

In addition to being able to inject CEL rules for validations, it can now also inject x-kubernetes properties such as merge-strategy via kube-rs/kube#1750, handle #[validate] attributes kube-rs/kube#1749, and pass validation rules as string literals kube-rs/kube#1754 :

#[derive(CustomResource, Serialize, Deserialize, Debug, PartialEq, Clone, KubeSchema)]
#[kube(...properties)
struct DocumentSpec {
    /// New merge strategy support
    #[x_kube(merge_strategy = ListMerge::Set)]
    x_kubernetes_set: Vec<String>,
/// CEL Validation now lives on x_kube and supports literal Rules:
#[x_kube(validation = &quot;!has(self.variantOne) || self.variantOne.int &gt; 22&quot;)]
complex_enum: ComplexEnum,

}

See kube.rs docs on validation for more info. Huge thanks to @​Danil-Grigorev.

What's Changed

Added

Changed

Removed

Fixed

... (truncated)

Changelog

Sourced from kube-core's changelog.

1.0.0 / 2025-05-13

A Major Version

It's been a long time coming, but time has come to draw the line in the sand. No alphas, no betas. Hope it finds you all well. Thanks to everyone who has contributed over the years.

This is a somewhat symbolic gesture, because semver-breaking changes are still hard to avoid with a large set of sub-1.0 dependencies we need to bump, as well as managing the large api surface of Kubernetes.

Therefore, the plan is to align our breaking changes and major bumps with Kubernetes versions / k8s-openapi versions for now, and this should allow our other releases to stream in. See kube-rs/kube#1688 for more information.

Kubernetes v1_33 support via k8s-openapi 0.25

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

New minimum versions: MSRV 1.82.0, MK8SV: 1.30*

KubeSchema

The CELSchema alternate derive for JsonSchema has been renamed to KubeSchema to indicate the increased functionality.

In addition to being able to inject CEL rules for validations, it can now also inject x-kubernetes properties such as merge-strategy via kube-rs/kube#1750, handle #[validate] attributes kube-rs/kube#1749, and pass validation rules as string literals kube-rs/kube#1754 :

#[derive(CustomResource, Serialize, Deserialize, Debug, PartialEq, Clone, KubeSchema)]
#[kube(...properties)
struct DocumentSpec {
    /// New merge strategy support
    #[x_kube(merge_strategy = ListMerge::Set)]
    x_kubernetes_set: Vec<String>,
/// CEL Validation now lives on x_kube and supports literal Rules:
#[x_kube(validation = &quot;!has(self.variantOne) || self.variantOne.int &gt; 22&quot;)]
complex_enum: ComplexEnum,

}

See kube.rs docs on validation for more info. Huge thanks to @​Danil-Grigorev.

What's Changed

Added

Changed

Removed

Fixed

... (truncated)

Commits
  • ed3d390 release 1.0.0
  • 2f08a6f bump readme pin for k8s-openapi
  • e8a8c3b Merge pull request #1758 from ulagbulag/fix/correct-confliect-schemars-featur...
  • 3ca7a9a Merge pull request #1756 from kube-rs/k8s-025
  • c16deef fix: resolve conflict with schemars preserve_order feature
  • a68eaf2 clippy on wait
  • 6529708 update inconsequential license update on optional feature dep webpki-roots
  • 3c9d9a4 just bump-msrv 1.82.0
  • 06dcdcf no more compile constraints when limiting to kube >= 1.30
  • 3532128 jump bump-k8s
  • Additional commits viewable in compare view

Updates kube-runtime to 0.99.0

Release notes

Sourced from kube-runtime's releases.

0.99.0

Highlights

Dependency Cleanups

Features

What's Changed

Added

Changed

Fixed

New Contributors

Full Changelog: kube-rs/kube@0.98.0...0.99.0

Changelog

Sourced from kube-runtime's changelog.

0.99.0 / 2025-03-12

Highlights

Dependency Cleanups

Features

What's Changed

Added

Changed

Fixed

0.98.0 / 2024-12-23

Highlights

... (truncated)

Commits

Updates kube to 0.99.0

Release notes

Sourced from kube's releases.

0.99.0

Highlights

Dependency Cleanups

Features

What's Changed

Added

Changed

Fixed

New Contributors

Full Changelog: kube-rs/kube@0.98.0...0.99.0

Changelog

Sourced from kube's changelog.

0.99.0 / 2025-03-12

Highlights

Dependency Cleanups

Features

What's Changed

Added

Changed

Fixed

0.98.0 / 2024-12-23

Highlights

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • `@dependa...

Description has been truncated

Updates the requirements on [k8s-openapi](https://github.com/Arnavion/k8s-openapi), [kube-client](https://github.com/kube-rs/kube), [kube-core](https://github.com/kube-rs/kube), [kube-runtime](https://github.com/kube-rs/kube) and [kube](https://github.com/kube-rs/kube) to permit the latest version.

Updates `k8s-openapi` to 0.24.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.24.0...v0.24.0)

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

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

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

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

---
updated-dependencies:
- dependency-name: k8s-openapi
  dependency-version: 0.24.0
  dependency-type: direct:production
  dependency-group: kube
- dependency-name: kube-client
  dependency-version: 0.99.0
  dependency-type: direct:production
  dependency-group: kube
- dependency-name: kube-core
  dependency-version: 1.0.0
  dependency-type: direct:production
  dependency-group: kube
- dependency-name: kube-runtime
  dependency-version: 0.99.0
  dependency-type: direct:production
  dependency-group: kube
- dependency-name: kube
  dependency-version: 0.99.0
  dependency-type: direct:production
  dependency-group: kube
...

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 May 16, 2025
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