File tree 3 files changed +6
-3
lines changed
extensions/istio/tests/src/test/java/io/fabric8/istio/test/v1alpha3
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 10
10
* Fix #6917 : Client does not authenticate correctly on OpenShift if the returned Location header is lower-case
11
11
* Fix #6930 : Add support for Boolean enums in the java-generator
12
12
* Fix #6941 : HasMetadata.getApiVersion no slash when empty group
13
+ * Fix #6829 : Mixed-case enums are properly supported by the java-generator
13
14
14
15
#### Improvements
15
16
* Fix #6863 : ensuring SerialExecutor does not throw RejectedExecutionException to prevent unnecessary error logs
18
19
19
20
#### Dependency Upgrade
20
21
22
+ * Fix #6829 : Sundrio was upgraded to 0.200.3. In some rare circumstances nested method names will need to be changed.
23
+
21
24
#### New Features
22
25
* Fix #6827 : (crd-generator) Add CRDPostProcessor to process generated CRDs before they are written out
23
26
Original file line number Diff line number Diff line change @@ -38,9 +38,9 @@ void roundtripBasicVirtualServiceShouldWork() throws Exception {
38
38
.addNewHttp ()
39
39
.withNewFault ()
40
40
.withNewDelay ()
41
- .withNewHTTPFaultInjectionDelayFixedHttpType ()
41
+ .withNewHTTPFaultInjectionDelayFixedDelayHttpType ()
42
42
.withFixedDelay ("1s" )
43
- .endHTTPFaultInjectionDelayFixedHttpType ()
43
+ .endHTTPFaultInjectionDelayFixedDelayHttpType ()
44
44
.withPercent (10 )
45
45
.endDelay ()
46
46
.endFault ()
Original file line number Diff line number Diff line change 90
90
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
91
91
92
92
<!-- Core versions -->
93
- <sundrio .version>0.200.0 </sundrio .version>
93
+ <sundrio .version>0.200.3 </sundrio .version>
94
94
<okhttp .version>4.12.0</okhttp .version>
95
95
<jackson .version>2.18.3</jackson .version>
96
96
<jackson .bundle.version>${jackson.version} </jackson .bundle.version>
You can’t perform that action at this time.
0 commit comments