Skip to content

Commit

Permalink
Update Fabric8 Kubernetes Client to v5.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanKanojia authored and manusa committed Apr 16, 2021
1 parent 9be9d50 commit 326cb10
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,15 +256,15 @@ 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();
mockServer.expect().get()
.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();
Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<version.json-path-assert>2.2.0</version.json-path-assert>
<version.jsr305>3.0.2</version.jsr305>
<version.JUnitParams>1.1.1</version.JUnitParams>
<version.kubernetes-client>5.2.1</version.kubernetes-client>
<version.kubernetes-client>5.3.0</version.kubernetes-client>
<version.lombok>1.18.12</version.lombok>
<version.maven-archiver>3.5.0</version.maven-archiver>
<version.maven-core>3.6.3</version.maven-core>
Expand Down

0 comments on commit 326cb10

Please sign in to comment.