christianlempa-boilerplates/renovate.json
Christoph Schug 10e5daf3f8 fix: pin major and minor versions of MariaDB and MySQL
Releases of MariaDB and MySQL shouldn't be bumped blindly because of the
risk of breaking compatibility which might applications depending on
them prevent to work correctly.
2024-04-27 19:18:02 +02:00

43 lines
821 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
":dependencyDashboard",
":enableVulnerabilityAlertsWithLabel('security')",
":preserveSemverRanges",
":rebaseStalePrs",
"group:recommended"
],
"labels": [
"renovate"
],
"packageRules": [
{
"groupName": "devDependencies (non-major)",
"matchDepTypes": [
"devDependencies",
"require-dev"
],
"matchUpdateTypes": [
"digest",
"minor",
"patch"
]
},
{
"enabled": false,
"managers": [
"docker-compose",
"dockerfile"
],
"matchUpdateTypes": [
"major",
"minor"
],
"packagePatterns": [
"^([^/]+\\/)*(mariadb|mysql)(:.*)?$"
]
}
]
}