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 <[email protected]>
  • Loading branch information
tkdchen committed Jul 15, 2024
1 parent c07e652 commit e86c1d4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,23 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices"
],
"packageRules": [
{
"matchPackageNames": ["mariadb"],
"allowedVersions": "<11.5.0",
},
{
"matchPackageNames": ["mysql"],
"allowedVersions": "<8.5.0"
},
{
"matchPackageNames": ["postgres"],
"allowedVersions": "<16.4.0"
},
{
"matchPackageNames": ["Django"],
"allowedVersions": "<5.0.0"
}
]
}

0 comments on commit e86c1d4

Please sign in to comment.