fix: improve Renovate version tracking of PostgreSQL

Only bump the major version of PostgreSQL when using the standalone
Docker Compose variant of PostgreSQL.
This commit is contained in:
Christoph Schug 2024-05-05 14:42:54 +02:00
parent 3366392906
commit d982f1f08e

View File

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