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 committed Apr 9, 2021
1 parent 1e1cb66 commit 90b7806
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Usage:
./scripts/extract-changelog-for-version.sh 1.3.37 5
```
### 1.3.0-SNAPSHOT
* 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 90b7806

Please sign in to comment.