From 2b3561630f97eda048810af5c33c90d9284393ba Mon Sep 17 00:00:00 2001 From: Zakelly Date: Fri, 17 Oct 2025 13:46:28 +0800 Subject: [PATCH 1/4] Add Flink 2.0.1 release --- .../content/posts/2025-10-24-release-2.0.1.md | 200 ++++++++++++++++++ docs/data/flink.yml | 14 +- docs/data/release_archive.yml | 4 + 3 files changed, 211 insertions(+), 7 deletions(-) create mode 100644 docs/content/posts/2025-10-24-release-2.0.1.md diff --git a/docs/content/posts/2025-10-24-release-2.0.1.md b/docs/content/posts/2025-10-24-release-2.0.1.md new file mode 100644 index 0000000000..a4758690e3 --- /dev/null +++ b/docs/content/posts/2025-10-24-release-2.0.1.md @@ -0,0 +1,200 @@ +--- +title: "Apache Flink 2.0.1 Release Announcement" +date: "2025-10-24T00:00:00.000Z" +aliases: +- /news/2025/10/24/release-2.0.1.html +authors: +- zakelly: + name: "Zakelly Lan" + +--- + +The Apache Flink Community is pleased to announce the first bug fix release of the Flink 2.0 series. + +This release includes 52 bug fixes, vulnerability fixes, and minor improvements for Flink 2.0. +Below you will find a list of all bugfixes and improvements (excluding improvements to the build infrastructure and build stability). For a complete list of all changes see: +[JIRA](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12315522&version=12355557). + +We highly recommend all users upgrade to Flink 2.0.1 or higher. + +# Release Artifacts + +## Maven Dependencies + +```xml + + org.apache.flink + flink-java + 2.0.1 + + + org.apache.flink + flink-streaming-java + 2.0.1 + + + org.apache.flink + flink-clients + 2.0.1 + +``` + +## Binaries + +You can find the binaries on the updated [Downloads page]({{< relref "downloads" >}}). + +## Docker Images + +* [library/flink](https://hub.docker.com/_/flink/tags?page=1&name=2.0.1) (official images) +* [apache/flink](https://hub.docker.com/r/apache/flink/tags?page=1&name=2.0.1) (ASF repository) + +## PyPi + +* [apache-flink==2.0.1](https://pypi.org/project/apache-flink/2.0.1/) + +# Release Notes + + Release Notes - Flink - Version 2.0.1 + +

Sub-task +

+ + +

Bug +

+ + +

Improvement +

+ + +

Technical Debt +

+ + \ No newline at end of file diff --git a/docs/data/flink.yml b/docs/data/flink.yml index 9cb486d3af..18ec7ff7aa 100644 --- a/docs/data/flink.yml +++ b/docs/data/flink.yml @@ -25,13 +25,13 @@ source_release_sha512_url: "https://downloads.apache.org/flink/flink-2.1.1/flink-2.1.1-src.tgz.sha512" 2.0: - name: "Apache Flink 2.0.0" - binary_release_url: "https://www.apache.org/dyn/closer.lua/flink/flink-2.0.0/flink-2.0.0-bin-scala_2.12.tgz" - binary_release_asc_url: "https://downloads.apache.org/flink/flink-2.0.0/flink-2.0.0-bin-scala_2.12.tgz.asc" - binary_release_sha512_url: "https://downloads.apache.org/flink/flink-2.0.0/flink-2.0.0-bin-scala_2.12.tgz.sha512" - source_release_url: "https://www.apache.org/dyn/closer.lua/flink/flink-2.0.0/flink-2.0.0-src.tgz" - source_release_asc_url: "https://downloads.apache.org/flink/flink-2.0.0/flink-2.0.0-src.tgz.asc" - source_release_sha512_url: "https://downloads.apache.org/flink/flink-2.0.0/flink-2.0.0-src.tgz.sha512" + name: "Apache Flink 2.0.1" + binary_release_url: "https://www.apache.org/dyn/closer.lua/flink/flink-2.0.1/flink-2.0.1-bin-scala_2.12.tgz" + binary_release_asc_url: "https://downloads.apache.org/flink/flink-2.0.1/flink-2.0.1-bin-scala_2.12.tgz.asc" + binary_release_sha512_url: "https://downloads.apache.org/flink/flink-2.0.1/flink-2.0.1-bin-scala_2.12.tgz.sha512" + source_release_url: "https://www.apache.org/dyn/closer.lua/flink/flink-2.0.1/flink-2.0.1-src.tgz" + source_release_asc_url: "https://downloads.apache.org/flink/flink-2.0.1/flink-2.0.1-src.tgz.asc" + source_release_sha512_url: "https://downloads.apache.org/flink/flink-2.0.1/flink-2.0.1-src.tgz.sha512" 1.20: name: "Apache Flink 1.20.3" diff --git a/docs/data/release_archive.yml b/docs/data/release_archive.yml index 077127369b..a836dad52b 100644 --- a/docs/data/release_archive.yml +++ b/docs/data/release_archive.yml @@ -1,5 +1,9 @@ release_archive: flink: + - + version_short: "2.0" + version_long: 2.0.1 + release_date: 2025-10-24 - version_short: "2.1" version_long: 2.1.1 From 39beb15ca2e50a52d89dc537cc2cd0d5257ae882 Mon Sep 17 00:00:00 2001 From: Zakelly Date: Thu, 23 Oct 2025 11:49:21 +0800 Subject: [PATCH 2/4] Refine the release note of 2.0.1 --- .../content/posts/2025-10-24-release-2.0.1.md | 41 +++---------------- 1 file changed, 5 insertions(+), 36 deletions(-) diff --git a/docs/content/posts/2025-10-24-release-2.0.1.md b/docs/content/posts/2025-10-24-release-2.0.1.md index a4758690e3..46a8dfaaa4 100644 --- a/docs/content/posts/2025-10-24-release-2.0.1.md +++ b/docs/content/posts/2025-10-24-release-2.0.1.md @@ -11,7 +11,7 @@ authors: The Apache Flink Community is pleased to announce the first bug fix release of the Flink 2.0 series. -This release includes 52 bug fixes, vulnerability fixes, and minor improvements for Flink 2.0. +This release includes 51 bug fixes, vulnerability fixes, and minor improvements for Flink 2.0. Below you will find a list of all bugfixes and improvements (excluding improvements to the build infrastructure and build stability). For a complete list of all changes see: [JIRA](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12315522&version=12355557). @@ -56,15 +56,6 @@ You can find the binaries on the updated [Downloads page]({{< relref "downloads" Release Notes - Flink - Version 2.0.1 -

Sub-task -

- -

Bug

@@ -183,18 +164,6 @@ You can find the binaries on the updated [Downloads page]({{< relref "downloads"
  • [FLINK-37623] - Async state support for `process()` in Datastream API
  • - - -

    Technical Debt -

    - - \ No newline at end of file + \ No newline at end of file From 513cc594be64f90fb29f00e40b0030e1bb9c0156 Mon Sep 17 00:00:00 2001 From: Zakelly Date: Fri, 24 Oct 2025 10:57:00 +0800 Subject: [PATCH 3/4] comments addressed --- docs/content/posts/2025-10-24-release-2.0.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/posts/2025-10-24-release-2.0.1.md b/docs/content/posts/2025-10-24-release-2.0.1.md index 46a8dfaaa4..61dd259f48 100644 --- a/docs/content/posts/2025-10-24-release-2.0.1.md +++ b/docs/content/posts/2025-10-24-release-2.0.1.md @@ -12,7 +12,7 @@ authors: The Apache Flink Community is pleased to announce the first bug fix release of the Flink 2.0 series. This release includes 51 bug fixes, vulnerability fixes, and minor improvements for Flink 2.0. -Below you will find a list of all bugfixes and improvements (excluding improvements to the build infrastructure and build stability). For a complete list of all changes see: +Below you will find a list of all bug fixes and improvements (excluding improvements to the build infrastructure and build stability). For a complete list of all changes, please see: [JIRA](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12315522&version=12355557). We highly recommend all users upgrade to Flink 2.0.1 or higher. From 0578ba1e51b1cc359a6b6f044653eafdf70ff51e Mon Sep 17 00:00:00 2001 From: Zakelly Date: Mon, 10 Nov 2025 15:51:52 +0800 Subject: [PATCH 4/4] change date of 2.0.1 --- ...025-10-24-release-2.0.1.md => 2025-11-10-release-2.0.1.md} | 4 ++-- docs/data/release_archive.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename docs/content/posts/{2025-10-24-release-2.0.1.md => 2025-11-10-release-2.0.1.md} (99%) diff --git a/docs/content/posts/2025-10-24-release-2.0.1.md b/docs/content/posts/2025-11-10-release-2.0.1.md similarity index 99% rename from docs/content/posts/2025-10-24-release-2.0.1.md rename to docs/content/posts/2025-11-10-release-2.0.1.md index 61dd259f48..c380004848 100644 --- a/docs/content/posts/2025-10-24-release-2.0.1.md +++ b/docs/content/posts/2025-11-10-release-2.0.1.md @@ -1,8 +1,8 @@ --- title: "Apache Flink 2.0.1 Release Announcement" -date: "2025-10-24T00:00:00.000Z" +date: "2025-11-10T00:01:00.000Z" aliases: -- /news/2025/10/24/release-2.0.1.html +- /news/2025/11/10/release-2.0.1.html authors: - zakelly: name: "Zakelly Lan" diff --git a/docs/data/release_archive.yml b/docs/data/release_archive.yml index a836dad52b..c56247172f 100644 --- a/docs/data/release_archive.yml +++ b/docs/data/release_archive.yml @@ -3,7 +3,7 @@ release_archive: - version_short: "2.0" version_long: 2.0.1 - release_date: 2025-10-24 + release_date: 2025-11-10 - version_short: "2.1" version_long: 2.1.1