Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 13 additions & 19 deletions mariadb_support.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,16 @@

| 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.4 | 2029-05-29 | YES | Supported |
| 11.2 | 2024-11-21 | NO | Supported |
Copy link

Copilot AI Nov 11, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

MariaDB version 11.2 is marked as 'Supported' but its end-of-support date (2024-11-21) has already passed as of November 2025. This should be marked as 'Outdated' instead.

Suggested change
| 11.2 | 2024-11-21 | NO | Supported |
| 11.2 | 2024-11-21 | NO | Outdated |

Copilot uses AI. Check for mistakes.
| 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 |
| 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 |
17 changes: 7 additions & 10 deletions mysql_support.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
5 changes: 2 additions & 3 deletions mysqltuner.pl
Original file line number Diff line number Diff line change
Expand Up @@ -2563,11 +2563,10 @@ 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, 4 ) )
{
goodprint "Currently running supported MySQL version "
. $myvar{'version'} . "";
Expand Down