Compare commits

...

2 commits

Author SHA1 Message Date
de4252db28 Update docker.io/pretix/standalone Docker tag to v2026
All checks were successful
/ Ansible Lint (push) Successful in 3m34s
/ Ansible Lint (pull_request) Successful in 2m33s
2026-03-06 18:57:35 +00:00
f345ff5e00
renovate: make exclusion of CalVer non-patch/-minor upgrades work
All checks were successful
/ Ansible Lint (push) Successful in 2m27s
Pretix and Pretalx both use CalVer, so we don't want to have upgrades to
their second number be identified as minor updates and get grouped with
all the other minor and patch updates.
The regex to re-classify the second number as major doesn't work.
Probably because of:
"Important: all capture groups must contain only purely numeric values."
(https://docs.renovatebot.com/modules/versioning/regex/)
So instead match on the minor update type for Pretix and Pretalx and set
the group name to null.
2026-03-06 19:53:24 +01:00
2 changed files with 5 additions and 3 deletions

View file

@ -35,12 +35,14 @@
{
"matchDatasources": ["docker"],
"matchPackageNames": ["docker.io/pretix/standalone"],
"versioning": "regex:^(?<major>\\d+\\.\\d+)(?:\\.(?<minor>\\d+))$"
"matchUpdateTypes": ["minor"],
"groupName": null
},
{
"matchDatasources": ["docker"],
"matchPackageNames": ["docker.io/pretalx/standalone"],
"versioning": "regex:^v(?<major>\\d+\\.\\d+)(?:\\.(?<minor>\\d+))$"
"matchUpdateTypes": ["minor"],
"groupName": null
}
],
"customManagers": [

View file

@ -25,7 +25,7 @@ services:
backend:
pretix:
image: docker.io/pretix/standalone:2024.8
image: docker.io/pretix/standalone:2026.2
command: ["all"]
ports:
- "8345:80"