Skip to content

Commit

Permalink
chore: limit dependency version upgrade
Browse files Browse the repository at this point in the history
Not all requires the latest version.

Signed-off-by: Chenxiong Qi <qcxhome@gmail.com>
  • Loading branch information
tkdchen committed Jul 15, 2024
1 parent c07e652 commit 87e1174
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,19 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices"
],
"packageRules": [
{
"matchPackageNames": ["mariadb"],
"allowedVersions": ">=11.4.0,<11.5.0",
},
{
"matchPackageNames": ["mysql"],
"allowedVersions": ">=8.4.0,<8.5.0"
},
{
"matchPackageNames": ["postgres"],
"allowedVersions": ">=16.3.0,<16.4.0"
}
]
}

0 comments on commit 87e1174

Please sign in to comment.