File tree Expand file tree Collapse file tree 4 files changed +9
-10
lines changed Expand file tree Collapse file tree 4 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 1818 runs-on : ubuntu-latest
1919 strategy :
2020 matrix :
21- flink : [ "1.16.3 ", "1.17.2 ", "1.18.1 "]
21+ flink : ["1.18.1 ", "1.19.1 ", "1.20.0 "]
2222 steps :
2323 - uses : actions/checkout@v3
2424
3838
3939 - name : Test JavaDoc
4040 run : mvn $MAVEN_CLI_OPTS $JAVA_ADDITIONAL_OPTS javadoc:javadoc
41- if : startsWith(matrix.flink, '1.18 ')
41+ if : startsWith(matrix.flink, '1.20 ')
4242
4343 - name : Add coverage to PR
4444 id : jacoco
4848 token : ${{ secrets.GITHUB_TOKEN }}
4949 min-coverage-overall : 40
5050 min-coverage-changed-files : 60
51- if : startsWith(matrix.flink, '1.18 ') && github.event.pull_request.head.repo.fork == false
51+ if : startsWith(matrix.flink, '1.20 ') && github.event.pull_request.head.repo.fork == false
Original file line number Diff line number Diff line change 22
33## [ Unreleased]
44
5- - ignore Eclipse files in .gitignore
5+ - Ignore Eclipse files in .gitignore
6+ - Support Flink 1.20
67
78## [ 0.17.0] - 2024-11-28
89
Original file line number Diff line number Diff line change @@ -19,7 +19,9 @@ In case of updating http-connector please see [Breaking changes](#breaking-chang
1919## Prerequisites
2020* Java 11
2121* Maven 3
22- * Flink 1.16+
22+ * Flink 1.18+. Recommended Flink 1.20.*
23+
24+
2325
2426## Runtime dependencies
2527This connector has few Flink's runtime dependencies, that are expected to be provided.
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ under the License.
6969 <!-- IMPORTANT: If you update Flink, remember to update link to its docs in maven-javadoc-plugin <links>
7070 section, omitting the patch part (so for 1.15.0 use 1.15). -->
7171
72- <flink .version>1.16.3 </flink .version>
72+ <flink .version>1.18.1 </flink .version>
7373
7474 <target .java.version>11</target .java.version>
7575 <scala .binary.version>2.12</scala .binary.version>
@@ -303,10 +303,6 @@ under the License.
303303 <groupId >org.apache.maven.plugins</groupId >
304304 <artifactId >maven-surefire-plugin</artifactId >
305305 <version >3.0.0-M5</version >
306- <configuration >
307- <!-- argLine needed for Flink 1.16 and 1.17 or there are unit test errors-->
308- <argLine >@{argLine} --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED</argLine >
309- </configuration >
310306 </plugin >
311307
312308 <plugin >
You can’t perform that action at this time.
0 commit comments