Open bcarld opened 4 months ago
I was looking at this code example -- https://github.com/kubernetes-client/java/wiki/3.-Code-Examples I was looking at this java doc -- https://javadoc.io/static/io.kubernetes/client-java-api/20.0.1/io/kubernetes/client/openapi/apis/CoreV1Api.html#listNamespacedPod(java.lang.String) I found the compatibility breakage notice in this README -- https://github.com/kubernetes-client/java/blob/master/README.md
Thanks for pointing that out, we should probably just delete those examples from the wiki, the up to date examples are here:
https://github.com/kubernetes-client/java/tree/master/examples/examples-release-20
The Kubernetes project currently lacks enough contributors to adequately respond to all issues.
This bot triages un-triaged issues according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/remove-lifecycle stale
/close
Please send feedback to sig-contributor-experience at kubernetes/community.
/lifecycle stale
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues.
This bot triages un-triaged issues according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/remove-lifecycle rotten
/close
Please send feedback to sig-contributor-experience at kubernetes/community.
/lifecycle rotten
Describe the bug Client version 20.0.1 and beyond changed the signature for all of the
CoreV1Api.list*
by removing all of the parameters that allow selectors, but the release notes to do provide guidance on how to filter the list. After various web searches, I went to java doc and it does not provide any info (not too surprising since the javadoc is method specfic). I then went to the examples and found and example. But, it is older as it has all of the old parameters.For compatibility breaking changes, it would be nice to have better documentation in the release notes with the recommended new method to do what the previous method can no longer do due to the reduction of parameters.
Client Version
20.0.1
Kubernetes Version e.g.
1.19.3
Java Version e.g. Java 8
To Reproduce Change 'io.kubernetes:client-java:19.0.1' to 'io.kubernetes:client-java:20.0.1' or later and try to build.
Expected behavior
Additional context My problem is a build break due to moving up versions to resolve a security vulnerability in one of the packages used by the java client.