From 0e8a46f97170390ebca8e1a41945e1da67691c38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20T=C3=B6lle?= Date: Wed, 12 Nov 2025 10:02:45 +0100 Subject: [PATCH] feat(renovate): group golang.org/x packages These packages are all developed by the Go team and are considered an "extended standard library" with looser compatibility guarantees. They have started requireing very recent versions of eachother. When they release a new version, renovate usually opens 2-5 PRs, where all other `golang.org/x` dependencies are also bumped to the latest version. We can just group them at this point to reduce the noise from "duplicate" PRs. --- renovate/golang.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/renovate/golang.json b/renovate/golang.json index eb76321..22ddeb7 100644 --- a/renovate/golang.json +++ b/renovate/golang.json @@ -5,6 +5,11 @@ { "matchPackageNames": ["go", "golang"], "allowedVersions": "<1.26" + }, + { + "description": "Go extended library", + "matchPackageNames": ["golang.org/x/**"], + "groupName": "golang.org/x/" } ], "postUpdateOptions": ["gomodUpdateImportPaths"]