-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We don't want to update gson or guava to avoid breaking compatibility with old versions for now
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:base" | ||
], | ||
"ignoreDeps": [ | ||
"quiet-fabric-loom", | ||
"com.mojang:minecraft", | ||
"com.google.code.gson:gson", | ||
"com.google.guava:guava" | ||
], | ||
"labels": [ | ||
"dependencies" | ||
], | ||
"packageRules": [ | ||
{ | ||
"description": "Correct Guava version handling", | ||
"matchPackagePrefixes": ["com.google.guava:"], | ||
"versioning": "regex:^(?<major>\\d+)(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))?(-(?<compatibility>.*))?$" | ||
}, | ||
{ | ||
"description": "Correct Fabric API version handling", | ||
"matchPackageNames": ["net.fabricmc.fabric-api:fabric-api", "net.fabricmc.fabric-api:fabric-api-deprecated"], | ||
"versioning": "regex:^(?<major>\\d+)(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))?(?:\\+(?<compatibility>.*))?$" | ||
}, | ||
{ | ||
"matchManagers": ["github-actions", "gradle-wrapper"], | ||
"groupName": "gradle and github actions" | ||
}, | ||
{ | ||
"matchDepTypes": ["plugin"], | ||
"groupName": "gradle and github actions" | ||
}, | ||
{ | ||
"matchPaths": ["build-logic/*", "buildSrc/*"], | ||
"groupName": "gradle and github actions" | ||
} | ||
], | ||
"semanticCommitType": "build", | ||
"commitMessagePrefix": "chore(deps): " | ||
} |