This is an automated email from the ASF dual-hosted git repository. zjffdu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push: new 256df9b [ZEPPELIN-5478] Update flink version 256df9b is described below commit 256df9bf1ef11a1ac487529a2846f1bcbc30b1b9 Author: Jeff Zhang <zjf...@apache.org> AuthorDate: Fri Aug 6 14:10:18 2021 +0800 [ZEPPELIN-5478] Update flink version ### What is this PR for? Trivial PR which just update flink version to the latest versions. ### What type of PR is it? [ Improvement ] ### Todos * [ ] - Task ### What is the Jira issue? * https://issues.apache.org/jira/browse/ZEPPELIN-5478 ### How should this be tested? * Ci pass ### Screenshots (if appropriate) ### Questions: * Does the licenses files need update? no * Is there breaking changes for older versions? no * Does this needs documentation? no Author: Jeff Zhang <zjf...@apache.org> Closes #4197 from zjffdu/ZEPPELIN-5478 and squashes the following commits: 4fa056df56 [Jeff Zhang] [ZEPPELIN-5478] Update flink version --- flink/pom.xml | 4 ++-- .../java/org/apache/zeppelin/integration/FlinkIntegrationTest112.java | 4 ++-- .../java/org/apache/zeppelin/integration/FlinkIntegrationTest113.java | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/flink/pom.xml b/flink/pom.xml index a8a2ce6..d5a2561 100644 --- a/flink/pom.xml +++ b/flink/pom.xml @@ -46,8 +46,8 @@ <properties> <flink1.10.version>1.10.3</flink1.10.version> <flink1.11.version>1.11.3</flink1.11.version> - <flink1.12.version>1.12.0</flink1.12.version> - <flink1.13.version>1.13.0</flink1.13.version> + <flink1.12.version>1.12.4</flink1.12.version> + <flink1.13.version>1.13.2</flink1.13.version> <flink.scala.version>2.11.12</flink.scala.version> <flink.scala.binary.version>2.11</flink.scala.binary.version> diff --git a/zeppelin-interpreter-integration/src/test/java/org/apache/zeppelin/integration/FlinkIntegrationTest112.java b/zeppelin-interpreter-integration/src/test/java/org/apache/zeppelin/integration/FlinkIntegrationTest112.java index 29c38b6..50bb29c 100644 --- a/zeppelin-interpreter-integration/src/test/java/org/apache/zeppelin/integration/FlinkIntegrationTest112.java +++ b/zeppelin-interpreter-integration/src/test/java/org/apache/zeppelin/integration/FlinkIntegrationTest112.java @@ -29,8 +29,8 @@ public class FlinkIntegrationTest112 extends FlinkIntegrationTest { @Parameterized.Parameters public static List<Object[]> data() { return Arrays.asList(new Object[][]{ - {"1.12.0", "2.11"}, - {"1.12.0", "2.12"} + {"1.12.4", "2.11"}, + {"1.12.4", "2.12"} }); } diff --git a/zeppelin-interpreter-integration/src/test/java/org/apache/zeppelin/integration/FlinkIntegrationTest113.java b/zeppelin-interpreter-integration/src/test/java/org/apache/zeppelin/integration/FlinkIntegrationTest113.java index dc8cbc4..cab914d 100644 --- a/zeppelin-interpreter-integration/src/test/java/org/apache/zeppelin/integration/FlinkIntegrationTest113.java +++ b/zeppelin-interpreter-integration/src/test/java/org/apache/zeppelin/integration/FlinkIntegrationTest113.java @@ -29,8 +29,8 @@ public class FlinkIntegrationTest113 extends FlinkIntegrationTest { @Parameterized.Parameters public static List<Object[]> data() { return Arrays.asList(new Object[][]{ - {"1.13.0", "2.11"}, - {"1.13.0", "2.12"} + {"1.13.2", "2.11"}, + {"1.13.2", "2.12"} }); }