forked from jaegertracing/jaeger-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
63 lines (63 loc) · 2.45 KB
/
Copy pathrenovate.json
File metadata and controls
63 lines (63 loc) · 2.45 KB
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", ":gitSignOff"],
"labels": ["changelog:dependencies"],
"suppressNotifications": ["prEditedNotification"],
"schedule": ["on sunday"],
"minimumReleaseAge": "7 days",
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security"],
"minimumReleaseAge": "0 days"
},
"packageRules": [
{
"groupName": "rolldown",
"matchManagers": ["npm"],
"matchPackageNames": ["rolldown", "/^@rolldown//"],
"description": "rolldown ships one package per platform binding (@rolldown/binding-*); group them all into a single PR so they bump in lockstep"
},
{
"groupName": "assistant-ui and ag-ui",
"matchManagers": ["npm"],
"matchPackageNames": ["/^@assistant-ui//", "/^@ag-ui//"],
"rangeStrategy": "pin",
"description": "@assistant-ui/* and @ag-ui/* share peer types (AssistantRuntime, HttpAgent); bumping them independently produces duplicate copies in node_modules and tsc errors. Pin exact versions (no ^) so npm dedupes a single copy."
},
{
"groupName": "opentelemetry",
"matchManagers": ["npm"],
"matchPackageNames": ["/^@opentelemetry//"],
"description": "@opentelemetry/* packages share internal type contracts and version-locked peer deps; bump them together to avoid mismatches"
},
{
"groupName": "emnapi",
"matchManagers": ["npm"],
"matchPackageNames": ["/^@emnapi//"],
"description": "@emnapi/* packages are platform bindings that must stay in lockstep"
},
{
"groupName": "do not apply patch upgrades to dependencies",
"matchManagers": ["npm"],
"matchUpdateTypes": ["patch", "digest"],
"enabled": false
},
{
"groupName": "vite-plus and bundled vitest",
"matchManagers": ["npm"],
"matchPackageNames": ["vite-plus", "vitest", "@vitest/coverage-v8"],
"enabled": true,
"description": "vite-plus bundles a specific vitest version internally; these must be bumped together to avoid peer-dependency version mismatches. Placed after the patch-disable rule so patch bumps are still included."
},
{
"matchManagers": ["github-actions"],
"groupName": "github-actions deps"
},
{
"groupName": "do not apply patch upgrades to GH workflows",
"matchFileNames": [".github/workflows/**"],
"matchUpdateTypes": ["patch", "digest"],
"enabled": false
}
]
}