From 4d7719480eed71e07c26d6ecaf08efe03b8418ff Mon Sep 17 00:00:00 2001 From: Jochen Issing Date: Sat, 28 Mar 2026 14:43:55 +0100 Subject: [PATCH] Pin Renovate to only allow MySQL 8.4.x patch updates Prevents Renovate from proposing upgrades to MySQL Innovation releases (9.x) which are short-lived and not suitable for production. Co-Authored-By: Claude Opus 4.6 --- renovate.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/renovate.json b/renovate.json index b42c4fb..f427eb4 100644 --- a/renovate.json +++ b/renovate.json @@ -1,5 +1,12 @@ { "extends": [ "config:recommended" + ], + "packageRules": [ + { + "matchDatasources": ["docker"], + "matchPackageNames": ["mysql"], + "allowedVersions": "8.4.*" + } ] }