You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bahir.apache.org by es...@apache.org on 2022/10/21 07:50:48 UTC

[bahir-flink] branch master updated (522624f -> ffb413f)

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

eskabetxe pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/bahir-flink.git


    from 522624f  [BAHIR-315] add support for SSL connection
     new f3b096e  [BAHIR-317] Fix distribution parent version
     new 5c0017c  [BAHIR-317] Bump flink version to 1.14.6
     new ffb413f  [BAHIR-304] Add gitBranch option to release script

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/maven-ci.yml | 2 +-
 .travis.yml                    | 4 ++--
 dev/release-build.sh           | 2 +-
 distribution/pom.xml           | 2 +-
 pom.xml                        | 2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)


[bahir-flink] 01/03: [BAHIR-317] Fix distribution parent version

Posted by es...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

eskabetxe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bahir-flink.git

commit f3b096ef71b05fc2f482881a1d706fcc1d4c79b1
Author: Joao Boto <bo...@boto.pro>
AuthorDate: Thu Oct 20 18:33:41 2022 +0200

    [BAHIR-317] Fix distribution parent version
---
 distribution/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/distribution/pom.xml b/distribution/pom.xml
index 14035e8..5c13002 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <groupId>org.apache.bahir</groupId>
         <artifactId>bahir-flink-parent_2.11</artifactId>
-        <version>1.1-SNAPSHOT</version>
+        <version>1.2-SNAPSHOT</version>
         <relativePath>..</relativePath>
     </parent>
 


[bahir-flink] 03/03: [BAHIR-304] Add gitBranch option to release script

Posted by es...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

eskabetxe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bahir-flink.git

commit ffb413f0ae625800d2e13e1425728065b162f3b9
Author: Joao Boto <bo...@boto.pro>
AuthorDate: Thu Jun 16 16:02:09 2022 +0200

    [BAHIR-304] Add gitBranch option to release script
---
 dev/release-build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev/release-build.sh b/dev/release-build.sh
index 3c03e88..69ae455 100755
--- a/dev/release-build.sh
+++ b/dev/release-build.sh
@@ -196,7 +196,7 @@ fi
 # commit ref to checkout when building
 GIT_REF=${GIT_REF:-master}
 if [[ "$RELEASE_PREPARE" == "true" && "$GIT_BRANCH" ]]; then
-    GIT_REF="$GIT_BRANCH"
+    GIT_REF="origin/$GIT_BRANCH"
 fi
 if [[ "$RELEASE_PUBLISH" == "true" && "$GIT_TAG" ]]; then
     GIT_REF="tags/$GIT_TAG"


[bahir-flink] 02/03: [BAHIR-317] Bump flink version to 1.14.6

Posted by es...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

eskabetxe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bahir-flink.git

commit 5c0017c28b6863c2636c9f83ad5ea9a9cc8c8b00
Author: Joao Boto <bo...@boto.pro>
AuthorDate: Thu Oct 20 18:34:10 2022 +0200

    [BAHIR-317] Bump flink version to 1.14.6
---
 .github/workflows/maven-ci.yml | 2 +-
 .travis.yml                    | 4 ++--
 pom.xml                        | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/maven-ci.yml b/.github/workflows/maven-ci.yml
index e063fa4..aba6821 100644
--- a/.github/workflows/maven-ci.yml
+++ b/.github/workflows/maven-ci.yml
@@ -30,7 +30,7 @@ jobs:
     strategy:
       matrix:
        java: ['8', '11']
-       flink-version: ['1.14.4']
+       flink-version: ['1.14.6']
        scala-version: ['2.11', '2.12']
 
     steps:
diff --git a/.travis.yml b/.travis.yml
index e414766..5506aa6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -34,8 +34,8 @@ jdk:
   - openjdk8
 
 env:
-  - FLINK_VERSION="1.14.4" SCALA_VERSION="2.11"
-  - FLINK_VERSION="1.14.4" SCALA_VERSION="2.12"
+  - FLINK_VERSION="1.14.6" SCALA_VERSION="2.11"
+  - FLINK_VERSION="1.14.6" SCALA_VERSION="2.12"
 
 before_install:
   - ./dev/change-scala-version.sh $SCALA_VERSION
diff --git a/pom.xml b/pom.xml
index 64542f8..9f5eba7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -113,7 +113,7 @@
         <maven.compiler.target>${java.version}</maven.compiler.target>
 
         <!-- Flink version -->
-        <flink.version>1.14.4</flink.version>
+        <flink.version>1.14.6</flink.version>
         <scala.binary.version>2.11</scala.binary.version>
         <scala.version>2.11.12</scala.version>