From 326cb1066146f42c6250bba760032a0e5912a14b Mon Sep 17 00:00:00 2001 From: Rohan Kumar Date: Fri, 9 Apr 2021 16:33:48 +0530 Subject: [PATCH] Update Fabric8 Kubernetes Client to v5.3.0 --- CHANGELOG.md | 3 ++- .../eclipse/jkube/kit/config/service/ApplyServiceTest.java | 4 ++-- jkube-kit/parent/pom.xml | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8edd574ca5..14c36f0a11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,7 +22,8 @@ Usage: ``` ### 1.3.0-SNAPSHOT * Fix #576: Add support to publishing helm chart -* Fix #634: Replace occutrences of keySet() with entrySet() when value are needed +* Fix #634: Replace occurrences of keySet() with entrySet() when value are needed +* Fix #659: Update Fabric8 Kubernetes Client to v5.3.0 ### 1.2.0 (2021-03-31) * Fix #529: `.maven-dockerignore`, `.maven-dockerexclude`, `.maven-dockerinclude` are no longer supported diff --git a/jkube-kit/config/service/src/test/java/org/eclipse/jkube/kit/config/service/ApplyServiceTest.java b/jkube-kit/config/service/src/test/java/org/eclipse/jkube/kit/config/service/ApplyServiceTest.java index 38aee97bd2..5d5ea42baf 100644 --- a/jkube-kit/config/service/src/test/java/org/eclipse/jkube/kit/config/service/ApplyServiceTest.java +++ b/jkube-kit/config/service/src/test/java/org/eclipse/jkube/kit/config/service/ApplyServiceTest.java @@ -256,7 +256,7 @@ public void testProcessCustomEntitiesReplaceCustomResources() throws Exception { .withPath("/apis/networking.istio.io/v1alpha3/namespaces/default/virtualservices/reviews-route") .andReply(collector.record("get-cr-virtualservice").andReturn(HTTP_OK, "{\"metadata\":{\"resourceVersion\":\"1001\"}}")) .times(2); - mockServer.expect().put() + mockServer.expect().patch() .withPath("/apis/networking.istio.io/v1alpha3/namespaces/default/virtualservices/reviews-route") .andReply(collector.record("put-cr-virtualservice").andReturn(HTTP_OK, "{}")) .once(); @@ -264,7 +264,7 @@ public void testProcessCustomEntitiesReplaceCustomResources() throws Exception { .withPath("/apis/networking.istio.io/v1alpha3/namespaces/default/gateways/mygateway-https") .andReply(collector.record("get-cr-gateway").andReturn(HTTP_OK, "{\"metadata\":{\"resourceVersion\":\"1002\"}}")) .times(2); - mockServer.expect().put() + mockServer.expect().patch() .withPath("/apis/networking.istio.io/v1alpha3/namespaces/default/gateways/mygateway-https") .andReply(collector.record("put-cr-gateway").andReturn(HTTP_OK, "{}")) .once(); diff --git a/jkube-kit/parent/pom.xml b/jkube-kit/parent/pom.xml index 49e9afd355..fc79691f2a 100644 --- a/jkube-kit/parent/pom.xml +++ b/jkube-kit/parent/pom.xml @@ -53,7 +53,7 @@ 2.2.0 3.0.2 1.1.1 - 5.2.1 + 5.3.0 1.18.12 3.5.0 3.6.3