Babak
Babak
Is there any plan to upgrade **okhttp3:okhttp**, **okhttp3:logging-interceptor** (depending on kotlin-stdlib) and **protobuf-java** in this release? (CVE-2020-29582, CVE-2022-24329, CVE-2022-3171)
@dani8art @rjeberhard Is it possible to cherry-pick these 2 PRs to next release? I was hoping to see these in 16.0.1 https://github.com/kubernetes-client/java/pull/2362 to fix kotlin-stdlib security issue: CVE-2020-29582, CVE-2022-24329 https://github.com/kubernetes-client/java/pull/2421...
code: ``` ApiClient client = Config.defaultClient(); Configuration.setDefaultApiClient(client); File file = new File("cronJob.yaml"); V1CronJob yamlCronJob = (V1CronJob) Yaml.load(file); BatchV1Api batchAPI = new BatchV1Api(); V1CronJob createNamespacedCronJob = batchAPI.createNamespacedCronJob("default", yamlCronJob, "true", null, null,...
@yue9944882 any fix for this? I am using patchnamespacedCronJob and I get the same error. Because of that, I had to downgrade to 19.0.0 and management all 3rd party upgrades...
Ok ... I changed everything to use PatchUtil and seems like everything is ok now !
not sure if its related but should https://github.com/kubernetes-client/java/blob/release-legacy-21/util/pom.xml#L62 be also optional?