|
36 | 36 | // Group all non-major updates (minor and patch) together
|
37 | 37 | {
|
38 | 38 | 'groupName': 'all non-major dependencies',
|
39 |
| - 'matchPackageNames': ['*', '!node', '!pnpm', '!npm', '!yarn'], |
| 39 | + 'matchDepNames': ['*', '!node', '!pnpm', '!npm', '!yarn'], |
40 | 40 | 'matchUpdateTypes': ['digest', 'patch', 'minor'],
|
41 | 41 | },
|
42 | 42 |
|
|
60 | 60 | 'followTag': 'next',
|
61 | 61 | 'separateMajorMinor': false,
|
62 | 62 | 'schedule': ['at any time'],
|
63 |
| - 'matchPackageNames': [ |
| 63 | + 'matchDepNames': [ |
64 | 64 | '@angular-devkit/**',
|
65 | 65 | '@angular/**',
|
66 | 66 | '@schematics/**',
|
|
77 | 77 |
|
78 | 78 | // Keep minor and patch updates separate for TypeScript
|
79 | 79 | {
|
80 |
| - 'matchPackageNames': ['typescript'], |
| 80 | + 'matchDepNames': ['typescript'], |
81 | 81 | 'separateMinorPatch': true,
|
82 | 82 | },
|
83 | 83 |
|
84 | 84 | // Group TypeScript-related packages
|
85 | 85 | {
|
86 | 86 | 'groupName': 'typescript dependencies',
|
87 |
| - 'matchPackageNames': ['typescript', 'tslib'], |
| 87 | + 'matchDepNames': ['typescript', 'tslib'], |
88 | 88 | },
|
89 | 89 |
|
90 | 90 | // Limit how many times these packages get updated (They deploy each merged PR)
|
91 | 91 | {
|
92 |
| - 'matchPackageNames': ['renovate', 'quicktype-core'], |
| 92 | + 'matchDepNames': ['renovate', 'quicktype-core'], |
93 | 93 | 'schedule': ['on sunday and wednesday'],
|
94 | 94 | },
|
95 | 95 |
|
|
101 | 101 | {
|
102 | 102 | 'groupName': 'scorecard action dependencies',
|
103 | 103 | 'matchFileNames': ['.github/workflows/scorecard.yml'],
|
104 |
| - 'matchPackageNames': ['*'], |
| 104 | + 'matchDepNames': ['*'], |
105 | 105 | },
|
106 | 106 |
|
107 | 107 | // ============================================================================
|
|
118 | 118 | {
|
119 | 119 | 'enabled': false,
|
120 | 120 | 'matchDepNames': [
|
121 |
| - 'bazel', // bazelisk bazel verison |
122 |
| - ], |
123 |
| - 'matchPackageNames': [ |
124 | 121 | '@types/node',
|
125 | 122 | 'node',
|
| 123 | + 'bazel', // bazelisk bazel verison |
126 | 124 | 'npm',
|
127 | 125 | 'pnpm',
|
128 | 126 | 'rxjs',
|
|
135 | 133 | // Disable TypeScript major and minor updates
|
136 | 134 | {
|
137 | 135 | 'enabled': false,
|
138 |
| - 'matchPackageNames': ['typescript'], |
| 136 | + 'matchDepNames': ['typescript'], |
139 | 137 | 'matchUpdateTypes': ['major', 'minor'],
|
140 | 138 | },
|
141 | 139 | ],
|
|
0 commit comments