|
40 | 40 | // Group all non-major updates (minor and patch) together |
41 | 41 | { |
42 | 42 | "groupName": "all non-major dependencies", |
43 | | - "matchPackageNames": [ |
| 43 | + "matchDepNames": [ |
44 | 44 | "*", |
45 | 45 | "!node", |
46 | 46 | "!pnpm", |
|
70 | 70 | "followTag": "next", |
71 | 71 | "separateMajorMinor": false, |
72 | 72 | "schedule": ["at any time"], |
73 | | - "matchPackageNames": [ |
| 73 | + "matchDepNames": [ |
74 | 74 | "@angular-devkit/**", |
75 | 75 | "@angular/**", |
76 | 76 | "@schematics/**", |
|
87 | 87 |
|
88 | 88 | // Keep minor and patch updates separate for TypeScript |
89 | 89 | { |
90 | | - "matchPackageNames": ["typescript"], |
| 90 | + "matchDepNames": ["typescript"], |
91 | 91 | "separateMinorPatch": true |
92 | 92 | }, |
93 | 93 |
|
94 | 94 | // Group TypeScript-related packages |
95 | 95 | { |
96 | 96 | "groupName": "typescript dependencies", |
97 | | - "matchPackageNames": ["typescript", "tslib"] |
| 97 | + "matchDepNames": ["typescript", "tslib"] |
98 | 98 | }, |
99 | 99 |
|
100 | 100 | // Limit how many times these packages get updated (They deploy each merged PR) |
101 | 101 | { |
102 | | - "matchPackageNames": ["renovate", "quicktype-core"], |
| 102 | + "matchDepNames": ["renovate", "quicktype-core"], |
103 | 103 | "schedule": ["on sunday and wednesday"] |
104 | 104 | }, |
105 | 105 |
|
|
111 | 111 | { |
112 | 112 | "groupName": "scorecard action dependencies", |
113 | 113 | "matchFileNames": [".github/workflows/scorecard.yml"], |
114 | | - "matchPackageNames": ["*"] |
| 114 | + "matchDepNames": ["*"] |
115 | 115 | }, |
116 | 116 |
|
117 | 117 | // ============================================================================ |
|
127 | 127 | // Disable major updates for specified dependencies |
128 | 128 | { |
129 | 129 | "enabled": false, |
130 | | - "matchPackageNames": [ |
| 130 | + "matchDepNames": [ |
| 131 | + "bazel" |
| 132 | + ], |
| 133 | + "matchDepNames": [ |
131 | 134 | "@types/node", |
132 | 135 | "node", |
133 | 136 | "npm", |
|
142 | 145 | // Disable TypeScript major and minor updates |
143 | 146 | { |
144 | 147 | "enabled": false, |
145 | | - "matchPackageNames": ["typescript"], |
| 148 | + "matchDepNames": ["typescript"], |
146 | 149 | "matchUpdateTypes": ["major", "minor"] |
147 | 150 | } |
148 | 151 | ] |
|
0 commit comments