1
mirror of https://github.com/CarmJos/MineSQL.git synced 2026-06-14 05:11:08 +08:00

Compare commits

..

1 Commits

Author SHA1 Message Date
carm b41b5418a3 ci(deps): Renovate auto update. 2026-05-13 03:10:53 +08:00
2 changed files with 25 additions and 3 deletions
+1 -1
View File
@@ -122,7 +122,7 @@
<dependency> <dependency>
<groupId>org.jetbrains</groupId> <groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId> <artifactId>annotations</artifactId>
<version>26.1.0</version> <version>26.0.2-1</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
+24 -2
View File
@@ -3,11 +3,33 @@
"extends": [ "extends": [
"config:recommended" "config:recommended"
], ],
"packageRules": [ "packageRules": [
{ {
"matchUpdateTypes": ["minor", "patch"], "description": "Automerge minor and patch updates",
"matchUpdateTypes": [
"minor",
"patch"
],
"matchCurrentVersion": "!/^0/", "matchCurrentVersion": "!/^0/",
"automerge": true "automerge": true
},
{
"description": "Automerge non-build-impact updates",
"matchUpdateTypes": [
"digest",
"pin",
"lockFileMaintenance"
],
"automerge": true
},
{
"description": "Never update minecraft/spigot/bukkit related dependencies",
"matchPackageNames": [
"/.*minecraft.*/i",
"/.*spigot.*/i",
"/.*bukkit.*/i"
],
"enabled": false
} }
] ]
} }