Skip to content

Commit

Permalink
chore(deps): migrate config renovate.json
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and jpenilla committed Jan 5, 2025
1 parent a8ae38b commit 09ece8b
Showing 1 changed file with 23 additions and 8 deletions.
31 changes: 23 additions & 8 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
"config:recommended"
],
"ignoreDeps": [
"quiet-fabric-loom",
Expand All @@ -15,29 +15,44 @@
"packageRules": [
{
"description": "Correct Guava version handling",
"matchPackagePrefixes": ["com.google.guava:"],
"versioning": "regex:^(?<major>\\d+)(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))?(-(?<compatibility>.*))?$"
"versioning": "regex:^(?<major>\\d+)(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))?(-(?<compatibility>.*))?$",
"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:^(?<major>\\d+)(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))?(?:\\+(?<compatibility>.*))?$"
},
{
"description": "Correct NeoForge version handling",
"matchPackageNames": ["net.neoforged:neoforge"],
"matchPackageNames": [
"net.neoforged:neoforge"
],
"versioning": "regex:^(?<compatibility>(\\d+\\.){2})(?<minor>\\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"
}
],
Expand Down

0 comments on commit 09ece8b

Please sign in to comment.