Merge pull request #267 from cschug/renovate_postgresql

fix: improve Renovate version tracking of PostgreSQL
This commit is contained in:
Christoph Schug 2024-05-05 14:46:35 +02:00 committed by GitHub
commit 0786a0d161
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,6 +38,19 @@
"^([^/]+\\/)*(mariadb|mysql)(:.+)?$" "^([^/]+\\/)*(mariadb|mysql)(:.+)?$"
] ]
}, },
{
"enabled": false,
"managers": [
"docker-compose",
"dockerfile"
],
"matchUpdateTypes": [
"major",
],
"packagePatterns": [
"^([^/]+\\/)*postgres(:.+)?$"
]
},
{ {
"enabled": true, "enabled": true,
"managers": [ "managers": [
@ -45,7 +58,8 @@
"dockerfile" "dockerfile"
], ],
"matchFileNames": [ "matchFileNames": [
"docker-compose/mariadb/**" "docker-compose/mariadb/**",
"docker-compose/postgres/**"
], ],
"matchUpdateTypes": [ "matchUpdateTypes": [
"major", "major",
@ -53,7 +67,7 @@
"patch" "patch"
], ],
"packagePatterns": [ "packagePatterns": [
"^([^/]+\\/)*mariadb(:.+)?$" "^([^/]+\\/)*(mariadb|postgres)(:.+)?$"
] ]
}, },
{ {