From 2c8d50cef21fb9a9c9d984a68ad39b1ea2c1cb81 Mon Sep 17 00:00:00 2001 From: Romain Date: Thu, 1 Aug 2024 22:39:10 +0200 Subject: [PATCH] [amazon-rds-mariadb] Add automation (#363) Reusing the src/rds.py script. --------- Co-authored-by: Marc Wrobel --- src/rds.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rds.py b/src/rds.py index b1c77ba2..c0ed20e1 100644 --- a/src/rds.py +++ b/src/rds.py @@ -12,6 +12,7 @@ in the third column (usually named 'RDS release date'). PRODUCTS = { "amazon-rds-mysql": "https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Concepts.VersionMgmt.html", "amazon-rds-postgresql": "https://docs.aws.amazon.com/AmazonRDS/latest/PostgreSQLReleaseNotes/postgresql-release-calendar.html", + "amazon-rds-mariadb": "https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MariaDB.Concepts.VersionMgmt.html", } VERSION_REGEX = re.compile(r"(?P\d+(?:\.\d+)*)", flags=re.IGNORECASE) # https://regex101.com/r/BY1vwV/1