Skip to content

Commit

Permalink
chore: set db version upgrade limit
Browse files Browse the repository at this point in the history
Signed-off-by: Chenxiong Qi <[email protected]>
  • Loading branch information
tkdchen committed Jul 15, 2024
1 parent 87e1174 commit 429bc31
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,21 @@
"extends": [
"config:best-practices"
],
"docker-compose": {
"fileMatch": ["^container-compose\\.yaml$"]
},
"packageRules": [
{
"matchPackageNames": ["mariadb"],
"allowedVersions": ">=11.4.0,<11.5.0",
"allowedVersions": "<11.5.0"
},
{
"matchPackageNames": ["mysql"],
"allowedVersions": ">=8.4.0,<8.5.0"
"allowedVersions": "<8.5.0"
},
{
"matchPackageNames": ["postgres"],
"allowedVersions": ">=16.3.0,<16.4.0"
"allowedVersions": "<16.4.0"
}
]
}

0 comments on commit 429bc31

Please sign in to comment.