From be0e06f8cdc4e2371f812c97f7258d9ff0a086c2 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 25 Aug 2026 03:17:29 +0000 Subject: [PATCH] build(deps): ignore Microsoft.OpenApi majors on the frontend entry too Ignore rules are per-update-entry, so the rule added for main did not cover the frontend nuget entry - and Dependabot promptly re-proposed the same incompatible bump there as #125. AspNetCore.OpenApi 10.0.x requires Microsoft.OpenApi >= 2.7.5 && < 3.0.0, so 3.x trips NU1608, which Directory.Build.props promotes to an error. The PR cannot pass and cannot be merged. Co-Authored-By: Claude Claude-Session: https://claude.ai/code/session_01AWkVh7cyAz1gWapBH1CY8n --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 11d1a44..8664057 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -73,3 +73,10 @@ updates: groups: nuget-minor-patch: update-types: ["minor", "patch"] + ignore: + # Same constraint as the main entry above, and it needs restating here: + # ignore rules are per-entry, so main's did not cover this branch and + # Microsoft.OpenApi 3.x was proposed again as #125. AspNetCore.OpenApi + # 10.0.x requires >= 2.7.5 && < 3.0.0, so the restore trips NU1608. + - dependency-name: "Microsoft.OpenApi" + update-types: ["version-update:semver-major"]