2024-04-27 19:16:55 +02:00
|
|
|
{
|
2024-02-23 16:09:11 +01:00
|
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
|
|
"extends": [
|
2024-02-23 16:12:37 +01:00
|
|
|
"config:base",
|
|
|
|
":dependencyDashboard",
|
|
|
|
":enableVulnerabilityAlertsWithLabel('security')",
|
2024-04-27 19:16:55 +02:00
|
|
|
":preserveSemverRanges",
|
|
|
|
":rebaseStalePrs",
|
2024-02-23 16:12:37 +01:00
|
|
|
"group:recommended"
|
2024-04-27 19:16:55 +02:00
|
|
|
],
|
|
|
|
"labels": [
|
|
|
|
"renovate"
|
|
|
|
],
|
2024-10-12 08:59:53 +02:00
|
|
|
"kubernetes": {
|
|
|
|
"fileMatch": ["(^|/)kubernetes/.+\/[^\/]+\\.ya?ml$"]
|
|
|
|
},
|
2024-04-27 19:16:55 +02:00
|
|
|
"packageRules": [
|
|
|
|
{
|
|
|
|
"groupName": "devDependencies (non-major)",
|
|
|
|
"matchDepTypes": [
|
|
|
|
"devDependencies",
|
|
|
|
"require-dev"
|
|
|
|
],
|
|
|
|
"matchUpdateTypes": [
|
|
|
|
"digest",
|
|
|
|
"minor",
|
|
|
|
"patch"
|
|
|
|
]
|
2024-04-27 19:18:02 +02:00
|
|
|
},
|
|
|
|
{
|
2024-07-06 12:04:18 +02:00
|
|
|
"description": "Update MariaDB or MySQL on a patch level only, bumps to major and minor versions might break compatibilty with an application",
|
2024-04-27 19:18:02 +02:00
|
|
|
"enabled": false,
|
|
|
|
"managers": [
|
|
|
|
"docker-compose",
|
|
|
|
"dockerfile"
|
|
|
|
],
|
|
|
|
"matchUpdateTypes": [
|
|
|
|
"major",
|
|
|
|
"minor"
|
|
|
|
],
|
|
|
|
"packagePatterns": [
|
2024-05-01 22:13:51 +02:00
|
|
|
"^([^/]+\\/)*(mariadb|mysql)(:.+)?$"
|
2024-04-27 19:18:02 +02:00
|
|
|
]
|
2024-05-01 22:02:01 +02:00
|
|
|
},
|
2024-05-05 14:42:54 +02:00
|
|
|
{
|
2024-07-06 12:04:18 +02:00
|
|
|
"description": "Update PostgreSQL on a minor version or patch level only, bumps to major versions might break compatibilty with an application",
|
2024-05-05 14:42:54 +02:00
|
|
|
"enabled": false,
|
|
|
|
"managers": [
|
|
|
|
"docker-compose",
|
|
|
|
"dockerfile"
|
|
|
|
],
|
|
|
|
"matchUpdateTypes": [
|
2024-05-05 14:51:54 +02:00
|
|
|
"major"
|
2024-05-05 14:42:54 +02:00
|
|
|
],
|
|
|
|
"packagePatterns": [
|
|
|
|
"^([^/]+\\/)*postgres(:.+)?$"
|
|
|
|
]
|
|
|
|
},
|
2024-05-01 22:02:01 +02:00
|
|
|
{
|
2024-07-06 12:04:18 +02:00
|
|
|
"description": "Update MariaDB or PostgreSQL to the most recent release if they are standalone and not part of an application stack",
|
2024-05-01 22:02:01 +02:00
|
|
|
"enabled": true,
|
|
|
|
"managers": [
|
|
|
|
"docker-compose",
|
|
|
|
"dockerfile"
|
|
|
|
],
|
|
|
|
"matchFileNames": [
|
2024-05-05 14:42:54 +02:00
|
|
|
"docker-compose/mariadb/**",
|
|
|
|
"docker-compose/postgres/**"
|
2024-05-01 22:02:01 +02:00
|
|
|
],
|
|
|
|
"matchUpdateTypes": [
|
|
|
|
"major",
|
|
|
|
"minor",
|
|
|
|
"patch"
|
|
|
|
],
|
|
|
|
"packagePatterns": [
|
2024-05-05 14:42:54 +02:00
|
|
|
"^([^/]+\\/)*(mariadb|postgres)(:.+)?$"
|
2024-05-01 22:02:01 +02:00
|
|
|
]
|
2024-05-02 19:46:28 +02:00
|
|
|
},
|
|
|
|
{
|
2024-07-06 12:04:18 +02:00
|
|
|
"description": "Over time Heimdall changed its versioning schema several times, ensure we only consider the current style",
|
2024-05-02 19:46:28 +02:00
|
|
|
"managers": [
|
|
|
|
"docker-compose",
|
|
|
|
"dockerfile"
|
|
|
|
],
|
|
|
|
"packagePatterns": [
|
|
|
|
"^([^/]+\\/)*heimdall(:.+)?$"
|
|
|
|
],
|
2024-05-02 19:57:48 +02:00
|
|
|
"versioning": "regex:^(?<major>\\d{1,2})\\.(?<minor>\\d+)(\\.(?<patch>\\d+))?$"
|
2024-05-31 12:06:58 +02:00
|
|
|
},
|
|
|
|
{
|
2024-07-06 12:04:18 +02:00
|
|
|
"description": "Track stable releases of Nginx only",
|
2024-05-31 12:06:58 +02:00
|
|
|
"managers": [
|
|
|
|
"docker-compose",
|
|
|
|
"dockerfile"
|
|
|
|
],
|
|
|
|
"packagePatterns": [
|
|
|
|
"^([^/]+\\/)*nginx(:.+)?$"
|
|
|
|
],
|
2024-05-31 12:16:30 +02:00
|
|
|
"versioning": "regex:^(?<major>\\d+)\\.(?<minor>\\d*[02468])(\\.(?<patch>\\d+))?(?:-(?<compatibility>.*))?$"
|
2024-07-01 12:10:41 +02:00
|
|
|
},
|
|
|
|
{
|
2024-07-06 12:04:18 +02:00
|
|
|
"description": "Ignore erroneous version tags of Semaphore",
|
2024-07-01 12:10:41 +02:00
|
|
|
"managers": [
|
|
|
|
"docker-compose",
|
|
|
|
"dockerfile"
|
|
|
|
],
|
|
|
|
"packagePatterns": [
|
|
|
|
"^([^/]+\\/)*semaphore(:.+)?$"
|
|
|
|
],
|
2024-07-01 12:25:06 +02:00
|
|
|
"allowedVersions": "!/^v?2\\.19\\.10$/"
|
2024-04-27 19:16:55 +02:00
|
|
|
}
|
2024-05-01 21:51:51 +02:00
|
|
|
],
|
2024-07-01 12:45:31 +02:00
|
|
|
"separateMinorPatch": true,
|
|
|
|
"stopUpdatingLabel": "renovate/stop_updating"
|
2024-02-23 16:09:11 +01:00
|
|
|
}
|