Skip to content

chore(deps): bump the kubernetes group across 1 directory with 9 updates#169

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/gradle/kubernetes-0cbced6d36
Open

chore(deps): bump the kubernetes group across 1 directory with 9 updates#169
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/gradle/kubernetes-0cbced6d36

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Mar 15, 2026

Bumps the kubernetes group with 9 updates in the / directory:

Package From To
io.fabric8:kubernetes-client 7.4.0 7.6.1
io.fabric8:crd-generator-api-v2 7.4.0 7.6.1
io.fabric8:crd-generator-collector 7.4.0 7.6.1
io.fabric8:kubernetes-server-mock 7.4.0 7.6.1
io.fabric8:kube-api-test 7.4.0 7.6.1
io.fabric8.java-generator 7.4.0 7.6.1
io.javaoperatorsdk:operator-framework-core 5.1.3 5.2.3
io.javaoperatorsdk:micrometer-support 5.1.3 5.2.3
io.javaoperatorsdk:operator-framework-junit-5 5.1.3 5.2.3

Updates io.fabric8:kubernetes-client from 7.4.0 to 7.6.1

Release notes

Sourced from io.fabric8:kubernetes-client's releases.

7.6.1 (2026-03-05)

Bugs

  • Fix #7460: Add explicit Automatic-Module-Name to all httpclient modules to fix invalid auto-derived JPMS module names and vertx/vertx-5 collision

New Contributors

Full Changelog: fabric8io/kubernetes-client@v7.6.0...v7.6.1

7.6.0 (2026-03-02)

Bugs

  • Fix #5292: Cluster() configuration should use tlsServerName
  • Fix #7174: (httpclient) Fix HTTP client factory priority - VertxHttpClientFactory (default) now has priority -1, OkHttpClientFactory restored to priority 0
  • Fix #7174: (httpclient-vertx-5) Add runtime check for Vert.x 5 classes to provide clear error when Vert.x 4/5 conflict occurs
  • Fix #7174: (chaos-tests) Fix classpath conflict when testing with Vert.x 5 HTTP client
  • Fix #7415: (java-generator) Fix generic type erasure for array of enums with default values
  • Fix #7422: (okhttp) Remove internal API usage and fix deprecated OkHttp 5 calls
  • Fix #7446: making the timeout of BaseOperation.createOrReplace() configurable

Improvements

  • Fix #1105: Add javadoc cross-linking for Fabric8 modules and external dependencies
  • Fix #5756: Use Editable interface instead of reflection to instantiate resource builders
  • Fix #7422: bump okhttp from 4.12.0 to 5.3.2
  • Fix #7252: call additionalConfig when building Vert.x HTTP clients with VertxHttpClientFactory

Dependency Upgrade

  • Fix #7374: bump snakeyaml-engine from 2.10 to 3.0.1

New Features

  • Fix #7385: Support for Kubernetes v1.35 (Timbernetes)
  • Fix #7174: Added Vert.x 5 HTTP client implementation with improved async handling and WebSocket separation
  • Fix #7402: Added Byte code level semver API compatibility report generation using Revapi

Note: Breaking changes

  • Fix #5756: Resources edited with visitors must now implement io.fabric8.kubernetes.api.builder.Editable. All model classes provided by the client already implement this interface. User-provided custom resources that use visitor-based editing will need to implement Editable (trivial when a builder already exists).
  • Fix #7422: bump okhttp from 4.12.0 to 5.3.2. The versions are binary compatible, but the major version upgrade might cause side effects.

Note: Vert.x HTTP Client Compatibility (Issue #7174)

The kubernetes-httpclient-vertx (Vert.x 4.x) and kubernetes-httpclient-vertx-5 (Vert.x 5.x) modules are mutually exclusive. They must not be included together in your project dependencies. Both modules provide an implementation of HttpClient.Factory and use the same io.vertx artifact coordinates but with incompatible major versions.

-Problem*: If both modules are present on the classpath, Maven's dependency resolution may pick Vert.x 4.x JARs while the Vertx5HttpClientFactory is selected at runtime. This causes NoClassDefFoundError for Vert.x 5-specific classes like io.vertx.core.impl.SysProps.

-Solution*: Ensure your project includes only ONE of these modules:

  • kubernetes-httpclient-vertx (default, uses Vert.x 4.x) - included transitively via kubernetes-client
  • kubernetes-httpclient-vertx-5 (optional, uses Vert.x 5.x) - requires explicit dependency and exclusion of vertx-4

... (truncated)

Changelog

Sourced from io.fabric8:kubernetes-client's changelog.

7.6.1 (2026-03-05)

Bugs

  • Fix #7460: Add explicit Automatic-Module-Name to all httpclient modules to fix invalid auto-derived JPMS module names and vertx/vertx-5 collision

7.6.0 (2026-03-02)

Bugs

  • Fix #5292: Cluster() configuration should use tlsServerName
  • Fix #7174: (httpclient) Fix HTTP client factory priority - VertxHttpClientFactory (default) now has priority -1, OkHttpClientFactory restored to priority 0
  • Fix #7174: (httpclient-vertx-5) Add runtime check for Vert.x 5 classes to provide clear error when Vert.x 4/5 conflict occurs
  • Fix #7174: (chaos-tests) Fix classpath conflict when testing with Vert.x 5 HTTP client
  • Fix #7415: (java-generator) Fix generic type erasure for array of enums with default values
  • Fix #7422: (okhttp) Remove internal API usage and fix deprecated OkHttp 5 calls
  • Fix #7446: making the timeout of BaseOperation.createOrReplace() configurable

Improvements

  • Fix #1105: Add javadoc cross-linking for Fabric8 modules and external dependencies
  • Fix #5756: Use Editable interface instead of reflection to instantiate resource builders
  • Fix #7422: bump okhttp from 4.12.0 to 5.3.2
  • Fix #7252: call additionalConfig when building Vert.x HTTP clients with VertxHttpClientFactory

Dependency Upgrade

  • Fix #7374: bump snakeyaml-engine from 2.10 to 3.0.1

New Features

  • Fix #7385: Support for Kubernetes v1.35 (Timbernetes)
  • Fix #7174: Added Vert.x 5 HTTP client implementation with improved async handling and WebSocket separation
  • Fix #7402: Added Byte code level semver API compatibility report generation using Revapi

Note: Breaking changes

  • Fix #5756: Resources edited with visitors must now implement io.fabric8.kubernetes.api.builder.Editable. All model classes provided by the client already implement this interface. User-provided custom resources that use visitor-based editing will need to implement Editable (trivial when a builder already exists).
  • Fix #7422: bump okhttp from 4.12.0 to 5.3.2. The versions are binary compatible, but the major version upgrade might cause side effects.

Note: Vert.x HTTP Client Compatibility (Issue #7174)

The kubernetes-httpclient-vertx (Vert.x 4.x) and kubernetes-httpclient-vertx-5 (Vert.x 5.x) modules are mutually exclusive. They must not be included together in your project dependencies. Both modules provide an implementation of HttpClient.Factory and use the same io.vertx artifact coordinates but with incompatible major versions.

Problem: If both modules are present on the classpath, Maven's dependency resolution may pick Vert.x 4.x JARs while the Vertx5HttpClientFactory is selected at runtime. This causes NoClassDefFoundError for Vert.x 5-specific classes like io.vertx.core.impl.SysProps.

Solution: Ensure your project includes only ONE of these modules:

  • kubernetes-httpclient-vertx (default, uses Vert.x 4.x) - included transitively via kubernetes-client
  • kubernetes-httpclient-vertx-5 (optional, uses Vert.x 5.x) - requires explicit dependency and exclusion of vertx-4

When using Vert.x 5, exclude the default Vert.x 4 client and set the vertx.version property:

<properties>
</tr></table> 

... (truncated)

Commits
  • 6e7f78b [RELEASE] Updated project version to v7.6.1
  • 1c865f1 chore(ci): cancel PR workflows when prerequisite checks fail
  • e18bf76 fix(ci): use lax checksums in MAVEN_ARGS for snapshot workflow
  • aff7b67 chore(deps): bump central-publishing-maven-plugin from 0.9.0 to 0.10.0
  • c65ea82 fix(ci): exclude target directory from Dependabot Maven scanning
  • 1c90ff8 fix(ci): use lax checksums for snapshot deploy step
  • 921fbfc fix(httpclient): add reactor dependencies to JPMS test module
  • 6423874 fix(ci): deploy BOMs separately in snapshot workflow
  • 9c786af fix(httpclient): add explicit Automatic-Module-Name to all httpclient modules
  • c0d6691 fix: add explicit Automatic-Module-Name to httpclient modules (#7461)
  • Additional commits viewable in compare view

Updates io.fabric8:crd-generator-api-v2 from 7.4.0 to 7.6.1

Updates io.fabric8:crd-generator-collector from 7.4.0 to 7.6.1

Updates io.fabric8:kubernetes-server-mock from 7.4.0 to 7.6.1

Updates io.fabric8:kube-api-test from 7.4.0 to 7.6.1

Updates io.fabric8.java-generator from 7.4.0 to 7.6.1

Updates io.fabric8:crd-generator-api-v2 from 7.4.0 to 7.6.1

Updates io.fabric8:crd-generator-collector from 7.4.0 to 7.6.1

Updates io.fabric8:kubernetes-server-mock from 7.4.0 to 7.6.1

Updates io.fabric8:kube-api-test from 7.4.0 to 7.6.1

Updates io.javaoperatorsdk:operator-framework-core from 5.1.3 to 5.2.3

Release notes

Sourced from io.javaoperatorsdk:operator-framework-core's releases.

5.2.3

What's Changed

Full Changelog: operator-framework/java-operator-sdk@v5.2.2...v5.2.3

5.2.2

What's Changed

New Contributors

... (truncated)

Commits
  • 21c735d feat: add AGENTS.md and CLAUDE.md (#3149)
  • ef53a35 chore(deps): bump io.micrometer:micrometer-core from 1.16.2 to 1.16.3 (#3165)
  • cbceae8 feat: support additional instance CRDs in test extension (#3163)
  • b7eb632 docs: moving the start days of the invite (#3162)
  • 5f085c9 docs: add community meeting invite link (#3157)
  • 08f519d docs: remove ADRs (#3158)
  • 9afbe4e docs: improve dependent resource mermaid visuals (#3153)
  • a7056ec chore(deps): bump org.apache.maven.plugins:maven-compiler-plugin (#3144)
  • ccf9873 chore(deps): bump com.diffplug.spotless:spotless-maven-plugin (#3139)
  • f4808d2 chore(deps): bump org.assertj:assertj-core from 3.27.6 to 3.27.7 (#3133)
  • Additional commits viewable in compare view

Updates io.javaoperatorsdk:micrometer-support from 5.1.3 to 5.2.3

Release notes

Sourced from io.javaoperatorsdk:micrometer-support's releases.

5.2.3

What's Changed

Full Changelog: operator-framework/java-operator-sdk@v5.2.2...v5.2.3

5.2.2

What's Changed

New Contributors

... (truncated)

Commits
  • 21c735d feat: add AGENTS.md and CLAUDE.md (#3149)
  • ef53a35 chore(deps): bump io.micrometer:micrometer-core from 1.16.2 to 1.16.3 (#3165)
  • cbceae8 feat: support additional instance CRDs in test extension (#3163)
  • b7eb632 docs: moving the start days of the invite (#3162)
  • 5f085c9 docs: add community meeting invite link (#3157)
  • 08f519d docs: remove ADRs (#3158)
  • 9afbe4e docs: improve dependent resource mermaid visuals (#3153)
  • a7056ec chore(deps): bump org.apache.maven.plugins:maven-compiler-plugin (#3144)
  • ccf9873 chore(deps): bump com.diffplug.spotless:spotless-maven-plugin (#3139)
  • f4808d2 chore(deps): bump org.assertj:assertj-core from 3.27.6 to 3.27.7 (#3133)
  • Additional commits viewable in compare view

Updates io.javaoperatorsdk:operator-framework-junit-5 from 5.1.3 to 5.2.3

Updates io.fabric8.java-generator from 7.4.0 to 7.6.1

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the kubernetes group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [io.fabric8:kubernetes-client](https://github.com/fabric8io/kubernetes-client) | `7.4.0` | `7.6.1` |
| io.fabric8:crd-generator-api-v2 | `7.4.0` | `7.6.1` |
| io.fabric8:crd-generator-collector | `7.4.0` | `7.6.1` |
| io.fabric8:kubernetes-server-mock | `7.4.0` | `7.6.1` |
| io.fabric8:kube-api-test | `7.4.0` | `7.6.1` |
| io.fabric8.java-generator | `7.4.0` | `7.6.1` |
| [io.javaoperatorsdk:operator-framework-core](https://github.com/operator-framework/java-operator-sdk) | `5.1.3` | `5.2.3` |
| [io.javaoperatorsdk:micrometer-support](https://github.com/operator-framework/java-operator-sdk) | `5.1.3` | `5.2.3` |
| io.javaoperatorsdk:operator-framework-junit-5 | `5.1.3` | `5.2.3` |



Updates `io.fabric8:kubernetes-client` from 7.4.0 to 7.6.1
- [Release notes](https://github.com/fabric8io/kubernetes-client/releases)
- [Changelog](https://github.com/fabric8io/kubernetes-client/blob/main/CHANGELOG.md)
- [Commits](fabric8io/kubernetes-client@v7.4.0...v7.6.1)

Updates `io.fabric8:crd-generator-api-v2` from 7.4.0 to 7.6.1

Updates `io.fabric8:crd-generator-collector` from 7.4.0 to 7.6.1

Updates `io.fabric8:kubernetes-server-mock` from 7.4.0 to 7.6.1

Updates `io.fabric8:kube-api-test` from 7.4.0 to 7.6.1

Updates `io.fabric8.java-generator` from 7.4.0 to 7.6.1

Updates `io.fabric8:crd-generator-api-v2` from 7.4.0 to 7.6.1

Updates `io.fabric8:crd-generator-collector` from 7.4.0 to 7.6.1

Updates `io.fabric8:kubernetes-server-mock` from 7.4.0 to 7.6.1

Updates `io.fabric8:kube-api-test` from 7.4.0 to 7.6.1

Updates `io.javaoperatorsdk:operator-framework-core` from 5.1.3 to 5.2.3
- [Release notes](https://github.com/operator-framework/java-operator-sdk/releases)
- [Commits](operator-framework/java-operator-sdk@v5.1.3...v5.2.3)

Updates `io.javaoperatorsdk:micrometer-support` from 5.1.3 to 5.2.3
- [Release notes](https://github.com/operator-framework/java-operator-sdk/releases)
- [Commits](operator-framework/java-operator-sdk@v5.1.3...v5.2.3)

Updates `io.javaoperatorsdk:operator-framework-junit-5` from 5.1.3 to 5.2.3

Updates `io.fabric8.java-generator` from 7.4.0 to 7.6.1

---
updated-dependencies:
- dependency-name: io.fabric8:kubernetes-client
  dependency-version: 7.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kubernetes
- dependency-name: io.fabric8:crd-generator-api-v2
  dependency-version: 7.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kubernetes
- dependency-name: io.fabric8:crd-generator-collector
  dependency-version: 7.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kubernetes
- dependency-name: io.fabric8:kubernetes-server-mock
  dependency-version: 7.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kubernetes
- dependency-name: io.fabric8:kube-api-test
  dependency-version: 7.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kubernetes
- dependency-name: io.fabric8.java-generator
  dependency-version: 7.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kubernetes
- dependency-name: io.fabric8:crd-generator-api-v2
  dependency-version: 7.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kubernetes
- dependency-name: io.fabric8:crd-generator-collector
  dependency-version: 7.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kubernetes
- dependency-name: io.fabric8:kubernetes-server-mock
  dependency-version: 7.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kubernetes
- dependency-name: io.fabric8:kube-api-test
  dependency-version: 7.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kubernetes
- dependency-name: io.javaoperatorsdk:operator-framework-core
  dependency-version: 5.2.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kubernetes
- dependency-name: io.javaoperatorsdk:micrometer-support
  dependency-version: 5.2.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kubernetes
- dependency-name: io.javaoperatorsdk:operator-framework-junit-5
  dependency-version: 5.2.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kubernetes
- dependency-name: io.fabric8.java-generator
  dependency-version: 7.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: kubernetes
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Mar 15, 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 java Pull requests that update Java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants