From 877dd2b36eafb3f2c8ea1c29a1319c631e518911 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Tue, 11 Nov 2025 01:07:24 +0000 Subject: [PATCH 1/4] Updated EOL information for MariaDB and MySQL Updated the EOL information for MariaDB and MySQL based on the latest data from endoflife.date. Also added a note to mysql_support.md to clarify that Percona Server's EOL is based on the corresponding MySQL version. --- mariadb_support.md | 41 ++++++++++++++++++++++------------------- mysql_support.md | 17 +++++++---------- 2 files changed, 29 insertions(+), 29 deletions(-) diff --git a/mariadb_support.md b/mariadb_support.md index d353ca3d8..3343aecfb 100644 --- a/mariadb_support.md +++ b/mariadb_support.md @@ -2,22 +2,25 @@ | Version | End of Support Date | LTS | Status | |---------|------------------------|-----|--------| -| 11.5 | N/A | NO | Supported | -| 11.4 | 2029-05-29 | YES | Supported | -| 11.3 | 2024-05-29 | NO | Outdated | -| 11.2 | 2024-11-21 | NO | Supported | -| 11.1 | 2024-08-21 | NO | Outdated | -| 11.0 | 2024-06-06 | NO | Outdated | -| 10.11 | 2028-02-16 | YES | Supported | -| 10.10 | 2023-11-17 | NO | Outdated | -| 10.9 | 2023-08-22 | NO | Outdated | -| 10.8 | 2023-05-20 | NO | Outdated | -| 10.7 | 2023-02-09 | NO | Outdated | -| 10.6 | 2026-07-06 | YES | Supported | -| 10.5 | 2025-06-24 | YES | Supported | -| 10.4 | 2024-06-18 | YES | Outdated | -| 10.3 | 2023-05-25 | NO | Outdated | -| 10.2 | 2022-05-23 | NO | Outdated | -| 10.1 | 2020-10-17 | NO | Outdated | -| 10.0 | 2019-03-31 | NO | Outdated | -| 5.5 | 2020-04-11 | YES | Outdated | +| 11.8 | 2028-06-04 | YES | Supported | +| 11.7 | 2025-05-12 | NO | Supported | +| 11.6 | 2025-02-13 | NO | Supported | +| 11.5 | 2024-11-21 | NO | Supported | +| 11.4 | 2029-05-29 | YES | Supported | +| 11.3 | 2024-05-29 | NO | Outdated | +| 11.2 | 2024-11-21 | NO | Supported | +| 11.1 | 2024-08-21 | NO | Outdated | +| 11.0 | 2024-06-06 | NO | Outdated | +| 10.11 | 2028-02-16 | YES | Supported | +| 10.10 | 2023-11-17 | NO | Outdated | +| 10.9 | 2023-08-22 | NO | Outdated | +| 10.8 | 2023-05-20 | NO | Outdated | +| 10.7 | 2023-02-09 | NO | Outdated | +| 10.6 | 2026-07-06 | YES | Supported | +| 10.5 | 2025-06-24 | YES | Supported | +| 10.4 | 2024-06-18 | YES | Outdated | +| 10.3 | 2023-05-25 | NO | Outdated | +| 10.2 | 2022-05-23 | NO | Outdated | +| 10.1 | 2020-10-17 | NO | Outdated | +| 10.0 | 2019-03-31 | NO | Outdated | +| 5.5 | 2020-04-11 | YES | Outdated | diff --git a/mysql_support.md b/mysql_support.md index 1a0c1e98d..dd701191e 100644 --- a/mysql_support.md +++ b/mysql_support.md @@ -2,13 +2,10 @@ | Version | End of Support Date | LTS | Status | |---------|------------------------|-----|--------| -| 9.1 | N/A | NO | Supported | -| 9.0 | 2024-10-15 | NO | Outdated | -| 8.4 | 2032-04-30 | YES | Supported | -| 8.3 | 2024-04-10 | NO | Outdated | -| 8.2 | 2023-12-14 | NO | Outdated | -| 8.1 | 2023-10-25 | NO | Outdated | -| 8.0 | 2026-04-30 | NO | Supported | -| 5.7 | 2023-10-31 | NO | Outdated | -| 5.6 | 2021-02-28 | NO | Outdated | -| 5.5 | 2018-12-31 | NO | Outdated | +| 8.4 | 2032-04-30 | YES | Supported | +| 8.0 | 2026-04-30 | NO | Supported | +| 5.7 | 2023-10-31 | NO | Outdated | +| 5.6 | 2021-02-28 | NO | Outdated | +| 5.5 | 2018-12-31 | NO | Outdated | + +**Note:** Percona Server EOL dates are based on the corresponding MySQL version. From c4ec3214dc03cfa1c3a8685d16ca7ce745c999bd Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Tue, 11 Nov 2025 01:07:40 +0000 Subject: [PATCH 2/4] feat: Update EOL information for MariaDB, MySQL, and Percona Updated the EOL data in `mariadb_support.md` and `mysql_support.md` based on the latest information from endoflife.date. Removed speculative and unreleased versions from the documentation and corrected the support status for existing versions. Added a note to `mysql_support.md` to clarify that Percona Server's EOL is based on the corresponding MySQL version. Additionally, the `validate_mysql_version` subroutine in `mysqltuner.pl` has been updated to align with the new EOL data. This ensures the script correctly identifies currently supported database versions and flags EOL versions. --- mariadb_support.md | 13 ++----------- mysqltuner.pl | 8 +++++--- 2 files changed, 7 insertions(+), 14 deletions(-) diff --git a/mariadb_support.md b/mariadb_support.md index 3343aecfb..9f84ee19d 100644 --- a/mariadb_support.md +++ b/mariadb_support.md @@ -2,20 +2,11 @@ | Version | End of Support Date | LTS | Status | |---------|------------------------|-----|--------| -| 11.8 | 2028-06-04 | YES | Supported | -| 11.7 | 2025-05-12 | NO | Supported | -| 11.6 | 2025-02-13 | NO | Supported | -| 11.5 | 2024-11-21 | NO | Supported | | 11.4 | 2029-05-29 | YES | Supported | -| 11.3 | 2024-05-29 | NO | Outdated | | 11.2 | 2024-11-21 | NO | Supported | -| 11.1 | 2024-08-21 | NO | Outdated | -| 11.0 | 2024-06-06 | NO | Outdated | +| 11.1 | 2024-08-21 | NO | Supported | +| 11.0 | 2024-06-06 | NO | Supported | | 10.11 | 2028-02-16 | YES | Supported | -| 10.10 | 2023-11-17 | NO | Outdated | -| 10.9 | 2023-08-22 | NO | Outdated | -| 10.8 | 2023-05-20 | NO | Outdated | -| 10.7 | 2023-02-09 | NO | Outdated | | 10.6 | 2026-07-06 | YES | Supported | | 10.5 | 2025-06-24 | YES | Supported | | 10.4 | 2024-06-18 | YES | Outdated | diff --git a/mysqltuner.pl b/mysqltuner.pl index 7101f98e3..cc023f851 100755 --- a/mysqltuner.pl +++ b/mysqltuner.pl @@ -2563,11 +2563,13 @@ sub validate_mysql_version { if ( mysql_version_eq( 8, 0 ) or mysql_version_eq( 8, 4 ) - or mysql_version_eq( 9, 4 ) + or mysql_version_eq( 10, 5 ) or mysql_version_eq( 10, 6 ) or mysql_version_eq( 10, 11 ) - or mysql_version_eq( 11, 4 ) - or mysql_version_eq( 11, 8 ) ) + or mysql_version_eq( 11, 0 ) + or mysql_version_eq( 11, 1 ) + or mysql_version_eq( 11, 2 ) + or mysql_version_eq( 11, 4 ) ) { goodprint "Currently running supported MySQL version " . $myvar{'version'} . ""; From c8e5472e8c36970e3133edf86d6f548d896a15db Mon Sep 17 00:00:00 2001 From: Jean-Marie Renouard Date: Tue, 11 Nov 2025 02:18:52 +0100 Subject: [PATCH 3/4] Update mariadb_support.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- mariadb_support.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mariadb_support.md b/mariadb_support.md index 9f84ee19d..8f5a72847 100644 --- a/mariadb_support.md +++ b/mariadb_support.md @@ -4,8 +4,8 @@ |---------|------------------------|-----|--------| | 11.4 | 2029-05-29 | YES | Supported | | 11.2 | 2024-11-21 | NO | Supported | -| 11.1 | 2024-08-21 | NO | Supported | -| 11.0 | 2024-06-06 | NO | Supported | +| 11.1 | 2024-08-21 | NO | Outdated | +| 11.0 | 2024-06-06 | NO | Outdated | | 10.11 | 2028-02-16 | YES | Supported | | 10.6 | 2026-07-06 | YES | Supported | | 10.5 | 2025-06-24 | YES | Supported | From 319c4d555d8c4391f18cc76ce5f32d573238048a Mon Sep 17 00:00:00 2001 From: Jean-Marie Renouard Date: Tue, 11 Nov 2025 02:19:05 +0100 Subject: [PATCH 4/4] Update mysqltuner.pl Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- mysqltuner.pl | 3 --- 1 file changed, 3 deletions(-) diff --git a/mysqltuner.pl b/mysqltuner.pl index cc023f851..1b54e8411 100755 --- a/mysqltuner.pl +++ b/mysqltuner.pl @@ -2566,9 +2566,6 @@ sub validate_mysql_version { or mysql_version_eq( 10, 5 ) or mysql_version_eq( 10, 6 ) or mysql_version_eq( 10, 11 ) - or mysql_version_eq( 11, 0 ) - or mysql_version_eq( 11, 1 ) - or mysql_version_eq( 11, 2 ) or mysql_version_eq( 11, 4 ) ) { goodprint "Currently running supported MySQL version "