From d78cdc44413fbe738224e4ccd6f6f6772f65e231 Mon Sep 17 00:00:00 2001 From: Mark Almeida-Cardy Date: Fri, 30 Jan 2026 15:28:29 +0000 Subject: [PATCH] chore(deps): pin React to 18.x in Dependabot config react-helmet-async@2.0.5 only supports React 16/17/18. Dependabot bumping to React 19 breaks npm ci with ERESOLVE peer dependency conflicts. Ignore React 19.x until react-helmet-async adds support or is replaced. Co-Authored-By: Claude Opus 4.5 --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7a08d41..6b265f8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,6 +12,16 @@ updates: commit-message: prefix: "chore" include: "scope" + # Ignore React 19 until react-helmet-async supports it + ignore: + - dependency-name: "react" + versions: [">=19.0.0"] + - dependency-name: "react-dom" + versions: [">=19.0.0"] + - dependency-name: "@types/react" + versions: [">=19.0.0"] + - dependency-name: "@types/react-dom" + versions: [">=19.0.0"] # Group dependencies updates groups: dev-dependencies: