From 08205978166649ac75e97b3ac8c8ae040db38374 Mon Sep 17 00:00:00 2001 From: Dafydd Jones Date: Mon, 9 Feb 2026 16:02:17 +0000 Subject: [PATCH 1/2] fix(default): ignore `maintainLockFilesWeekly` preset * Renovate v43 enables weekly lock file maintenance updates by default; ignore this default for the time being until we decide how to handle this --- default.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/default.json b/default.json index 5a03f0f..27e229a 100644 --- a/default.json +++ b/default.json @@ -6,6 +6,9 @@ "config:best-practices", ":approveMajorUpdates" ], + "ignorePresets": [ + ":maintainLockFilesWeekly" + ], "automergeStrategy": "merge-commit", "dependencyDashboardTitle": "Renovate Dashboard" } From 76fad3a32a1e0b5c6b34819dea650e33f9233c0e Mon Sep 17 00:00:00 2001 From: Dafydd Jones Date: Mon, 9 Feb 2026 16:05:04 +0000 Subject: [PATCH 2/2] fix(default): remove `approveMajorUpdates` preset * this preset only makes sense with Renovate-generated notifications which is a paid feature only * major updates will have a PR generated and be handled manually --- default.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/default.json b/default.json index 27e229a..13d5e21 100644 --- a/default.json +++ b/default.json @@ -3,8 +3,7 @@ "description": "Default preset for use with Saltstack Formulas' repos", "enabledManagers": [], "extends": [ - "config:best-practices", - ":approveMajorUpdates" + "config:best-practices" ], "ignorePresets": [ ":maintainLockFilesWeekly"