diff --git a/renovate.json5 b/renovate.json5 index ab024796219..1398be3f65d 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -135,9 +135,14 @@ // change in https://github.com/uuidjs/uuid/pull/750 and then later started // using the new-in-v16 `??=` operator.) { - matchPackageNames: ["uuid"], + matchPackageNames: ["uuid", "@types/uuid"], allowedVersions: "9.x", }, + // negotiator@1 drops support for node v14. We can take this when we drop node v14 support. + { + matchPackageNames: ["negotiator"], + allowedVersions: "0.x", + }, // We specifically provide a first-party integration (`expressMiddleware` // imported from `@apollo/server/express4`) for Express v4 because it is the // most common web framework. (Additionally, as an internal implementation @@ -153,6 +158,6 @@ { matchPackageNames: ["express", "@types/express", "@types/express-serve-static-core"], allowedVersions: "4.x", - } + }, ] }