This is an automated email from the ASF dual-hosted git repository.
jiabaosun pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-connector-mongodb.git
The following commit(s) were added to refs/heads/main by this push:
new 660ffe4 [FLINK-35139][Connectors/MongoDB] Drop support for Flink 1.17
660ffe4 is described below
commit 660ffe4f33f3ce60da139159741644f48295652d
Author: Danny Cranmer <[email protected]>
AuthorDate: Wed Apr 17 10:54:43 2024 +0100
[FLINK-35139][Connectors/MongoDB] Drop support for Flink 1.17
---
.github/workflows/push_pr.yml | 6 ++----
.github/workflows/weekly.yml | 3 ---
pom.xml | 3 +--
3 files changed, 3 insertions(+), 9 deletions(-)
diff --git a/.github/workflows/push_pr.yml b/.github/workflows/push_pr.yml
index 4df1ef6..1402bbd 100644
--- a/.github/workflows/push_pr.yml
+++ b/.github/workflows/push_pr.yml
@@ -28,11 +28,9 @@ jobs:
compile_and_test:
strategy:
matrix:
- flink: [ 1.17-SNAPSHOT ]
- jdk: [ '8, 11' ]
+ flink: [ 1.18-SNAPSHOT ]
+ jdk: [ '8, 11, 17' ]
include:
- - flink: 1.18-SNAPSHOT
- jdk: '8, 11, 17'
- flink: 1.19-SNAPSHOT
jdk: '8, 11, 17, 21'
- flink: 1.20-SNAPSHOT
diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml
index c4f249e..f3fdb8f 100644
--- a/.github/workflows/weekly.yml
+++ b/.github/workflows/weekly.yml
@@ -30,9 +30,6 @@ jobs:
strategy:
matrix:
flink_branches: [ {
- flink: 1.17-SNAPSHOT,
- branch: main
- }, {
flink: 1.18-SNAPSHOT,
jdk: '8, 11, 17',
branch: main
diff --git a/pom.xml b/pom.xml
index 3325945..81e826b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,7 +27,6 @@ under the License.
<version>1.1.0</version>
</parent>
- <groupId>org.apache.flink</groupId>
<artifactId>flink-connector-mongodb-parent</artifactId>
<version>1.2-SNAPSHOT</version>
@@ -53,7 +52,7 @@ under the License.
<properties>
<mongodb.version>4.7.2</mongodb.version>
- <flink.version>1.17.0</flink.version>
+ <flink.version>1.18.0</flink.version>
<scala.binary.version>2.12</scala.binary.version>
<scala-library.version>2.12.7</scala-library.version>
<junit5.version>5.8.1</junit5.version>