Releases: fabric8io/kubernetes-client
7.4.1 (2026-03-10)
Dependency Upgrade
Fix #7408: bump vertx.version to 4.5.25
Fix #7107: bump Jackson version to 2.19.4
Full Changelog: v7.4.0...v7.4.1
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
- @UniZKTech made their first contribution in #7461
Full Changelog: 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 implementEditable(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 viakubernetes-clientkubernetes-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>
<vertx.version>${vertx5.version}</vertx.version> <!-- or explicit 5.0.7 -->
</properties>
<dependencies>
<dependency>
<groupId>io.fabric8</groupId>
<artifactId>kubernetes-client</artifactId>
<exclusions>
<exclusion>
<groupId>io.fabric8</groupId>
<artifactId>kubernetes-httpclient-vertx</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.fabric8</groupId>
<artifactId>kubernetes-httpclient-vertx-5</artifactId>
</dependency>
</dependencies>New Contributors
- @Antrakos made their first contribution in #7416
- @ByteSizedJoe made their first contribution in #7184
- @klopfdreh made their first contribution in #7422
- @asomov made their first contribution in #7377
- @capistrant made their first contribution in #7384
Full Changelog: v7.5.2...v7.6.0
7.5.2 (2026-01-22)
Dependency Upgrade
- Fix #7408: bump vertx.version from 4.5.21 to 4.5.24
Full Changelog: v7.5.1...v7.5.2
7.5.1 (2026-01-15)
7.5.0 (2026-01-09)
Bugs
- Fix #7160: Use the duration from current leader record, not from the config
- Fix #7343: Leader election callbacks to be called only once (instead of 2)
- Fix #7347: Ensure vert.x websockets handle multiple frames
- Fix #7356: ensure request config is preserved when adapting to OpenShiftClient
- Fix #7369: Fix typo in warning log messages
- Fix #7373: (crd-generator) Improve SchemaCustomizer with @repeatable support and better exception messages
- Fix #7380: Go openAPI generator errors out when embedded structs have conflicting JSON field names
- Fix #7388: Type filters fix for conflicting types - OpenAPI generator
- Fix #7372: Service Port-Forwarding ignores Service port mapping
Improvements
- Fix #7277: fix BOM publish to Maven Central
- Fix #7345: skip publishing test and example modules to Maven Central
Dependency Upgrade
- Fix #7266: bump jackson-bom from 2.19.2 to 2.20.0, fix overrides and handle jackson-annotations v2.20
- Fix #7293: bump vertx.version from 4.5.14 to 4.5.21
- Fix #7358: (openapi) update Gateway API from 1.2.1 to 1.4.0
- Fix #7361: (openapi) update Istio from 1.27 to 1.28
New Features
- Fix #5081: Add support for streaming lists via Watchable.streamingList method
- Fix #7048: Support for Kubernetes v1.34 (Of Wind & Will)
- Fix #7371: Update Fabric8 OpenShift Model as per OpenShift 4.20
- Fix #7355: (crd-generator) Add SchemaCustomizer annotation for advanced schema modification
Note: Breaking changes
- Fix #7048: admissionregistration.v1beta1: Removed
ValidatingAdmissionPolicyand related classes (ValidatingAdmissionPolicyBinding,AuditAnnotation,Validation,ValidatingAdmissionPolicyBindingSpec) fromv1beta1as they have graduated to GA inadmissionregistration.v1.MutatingAdmissionPolicyhas been promoted fromv1alpha1tov1beta1. TheV1beta1AdmissionRegistrationAPIGroupDSLandV1beta1AdmissionRegistrationAPIGroupClienthave been updated accordingly.
Users should migrate toadmissionregistration.v1.ValidatingAdmissionPolicyfor GA APIs. - Fix #7266: bump jackson-bom from 2.19.2 to 2.20.0, fix overrides and handle jackson-annotations v2.20
- Fix #7388: openshift-model-installer: The
openshift-model-installermodule is now deprecated and will be removed in a future release. Please migrate away from using this module and its models.
New Contributors
- @piotrpdev made their first contribution in #7293
- @ash-thakur-rh made their first contribution in #7326
Full Changelog: v7.4.0...v7.5.0
7.4.0 (2025-09-08)
Bugs
- Fix #3032: EnableKubernetesMockClient annotation works with Nested tests
- Fix #7148: corrected octal format detection
- Fix #7167: Allow Informer.isWatching to see underlying Watch state
- Fix #7087: Avoid possible NPE in OkHttp websocket handling
- Fix #7072: Changed rolling update handling to json merge patch to avoid 422 errors
- Fix #7080: Avoid NPE in CRDGenerator if post-processor is set to null
- Fix #7116: (java-generator) Use timezone format compatible with Kubernetes
- Fix #7163: Ensure that streams are notified of errors
- Fix #7092: (crd-generator) Add support for @annotations and @Labels in CRD generation - CRD generator now includes annotations and labels specified via these annotations in the generated CRD metadata
- Fix #7224: Fix KubeApiTest inheritance from base test class
Improvements
- Fix #7217: refinements and expanded documentation for preserve unknown handling
Dependency Upgrade
New Features
- Fix #7045: (java-generator) Extend the existingJavaTypes to support use of existing enumerations
Note: Breaking changes
Fix #7204: Rationalized config constructors
New Contributors
Full Changelog: v7.3.1...v7.4.0
6.14.0 (2025-06-10)
Bugs
- Fix #7107: Jackson 2.19.0+ support
Note: Breaking changes
- Fix #7107: This release is not backwards-compatible with previous versions of Jackson, you'll need to use Jackson 2.19.0 in your project for a correct behavior of the Kubernetes Client.
Full Changelog: v6.13.5...v6.14.0
7.3.1 (2025-05-20)
Bugs
- Fix #7071: Buildable reference imports don't override local package class references
Full Changelog: v7.3.0...v7.3.1
7.3.0 (2025-05-15)
7.3.0 (2025-05-15)
Bugs
- Fix #7036: Resolve serialization errors after Jackson 2.19.0 upgrade (breaks older versions)
Dependency Upgrade
- Fix #7036: Jackson upgraded from v2.18.3 to v2.19.0
Note: Breaking changes
- Fix #7036: This release is not backwards-compatible with previous versions of Jackson, you'll need to use Jackson 2.19.0 in your project for a correct behavior of the Kubernetes Client.
New Contributors
- @r1c4r60 made their first contribution in #7038
- @JackPGreen made their first contribution in #7051
Full Changelog: v7.2.0...v7.3.0