From 4be63b0c9f940bae69095a97cb2b34416e51b305 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Fri, 6 Jun 2025 17:05:30 -0700 Subject: [PATCH] Renovate: This is Express 4 renovate.json5 changes never need a changeset --- .changeset/config.json | 7 +++++-- renovate.json5 | 5 +++++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.changeset/config.json b/.changeset/config.json index a7e54f7..9cc0970 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -1,10 +1,13 @@ { - "$schema": "https://unpkg.com/@changesets/config@1.6.3/schema.json", + "$schema": "https://unpkg.com/@changesets/config@3.1.1/schema.json", "changelog": [ "@changesets/changelog-github", { "repo": "apollo-server-integrations/apollo-server-integration-express4" } ], "commit": false, "access": "public", - "baseBranch": "main" + "baseBranch": "main", + "changedFilePatterns": [ + "**", "!renovate.json5" + ] } diff --git a/renovate.json5 b/renovate.json5 index f138136..8224f76 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -16,5 +16,10 @@ matchPackageNames: ["@types/node"], allowedVersions: "20.x", }, + // This is the Express 4 integration. We have a whole other package for Express 5. + { + matchPackageNames: ["express", "@types/express", "@types/express-serve-static-core"], + allowedVersions: "4.x", + }, ], }