Skip to content

Commit 9414edf

Browse files
authored
HTTP-103 Support Flink 1.20 (#140)
Signed-off-by: davidradl <[email protected]>
1 parent e5ddf06 commit 9414edf

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
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

@@ -38,7 +38,7 @@ jobs:
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
@@ -48,4 +48,4 @@ jobs:
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

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
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

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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
2527
This connector has few Flink's runtime dependencies, that are expected to be provided.

pom.xml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff 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>

0 commit comments

Comments
 (0)