-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathrenovate.json
More file actions
102 lines (102 loc) · 3.36 KB
/
Copy pathrenovate.json
File metadata and controls
102 lines (102 loc) · 3.36 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
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":dependencyDashboard",
":semanticCommitTypeAll(chore)"
],
"timezone": "Etc/UTC",
"schedule": ["after 6am and before 9am on Wednesday"],
"prConcurrentLimit": 3,
"minimumReleaseAge": "7 days",
"labels": ["dependencies"],
"packageRules": [
{
"description": "Automerge patch-level and pin/digest updates — CI gates correctness",
"matchUpdateTypes": ["patch", "pin", "digest"],
"automerge": true
},
{
"description": "Automerge minor updates for dev dependencies — low risk for non-published code",
"matchDepTypes": ["devDependencies", "dev-dependencies"],
"matchUpdateTypes": ["minor"],
"automerge": true
},
{
"description": "Group core crate Cargo updates",
"matchFileNames": [
"Cargo.toml",
"crux_core/**",
"crux_http/**",
"crux_kv/**",
"crux_macros/**",
"crux_time/**"
],
"matchManagers": ["cargo"],
"groupName": "core-cargo",
"commitMessagePrefix": "chore(core):"
},
{
"description": "Group support crate Cargo updates",
"matchFileNames": ["doctest_support/**", "examples_support/**"],
"matchManagers": ["cargo"],
"groupName": "support-cargo",
"commitMessagePrefix": "chore(support):"
},
{
"description": "Group all example deps (Cargo, npm, Gradle)",
"matchFileNames": ["examples/**"],
"groupName": "examples",
"commitMessagePrefix": "chore(examples):"
},
{
"description": "Group GitHub Actions updates",
"matchManagers": ["github-actions"],
"groupName": "github-actions",
"commitMessagePrefix": "chore(ci):"
},
{
"description": "Group typegen extension npm updates",
"matchFileNames": ["crux_core/typegen_extensions/**"],
"matchManagers": ["npm"],
"groupName": "typegen-npm",
"commitMessagePrefix": "chore(core):"
},
{
"description": "Update Cargo lockfiles even when the version range is already satisfied",
"matchManagers": ["cargo"],
"rangeStrategy": "update-lockfile"
},
{
"description": "Pin UniFFI compatibility dependencies during the BoltFFI migration window",
"matchPackageNames": ["uniffi", "uniffi_bindgen"],
"matchManagers": ["cargo"],
"allowedVersions": "0.29.4"
},
{
"description": "Pin BoltFFI while generated shell artifacts are migrated together",
"matchPackageNames": ["boltffi", "boltffi_cli"],
"matchManagers": ["cargo"],
"allowedVersions": "0.25.2"
},
{
"description": "Pin facet to 0.44 — aligns with facet_generate 0.17",
"matchPackageNames": ["facet"],
"matchManagers": ["cargo"],
"allowedVersions": "0.44"
},
{
"description": "Pin bincode to 1.x — 2.x has incompatible API; plan is to replace bincode entirely as it is unmaintained",
"matchPackageNames": ["bincode"],
"matchManagers": ["cargo"],
"allowedVersions": "<2"
},
{
"description": "Pin cargo_metadata to 0.19 in crux_cli — newer versions have breaking changes affecting CLI metadata parsing",
"matchPackageNames": ["cargo_metadata"],
"matchFileNames": ["crux_cli/**"],
"matchManagers": ["cargo"],
"allowedVersions": "0.19"
}
]
}