This is an automated email from the ASF dual-hosted git repository.
chengpan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-celeborn.git
The following commit(s) were added to refs/heads/main by this push:
new 885661596 [CELEBORN-1221] Bump Flink from 1.17.0 to 1.17.2
885661596 is described below
commit 885661596b3c893f07a87ed6794c00dac3d0301f
Author: SteNicholas <[email protected]>
AuthorDate: Tue Jan 16 12:58:51 2024 +0800
[CELEBORN-1221] Bump Flink from 1.17.0 to 1.17.2
### What changes were proposed in this pull request?
Bump Flink from 1.17.0 to 1.17.2.
### Why are the changes needed?
Flink 1.17.2 has been announced to release: [Apache Flink 1.17.2 Release
Announcement](https://flink.apache.org/2023/11/29/apache-flink-1.17.2-release-announcement).
The profile flink-1.17 could bump Flink from 1.17.0 to 1.17.2.
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
No.
Closes #2225 from SteNicholas/CELEBORN-1221.
Authored-by: SteNicholas <[email protected]>
Signed-off-by: Cheng Pan <[email protected]>
---
pom.xml | 2 +-
project/CelebornBuild.scala | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/pom.xml b/pom.xml
index 738efffd0..ab922002d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1329,7 +1329,7 @@
<module>tests/flink-it</module>
</modules>
<properties>
- <flink.version>1.17.0</flink.version>
+ <flink.version>1.17.2</flink.version>
<flink.binary.version>1.17</flink.binary.version>
<scala.binary.version>2.12</scala.binary.version>
<celeborn.flink.plugin.artifact>celeborn-client-flink-1.17_${scala.binary.version}</celeborn.flink.plugin.artifact>
diff --git a/project/CelebornBuild.scala b/project/CelebornBuild.scala
index 15b9f5945..4720da35c 100644
--- a/project/CelebornBuild.scala
+++ b/project/CelebornBuild.scala
@@ -811,7 +811,7 @@ object Flink115 extends FlinkClientProjects {
}
object Flink117 extends FlinkClientProjects {
- val flinkVersion = "1.17.0"
+ val flinkVersion = "1.17.2"
// note that SBT does not allow using the period symbol (.) in project names.
val flinkClientProjectPath = "client-flink/flink-1.17"
@@ -851,7 +851,7 @@ trait FlinkClientProjects {
.aggregate(flinkCommon, flinkClient, flinkIt)
// get flink major version. e.g:
- // 1.17.0 -> 1.17
+ // 1.17.2 -> 1.17
// 1.15.4 -> 1.15
// 1.14.6 -> 1.14
lazy val flinkMajorVersion: String =
flinkVersion.split("\\.").take(2).reduce(_ + "." + _)