From 09ece8bffcced09586ad272196d0ad85a997f1b9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 5 Jan 2025 01:45:29 +0000 Subject: [PATCH] chore(deps): migrate config renovate.json --- renovate.json | 31 +++++++++++++++++++++++-------- 1 file changed, 23 insertions(+), 8 deletions(-) diff --git a/renovate.json b/renovate.json index 8eb2362f..d9ea7e33 100644 --- a/renovate.json +++ b/renovate.json @@ -1,7 +1,7 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:base" + "config:recommended" ], "ignoreDeps": [ "quiet-fabric-loom", @@ -15,29 +15,44 @@ "packageRules": [ { "description": "Correct Guava version handling", - "matchPackagePrefixes": ["com.google.guava:"], - "versioning": "regex:^(?\\d+)(\\.(?\\d+))?(\\.(?\\d+))?(-(?.*))?$" + "versioning": "regex:^(?\\d+)(\\.(?\\d+))?(\\.(?\\d+))?(-(?.*))?$", + "matchPackageNames": [ + "com.google.guava:{/,}**" + ] }, { "description": "Correct Fabric API version handling", - "matchPackageNames": ["net.fabricmc.fabric-api:fabric-api", "net.fabricmc.fabric-api:fabric-api-deprecated"], + "matchPackageNames": [ + "net.fabricmc.fabric-api:fabric-api", + "net.fabricmc.fabric-api:fabric-api-deprecated" + ], "versioning": "regex:^(?\\d+)(\\.(?\\d+))?(\\.(?\\d+))?(?:\\+(?.*))?$" }, { "description": "Correct NeoForge version handling", - "matchPackageNames": ["net.neoforged:neoforge"], + "matchPackageNames": [ + "net.neoforged:neoforge" + ], "versioning": "regex:^(?(\\d+\\.){2})(?\\d+)(-beta)?$" }, { - "matchManagers": ["github-actions", "gradle-wrapper"], + "matchManagers": [ + "github-actions", + "gradle-wrapper" + ], "groupName": "gradle and github actions" }, { - "matchDepTypes": ["plugin"], + "matchDepTypes": [ + "plugin" + ], "groupName": "gradle and github actions" }, { - "matchPaths": ["build-logic/*", "buildSrc/*"], + "matchFileNames": [ + "build-logic/*", + "buildSrc/*" + ], "groupName": "gradle and github actions" } ],