Update recorder database versions for MariaDB 13.0 (#183037)

Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
Balloob Bot
2026-09-24 21:40:45 +02:00
committed by GitHub
co-authored by Paulus Schoutsen Claude Opus 5
parent aed8090cbb
commit a9f7c8f7b7
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ class DatabaseVersions(TypedDict):
SUPPORTED_DATABASE_VERSIONS: dict[str, DatabaseVersions] = {
"mariadb": {
"supported_lts": ["10.11", "11.4", "11.8", "12.3"],
"latest_non_lts": "12.2",
"latest_non_lts": "13.0",
},
"mysql": {
"supported_lts": ["8.4", "9.7"],
+4 -4
View File
@@ -905,10 +905,10 @@ async def test_issue_for_not_supported_lts_version(
@pytest.mark.parametrize(
"server_version",
[
"12.4.0-MariaDB", # non-LTS MariaDB release newer than we know about
"13.4.0-MariaDB", # LTS MariaDB release newer than we know about
"9.8.0", # non-LTS MySQL release newer than we know about
"10.4.0", # LTS MySQL release newer than we know about
# One major above the newest series in the generated version data, so these
# stay newer than we know about when endoflife.date reports new releases.
f"{util.SUPPORTED_MARIA_DB_LTS.latest_non_lts_series[0] + 1}.0.0-MariaDB",
f"{util.SUPPORTED_MYSQL_LTS.latest_non_lts_series[0] + 1}.0.0",
],
)
async def test_no_issue_for_future_database_version(