You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by ch...@apache.org on 2023/02/09 21:16:56 UTC

[kyuubi] branch master updated: [KYUUBI #4253] Change default Flink version to 1.16

This is an automated email from the ASF dual-hosted git repository.

chengpan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kyuubi.git


The following commit(s) were added to refs/heads/master by this push:
     new afc912c25 [KYUUBI #4253] Change default Flink version to 1.16
afc912c25 is described below

commit afc912c25d9b7c3a778bc02c404c689df35a1dbb
Author: Cheng Pan <ch...@apache.org>
AuthorDate: Fri Feb 10 05:16:45 2023 +0800

    [KYUUBI #4253] Change default Flink version to 1.16
    
    ### _Why are the changes needed?_
    
    This PR updates `pom.xml` and CI workflow to change the default Flink version to 1.16, close #4253
    
    ### _How was this patch tested?_
    - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible
    
    - [ ] Add screenshots for manual tests if appropriate
    
    - [x] [Run test](https://kyuubi.readthedocs.io/en/master/develop_tools/testing.html#running-tests) locally before make a pull request
    
    Closes #4289 from pan3793/flink-1.16.
    
    Closes #4253
    
    dc3885a38 [Cheng Pan] [KYUUBI #4253] Change default Flink version to 1.16
    
    Authored-by: Cheng Pan <ch...@apache.org>
    Signed-off-by: Cheng Pan <ch...@apache.org>
---
 .github/workflows/master.yml | 8 ++++----
 pom.xml                      | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml
index 0cd1f3140..fd0505999 100644
--- a/.github/workflows/master.yml
+++ b/.github/workflows/master.yml
@@ -159,13 +159,13 @@ jobs:
         comment: [ "normal" ]
         include:
           - java: 8
-            flink: '1.15'
+            flink: '1.16'
             flink-archive: '-Dflink.archive.mirror=https://archive.apache.org/dist/flink/flink-1.14.6 -Dflink.archive.name=flink-1.14.6-bin-scala_2.12.tgz'
             comment: 'verify-on-flink-1.14-binary'
           - java: 8
-            flink: '1.15'
-            flink-archive: '-Dflink.archive.mirror=https://archive.apache.org/dist/flink/flink-1.16.1 -Dflink.archive.name=flink-1.16.1-bin-scala_2.12.tgz'
-            comment: 'verify-on-flink-1.16-binary'
+            flink: '1.16'
+            flink-archive: '-Dflink.archive.mirror=https://archive.apache.org/dist/flink/flink-1.15.3 -Dflink.archive.name=flink-1.15.3-bin-scala_2.12.tgz'
+            comment: 'verify-on-flink-1.15-binary'
     steps:
       - uses: actions/checkout@v3
       - name: Tune Runner VM
diff --git a/pom.xml b/pom.xml
index fc282c43e..d292fe9e2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -134,7 +134,7 @@
         <failsafe.verion>2.4.4</failsafe.verion>
         <fb303.version>0.9.3</fb303.version>
         <flexmark.version>0.62.2</flexmark.version>
-        <flink.version>1.15.2</flink.version>
+        <flink.version>1.16.1</flink.version>
         <flink.module.scala.suffix></flink.module.scala.suffix>
         <flink.archive.name>flink-${flink.version}-bin-scala_${scala.binary.version}.tgz</flink.archive.name>
         <flink.archive.mirror>${apache.archive.dist}/flink/flink-${flink.version}</flink.archive.mirror>