|
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 | 131 | "@types/node",
|
132 | 132 | "bazel",
|
133 | 133 | "node",
|
|
143 | 143 | // Disable TypeScript major and minor updates
|
144 | 144 | {
|
145 | 145 | "enabled": false,
|
146 |
| - "matchPackageNames": ["typescript"], |
| 146 | + "matchDepNames": ["typescript"], |
147 | 147 | "matchUpdateTypes": ["major", "minor"]
|
148 | 148 | }
|
149 | 149 | ]
|
|
0 commit comments