fix(efcore): pin SQLitePCLRaw.lib.e_sqlite3 3.50.3 (GHSA-2m69-gcr7-jv3q)#13
Merged
Conversation
…-gcr7-jv3q EntityFrameworkCore.Sqlite transitively pulls the bundled native SQLitePCLRaw.lib.e_sqlite3 2.1.11, which the advisory flags (vulnerable range <= 2.1.11, no managed-side patched version). 3.50.3 versions the native engine by SQLite version, is outside the vulnerable range, and has no managed deps (ABI-stable, independent of core/provider). Unblocks the zero-warning (TreatWarningsAsErrors -> NU1903) build for all FEx consumers.
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.
Why
GitHub advisory GHSA-2m69-gcr7-jv3q was updated on 2026-06-18 to flag
SQLitePCLRaw.lib.e_sqlite3 <= 2.1.11(HIGH, no managed-side patched version).Microsoft.EntityFrameworkCore.Sqlite 10.0.9pullslib.e_sqlite3 2.1.11transitively, so the zero-warning policy (TreatWarningsAsErrors-> NU1903) now breaks the build for every FEx consumer (surfaced via BudgetBuddy CI).Fix
Direct security pin of
SQLitePCLRaw.lib.e_sqlite3to 3.50.3:3.50.3 > 2.1.11) -> NuGetAudit stops reporting NU1903.SQLitePCLRaw.core/provider(2.1.x).Remove once
EntityFrameworkCore.Sqliteships a non-vulnerable bundle.Verified
Local
dotnet build FEx.EFCore -c Releaseacross all TFMs: 0 warnings, 0 errors, NU1903 gone.