Skip to content
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

build(deps): bump kubernetes-client from 6.1.1 to 6.2.0 #34

Merged
merged 1 commit into from
Oct 24, 2022

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 24, 2022

Bumps kubernetes-client from 6.1.1 to 6.2.0.

Release notes

Sourced from kubernetes-client's releases.

6.2.0 (2022-10-20)

Bugs

  • Fix #3733: The authentication command from the .kube/config won't be discarded if no arguments are specified
  • Fix #4312: fix timestamp can't be deserialized for IstioCondition
  • Fix #4369: Informers will retry with a backoff on list/watch failure as they did in 5.12 and prior.
  • Fix #4350: SchemaSwap annotation is now repeatable and is applied multiple times if classes are used more than once in the class hierarchy.
  • Fix #3733: The authentication command from the .kube/config won't be discarded if no arguments are specified
  • Fix #4441: corrected patch base handling for the patch methods available from a Resource - resource(item).patch() will be evaluated as resource(latest).patch(item). Also undeprecated patch(item), which is consistent with leaving patch(context, item) undeprecated as well. For consistency with the other operations (such as edit), patch(item) will use the context item as the base when available, or the server side item when not. This means that patch(item) is only the same as resource(item).patch() when the patch(item) is called when the context item is missing or is the same as the latest.
  • Fix #4442: TokenRefreshInterceptor doesn't overwrite existing OAuth token with empty string
  • Fix #4350: SchemaSwap annotation is now repeatable and is applied multiple times if classes are used more than once in the class hierarchy.
  • Fix #4459: Fixed OSGi startup exceptions while using KubernetesClient/OpenShiftClient
  • Fix #4460: removing split packages. Converting Default clients into adapters rather than real instances.
  • Fix #4473: Fix regression in backoff interval introduced in #4365
  • Fix #4478: Removing the resourceVersion bump with null status
  • Fix #4482: Fixing blocking behavior of okhttp log watch
  • Fix #4487: Schema for multimaps is now generated correctly
  • Fix #4496: Removing watch handling of lists

Improvements

  • Fix #4471: Adding KubernetesClientBuilder.withHttpClientBuilderConsumer to further customize the HttpClient for any implementation.
  • Fix #4348: Introduce specific annotations for the generators
  • Fix #4441: refactoring TokenRefreshInterceptor
  • Fix #4365: The Watch retry logic will handle more cases, as well as perform an exceptional close for events that are not properly handled. Informers can directly provide those exceptional outcomes via the SharedIndexInformer.stopped CompletableFuture.
  • Fix #4396: Provide more error context when @Group/@​Version annotations are missing
  • Fix #4384: The Java generator now supports the generation of specific annotations (min, max, pattern, etc.), as defined by #4348
  • Fix #4408: Allowing informers started via the start() method to have configurable exception / retry handling.
  • Fix #3864: Change ManagedOpenShiftClient OSGi ConfigurationPolicy to REQUIRE
  • Fix #4470: Added timestamps support for deployment logs and other resources.
  • Fix #4476: [crd-generator] Support custom Annotations and Labels to be emitted in the CRD

Dependency Upgrade

  • Fix #4243: Update Tekton pipeline model to v0.39.0
  • Fix #4243: Update Tekton triggers model to v0.20.2
  • Fix #4383: bump snakeyaml from 1.30 to 1.31
  • Fix #4347: Update Kubernetes Model to v1.25.0
  • Fix #4413: Update sundrio to 0.93.1

New Features

  • Fix #4398: add annotation @​PreserveUnknownFields for marking generated field have x-kubernetes-preserve-unknown-fields: true defined
  • Fix #4351: add javax.annotation.processing.Generated to classes generated with the java-generator

Note: Breaking changes in the API

  • Fix #4350: SchemaSwap's fieldName parameter now expects a field name only, not a method or a constructor.
  • Module io.fabric8:tekton-model-triggers which contained Tekton triggers v1alpha1 model has been removed. We have introduced separate modules io.fabric8:tekton-model-v1alpha1 and io.fabric8:tekton-model-v1beta1 for Tekton triggers v1alpha1 and v1beta1 apigroups respectively. Users who are using io.fabric8:tekton-client dependency directly should be unaffected by this change.
  • Fix #3864: Now it's compulsory to provide etc/io.fabric8.openshift.client.cfg file in order to load ManagedOpenShiftClient in OSGi environment.
  • Fix #3924: Extension Mock modules have been removed
  • Fix #4384: javax.validation.* annotations are no longer added by the Java generator.
  • Fix #3906: removed BaseKubernetesList, use KubernetesList instead
  • Fix #4408: deprecated SharedInformerFactory.addSharedInformerEventListener, instead use the SharedIndexInformer.stopped method. Also the signature of SharedIndexInformer.start was changed to a CompletionStage rather than a CompletableFuture.

... (truncated)

Changelog

Sourced from kubernetes-client's changelog.

6.2.0 (2022-10-20)

Bugs

  • Fix #3733: The authentication command from the .kube/config won't be discarded if no arguments are specified
  • Fix #4312: fix timestamp can't be deserialized for IstioCondition
  • Fix #4369: Informers will retry with a backoff on list/watch failure as they did in 5.12 and prior.
  • Fix #4350: SchemaSwap annotation is now repeatable and is applied multiple times if classes are used more than once in the class hierarchy.
  • Fix #3733: The authentication command from the .kube/config won't be discarded if no arguments are specified
  • Fix #4441: corrected patch base handling for the patch methods available from a Resource - resource(item).patch() will be evaluated as resource(latest).patch(item). Also undeprecated patch(item), which is consistent with leaving patch(context, item) undeprecated as well. For consistency with the other operations (such as edit), patch(item) will use the context item as the base when available, or the server side item when not. This means that patch(item) is only the same as resource(item).patch() when the patch(item) is called when the context item is missing or is the same as the latest.
  • Fix #4442: TokenRefreshInterceptor doesn't overwrite existing OAuth token with empty string
  • Fix #4350: SchemaSwap annotation is now repeatable and is applied multiple times if classes are used more than once in the class hierarchy.
  • Fix #4459: Fixed OSGi startup exceptions while using KubernetesClient/OpenShiftClient
  • Fix #4460: removing split packages. Converting Default clients into adapters rather than real instances.
  • Fix #4473: Fix regression in backoff interval introduced in #4365
  • Fix #4478: Removing the resourceVersion bump with null status
  • Fix #4482: Fixing blocking behavior of okhttp log watch
  • Fix #4487: Schema for multimaps is now generated correctly
  • Fix #4496: Removing watch handling of lists

Improvements

  • Fix #4471: Adding KubernetesClientBuilder.withHttpClientBuilderConsumer to further customize the HttpClient for any implementation.
  • Fix #4348: Introduce specific annotations for the generators
  • Fix #4441: refactoring TokenRefreshInterceptor
  • Fix #4365: The Watch retry logic will handle more cases, as well as perform an exceptional close for events that are not properly handled. Informers can directly provide those exceptional outcomes via the SharedIndexInformer.stopped CompletableFuture.
  • Fix #4396: Provide more error context when @Group/@​Version annotations are missing
  • Fix #4384: The Java generator now supports the generation of specific annotations (min, max, pattern, etc.), as defined by #4348
  • Fix #4408: Allowing informers started via the start() method to have configurable exception / retry handling.
  • Fix #3864: Change ManagedOpenShiftClient OSGi ConfigurationPolicy to REQUIRE
  • Fix #4470: Added timestamps support for deployment logs and other resources.
  • Fix #4476: [crd-generator] Support custom Annotations and Labels to be emitted in the CRD

Dependency Upgrade

  • Fix #4243: Update Tekton pipeline model to v0.39.0
  • Fix #4243: Update Tekton triggers model to v0.20.2
  • Fix #4383: bump snakeyaml from 1.30 to 1.31
  • Fix #4347: Update Kubernetes Model to v1.25.0
  • Fix #4413: Update sundrio to 0.93.1

New Features

  • Fix #4398: add annotation @​PreserveUnknownFields for marking generated field have x-kubernetes-preserve-unknown-fields: true defined
  • Fix #4351: add javax.annotation.processing.Generated to classes generated with the java-generator

Note: Breaking changes in the API

  • Fix #4350: SchemaSwap's fieldName parameter now expects a field name only, not a method or a constructor.
  • Module io.fabric8:tekton-model-triggers which contained Tekton triggers v1alpha1 model has been removed. We have introduced separate modules io.fabric8:tekton-model-v1alpha1 and io.fabric8:tekton-model-v1beta1 for Tekton triggers v1alpha1 and v1beta1 apigroups respectively. Users who are using io.fabric8:tekton-client dependency directly should be unaffected by this change.
  • Fix #3864: Now it's compulsory to provide etc/io.fabric8.openshift.client.cfg file in order to load ManagedOpenShiftClient in OSGi environment.
  • Fix #3924: Extension Mock modules have been removed
  • Fix #4384: javax.validation.* annotations are no longer added by the Java generator.
  • Fix #3906: removed BaseKubernetesList, use KubernetesList instead
  • Fix #4408: deprecated SharedInformerFactory.addSharedInformerEventListener, instead use the SharedIndexInformer.stopped method. Also the signature of SharedIndexInformer.start was changed to a CompletionStage rather than a CompletableFuture.

... (truncated)

Commits

Dependabot compatibility score

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
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [kubernetes-client](https://github.com/fabric8io/kubernetes-client) from 6.1.1 to 6.2.0.
- [Release notes](https://github.com/fabric8io/kubernetes-client/releases)
- [Changelog](https://github.com/fabric8io/kubernetes-client/blob/master/CHANGELOG.md)
- [Commits](fabric8io/kubernetes-client@v6.1.1...v6.2.0)

---
updated-dependencies:
- dependency-name: io.fabric8:kubernetes-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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 Oct 24, 2022
@itzg itzg merged commit 6d4a131 into main Oct 24, 2022
@dependabot dependabot bot deleted the dependabot/gradle/io.fabric8-kubernetes-client-6.2.0 branch October 24, 2022 12:17
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.

1 participant