Skip to content

Commit 076546e

Browse files
authored
fix: upgrade sundrio to 0.200.3
closes: #6829 Signed-off-by: Steve Hawkins <[email protected]>
1 parent 941fd42 commit 076546e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* Fix #6917: Client does not authenticate correctly on OpenShift if the returned Location header is lower-case
1111
* Fix #6930: Add support for Boolean enums in the java-generator
1212
* Fix #6941: HasMetadata.getApiVersion no slash when empty group
13+
* Fix #6829: Mixed-case enums are properly supported by the java-generator
1314

1415
#### Improvements
1516
* Fix #6863: ensuring SerialExecutor does not throw RejectedExecutionException to prevent unnecessary error logs
@@ -18,6 +19,8 @@
1819

1920
#### Dependency Upgrade
2021

22+
* Fix #6829: Sundrio was upgraded to 0.200.3. In some rare circumstances nested method names will need to be changed.
23+
2124
#### New Features
2225
* Fix #6827: (crd-generator) Add CRDPostProcessor to process generated CRDs before they are written out
2326

extensions/istio/tests/src/test/java/io/fabric8/istio/test/v1alpha3/VirtualServiceTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ void roundtripBasicVirtualServiceShouldWork() throws Exception {
3838
.addNewHttp()
3939
.withNewFault()
4040
.withNewDelay()
41-
.withNewHTTPFaultInjectionDelayFixedHttpType()
41+
.withNewHTTPFaultInjectionDelayFixedDelayHttpType()
4242
.withFixedDelay("1s")
43-
.endHTTPFaultInjectionDelayFixedHttpType()
43+
.endHTTPFaultInjectionDelayFixedDelayHttpType()
4444
.withPercent(10)
4545
.endDelay()
4646
.endFault()

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
9191

9292
<!-- Core versions -->
93-
<sundrio.version>0.200.0</sundrio.version>
93+
<sundrio.version>0.200.3</sundrio.version>
9494
<okhttp.version>4.12.0</okhttp.version>
9595
<jackson.version>2.18.3</jackson.version>
9696
<jackson.bundle.version>${jackson.version}</jackson.bundle.version>

0 commit comments

Comments
 (0)