|
12 | 12 | // Disable circleci manager; see apollographql/federation's renovate file for details.
|
13 | 13 | "enabledManagers": ["npm"],
|
14 | 14 | "dependencyDashboard": true,
|
| 15 | + "baseBranches": [ |
| 16 | + "master", |
| 17 | + "version-3", |
| 18 | + ], |
| 19 | + "postUpdateOptions": ["npmDedupe"], |
15 | 20 | "packageRules": [
|
16 | 21 | // Bunch up all non-major dependencies into a single PR. In the common case
|
17 | 22 | // where the upgrades apply cleanly, this causes less noise and is resolved faster
|
|
51 | 56 | },
|
52 | 57 | {
|
53 | 58 | "matchPackageNames": ["graphql"],
|
| 59 | + "matchBaseBranches": ["master"], |
54 | 60 | "allowedVersions": "~14.2.1"
|
55 | 61 | },
|
56 | 62 | {
|
57 | 63 | "matchPackageNames": ["@types/node"],
|
| 64 | + "matchBaseBranches": ["master"], |
58 | 65 | "allowedVersions": "8.x"
|
| 66 | + }, |
| 67 | + { |
| 68 | + "matchPackageNames": ["@types/node"], |
| 69 | + "matchBaseBranches": ["version-3"], |
| 70 | + "allowedVersions": "14.x" |
59 | 71 | },
|
60 | 72 | {
|
61 | 73 | "matchPackageNames": ["vscode-uri"],
|
|
78 | 90 | },
|
79 | 91 | {
|
80 | 92 | "matchPackageNames": ["@apollo/federation"],
|
| 93 | + "matchBaseBranches": ["master"], |
81 | 94 | "allowedVersions": "0.27.0"
|
82 | 95 | },
|
83 |
| - { |
84 |
| - "matchPaths": [ |
85 |
| - "docs/package.json" |
86 |
| - ], |
87 |
| - "extends": [ |
88 |
| - "apollo-docs" |
89 |
| - ], |
90 |
| - // "Past" major version branches, preserved as |
91 |
| - // "version-[0-9]" branches, should be added here! |
92 |
| - // See Apollo Server or Apollo Client repos for examples. |
93 |
| - "baseBranches": [ |
94 |
| - "main" |
95 |
| - ] |
96 |
| - }, |
97 | 96 | ],
|
98 | 97 | }
|
0 commit comments