fix(deps): pin Microsoft.OpenApi to patched 2.9.0 (NU1903)#1319
Merged
Conversation
Microsoft.AspNetCore.OpenApi 10.0.8 only requires Microsoft.OpenApi >= 2.0.0, so it floated in the vulnerable 2.0.0 transitively. Under NuGetAuditMode=all + TreatWarningsAsErrors that fails the build with NU1903 (GHSA-v5pm-xwqc-g5wc, HIGH, patched in 2.7.5). Stay on the 2.x line — 3.x has breaking API changes that fail the OpenAPI transformers. Pin to latest patched 2.x (2.9.0). Fixes #1318 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #1318.
Problem
Microsoft.OpenApi2.0.0 flows in transitively viaMicrosoft.AspNetCore.OpenApi10.0.8 (which only requires>= 2.0.0) and carries HIGH-severity advisory GHSA-v5pm-xwqc-g5wc. WithNuGetAuditMode=all(default on recent SDKs) +TreatWarningsAsErrors=true, this fails the build:Reproduce on clean
main:Fix
Pin
Microsoft.OpenApito2.9.0insrc/Directory.Packages.props(CentralPackageTransitivePinningEnabledis already on, so one entry pins the whole graph).IOpenApiMediaType.Examplebecomes read-only) that fail the framework's OpenAPI transformers and AspNetCore.OpenApi's source generator.Verification
dotnet build src/FSH.Starter.slnx -p:NuGetAuditMode=all→ Build succeeded (was NU1903 before).Microsoft.OpenApiis now2.9.0(no advisory).🤖 Generated with Claude Code