This is an automated email from the ASF dual-hosted git repository.
kaxilnaik pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 0faa0cc6252 Add dates for Limited Maintenance & EOL for Airflow 2.x
(#50794)
0faa0cc6252 is described below
commit 0faa0cc6252ffb1611264d186a4f249ced1b79cb
Author: Kaxil Naik <[email protected]>
AuthorDate: Fri May 23 01:21:19 2025 +0530
Add dates for Limited Maintenance & EOL for Airflow 2.x (#50794)
Discussion in
https://lists.apache.org/thread/xsj7h4gyk51ktxt8z9xppckknojdq70v
---
README.md | 2 +-
airflow-core/docs/installation/supported-versions.rst | 2 +-
scripts/ci/pre_commit/supported_versions.py | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index 5e91aa2647a..806e7ad70b2 100644
--- a/README.md
+++ b/README.md
@@ -298,7 +298,7 @@ Apache Airflow version life cycle:
| Version | Current Patch/Minor | State | First Release | Limited
Maintenance | EOL/Terminated |
|-----------|-----------------------|-----------|-----------------|-----------------------|------------------|
| 3 | 3.0.1 | Supported | Apr 22, 2025 | TBD
| TBD |
-| 2 | 2.11.0 | Supported | Dec 17, 2020 | TBD
| TBD |
+| 2 | 2.11.0 | Supported | Dec 17, 2020 | Oct 22,
2025 | Apr 22, 2026 |
| 1.10 | 1.10.15 | EOL | Aug 27, 2018 | Dec 17,
2020 | June 17, 2021 |
| 1.9 | 1.9.0 | EOL | Jan 03, 2018 | Aug 27,
2018 | Aug 27, 2018 |
| 1.8 | 1.8.2 | EOL | Mar 19, 2017 | Jan 03,
2018 | Jan 03, 2018 |
diff --git a/airflow-core/docs/installation/supported-versions.rst
b/airflow-core/docs/installation/supported-versions.rst
index 05713b48ca8..f6e6afa5c7a 100644
--- a/airflow-core/docs/installation/supported-versions.rst
+++ b/airflow-core/docs/installation/supported-versions.rst
@@ -30,7 +30,7 @@ Apache Airflow® version life cycle:
Version Current Patch/Minor State First Release Limited
Maintenance EOL/Terminated
========= ===================== ========= ===============
===================== ================
3 3.0.1 Supported Apr 22, 2025 TBD
TBD
-2 2.11.0 Supported Dec 17, 2020 TBD
TBD
+2 2.11.0 Supported Dec 17, 2020 Oct 22, 2025
Apr 22, 2026
1.10 1.10.15 EOL Aug 27, 2018 Dec 17, 2020
June 17, 2021
1.9 1.9.0 EOL Jan 03, 2018 Aug 27, 2018
Aug 27, 2018
1.8 1.8.2 EOL Mar 19, 2017 Jan 03, 2018
Jan 03, 2018
diff --git a/scripts/ci/pre_commit/supported_versions.py
b/scripts/ci/pre_commit/supported_versions.py
index 263efacf8db..20bbf58b281 100755
--- a/scripts/ci/pre_commit/supported_versions.py
+++ b/scripts/ci/pre_commit/supported_versions.py
@@ -35,7 +35,7 @@ HEADERS = (
SUPPORTED_VERSIONS = (
("3", "3.0.1", "Supported", "Apr 22, 2025", "TBD", "TBD"),
- ("2", "2.11.0", "Supported", "Dec 17, 2020", "TBD", "TBD"),
+ ("2", "2.11.0", "Supported", "Dec 17, 2020", "Oct 22, 2025", "Apr 22,
2026"),
("1.10", "1.10.15", "EOL", "Aug 27, 2018", "Dec 17, 2020", "June 17,
2021"),
("1.9", "1.9.0", "EOL", "Jan 03, 2018", "Aug 27, 2018", "Aug 27, 2018"),
("1.8", "1.8.2", "EOL", "Mar 19, 2017", "Jan 03, 2018", "Jan 03, 2018"),