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 18
18
runs-on : ubuntu-latest
19
19
strategy :
20
20
matrix :
21
- flink : [ "1.16.3 ", "1.17.2 ", "1.18.1 "]
21
+ flink : ["1.18.1 ", "1.19.1 ", "1.20.0 "]
22
22
steps :
23
23
- uses : actions/checkout@v3
24
24
38
38
39
39
- name : Test JavaDoc
40
40
run : mvn $MAVEN_CLI_OPTS $JAVA_ADDITIONAL_OPTS javadoc:javadoc
41
- if : startsWith(matrix.flink, '1.18 ')
41
+ if : startsWith(matrix.flink, '1.20 ')
42
42
43
43
- name : Add coverage to PR
44
44
id : jacoco
48
48
token : ${{ secrets.GITHUB_TOKEN }}
49
49
min-coverage-overall : 40
50
50
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 2
2
3
3
## [ Unreleased]
4
4
5
- - ignore Eclipse files in .gitignore
5
+ - Ignore Eclipse files in .gitignore
6
+ - Support Flink 1.20
6
7
7
8
## [ 0.17.0] - 2024-11-28
8
9
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
19
19
## Prerequisites
20
20
* Java 11
21
21
* Maven 3
22
- * Flink 1.16+
22
+ * Flink 1.18+. Recommended Flink 1.20.*
23
+
24
+
23
25
24
26
## Runtime dependencies
25
27
This 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.
69
69
<!-- IMPORTANT: If you update Flink, remember to update link to its docs in maven-javadoc-plugin <links>
70
70
section, omitting the patch part (so for 1.15.0 use 1.15). -->
71
71
72
- <flink .version>1.16.3 </flink .version>
72
+ <flink .version>1.18.1 </flink .version>
73
73
74
74
<target .java.version>11</target .java.version>
75
75
<scala .binary.version>2.12</scala .binary.version>
@@ -303,10 +303,6 @@ under the License.
303
303
<groupId >org.apache.maven.plugins</groupId >
304
304
<artifactId >maven-surefire-plugin</artifactId >
305
305
<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 >
310
306
</plugin >
311
307
312
308
<plugin >
You can’t perform that action at this time.
0 commit comments