mirror of
https://github.com/home-assistant/core.git
synced 2026-09-27 01:46:11 -04:00
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:
co-authored by
Paulus Schoutsen
Claude Opus 5
parent
aed8090cbb
commit
a9f7c8f7b7
+1
-1
@@ -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"],
|
||||
|
||||
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user