-
Notifications
You must be signed in to change notification settings - Fork 1
/
fixes.json
131 lines (131 loc) · 4.24 KB
/
fixes.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"packageRules": [
{
"description": "Exclude invalid version from antlr4ts",
"matchSourceUrls": [
"https://github.com/tunnelvisionlabs/antlr4ts{,/}**"
],
"allowedVersions": "!/(-dev|-\\w+\\.[a-z0-9]{8})$/"
},
{
"description": "Use node versioning for node",
"matchPackageNames": ["node", "amd64/node"],
"versioning": "node"
},
{
"description": "Only stable haproxy / nginx versions",
"matchPackageNames": ["/^(?:amd64\\/)?(?:haproxy|nginx)/"],
"allowedVersions": "/^\\d+\\.\\d*[02468]\\.\\d+(-\\w+)?$/"
},
{
"description": "Date based releases",
"matchPackageNames": ["/(^|\\/)minio$/"],
"separateMinorPatch": false,
"separateMajorMinor": false
},
{
"description": "Only stable haproxy / nginx bitnami versions",
"matchPackageNames": [
"/(?:bitnami-containers|bitnami)\\/(?:haproxy|nginx)/"
],
"allowedVersions": "/^\\d+\\.\\d*[02468]\\.\\d+(?:-.+-\\d+(?:-r\\d+)?)?$/"
},
{
"description": "Separate k3s minor / patch updates",
"matchDepNames": ["k3s"],
"separateMinorPatch": true
},
{
"description": "Multiple major updates for docker database images",
"matchDatasources": ["docker"],
"matchDepNames": [
"postgres",
"mariadb",
"/(^|\\/)postgresql$/",
"/(^|\\/)mariadb$/"
],
"excludePackagePrefixes": ["registry-1.docker.io/bitnamicharts/"],
"separateMultipleMajor": true
},
{
"description": "Don't group docker database images major updates",
"matchDatasources": ["docker"],
"matchDepNames": [
"postgres",
"mariadb",
"/(^|\\/)postgresql$/",
"/(^|\\/)mariadb$/",
"!registry-1.docker.io/bitnamicharts/"
],
"matchUpdateTypes": ["major"],
"groupName": null
},
{
"description": "Force different branch for dotnet runtime dependend major updates",
"matchPackageNames": ["Microsoft.AspNetCore**"],
"matchDatasources": ["nuget"],
"matchUpdateTypes": ["major"],
"groupName": "dotnet-aspnet"
},
{
"description": "Fix forgejo docker image versioning",
"matchPackageNames": [
"codeberg.org/forgejo/forgejo",
"ghcr.io/visualon/forgejo"
],
"matchDatasources": ["docker"],
"versioning": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)(?:-(?<build>\\d+))?(?:-(?<compatibility>.+))?$"
},
{
"description": "Fix shim versioning",
"matchPackageNames": ["shim", "kiennq/scoop-better-shimexe"],
"versioning": "regex:^v?(?<major>\\d+)\\.(?<minor>\\d+)(?:\\.(?<patch>\\d+))?$"
},
{
"description": "Fix zalando spilo docker image versioning",
"matchPackageNames": ["ghcr.io/zalando/spilo-**"],
"matchDatasources": ["docker"],
"versioning": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)-p(?<patch>\\d+)$"
},
{
"description": "Fix primeng when latest tag is not latest version",
"matchDatasources": ["npm"],
"matchDepNames": ["primeng"],
"respectLatest": false
},
{
"description": "Fix oci helm chart commit message",
"matchDatasources": ["docker"],
"matchManagers": ["helmv3"],
"commitMessageTopic": "helm chart {{depName}}"
},
{
"matchSourceUrls": ["https://github.com/bitnami/charts{,/}**"],
"commitMessageTopic": "helm chart {{depName}}"
},
{
"description": "Use `semver-coerced` for action updates",
"matchDepTypes": ["action"],
"versioning": "semver-coerced"
},
{
"description": "Use `semver` for official action updates",
"matchDepTypes": ["action"],
"matchDepNames": ["/^actions//"],
"versioning": "semver"
},
{
"matchDatasources": ["docker"],
"matchDepNames": ["docker"],
"versionCompatibility": "^(?<version>[^-]+)(?<compatibility>-.*)?$",
"versioning": "semver"
},
{
"description": "set version compabillity for roundcube",
"matchDatasources": ["docker"],
"matchDepNames": ["roundcube/roundcubemail"],
"versionCompatibility": "^(?<version>[^-]+)(?<compatibility>-.*)?$"
}
]
}