From 8eddefb7dbada310d8c82566bf10778c77cb3f0d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 20 Jun 2026 16:26:14 +0000 Subject: [PATCH 1/2] Initial plan From 71c2594cf840dddc8842f20df837569cd4eda0db Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 20 Jun 2026 16:27:56 +0000 Subject: [PATCH 2/2] feat: enable Renovate for Go transitive deps with gomodTidy - Add packageRule enabling indirect (transitive) Go dependency updates - Add gomodTidy postUpdateOption to keep go.sum clean after updates - Existing minimumReleaseAge of 3 days ensures deps are not merged immediately Closes #51 --- renovate.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/renovate.json b/renovate.json index b6e2f9b..ae12cf3 100644 --- a/renovate.json +++ b/renovate.json @@ -4,6 +4,7 @@ "config:recommended" ], "minimumReleaseAge": "3 days", + "postUpdateOptions": ["gomodTidy"], "packageRules": [ { "description": "Automerge minor, patch, and digest updates", @@ -19,6 +20,12 @@ "description": "Group drop chart and drop-crds chart version bumps together", "matchFileNames": ["charts/drop/Chart.yaml", "charts/drop-crds/Chart.yaml"], "groupName": "drop-charts" + }, + { + "description": "Enable updates for transitive (indirect) Go dependencies", + "matchManagers": ["gomod"], + "matchDepTypes": ["indirect"], + "enabled": true } ], "customManagers": [