Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/FEx.EFCore/FEx.EFCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
<PackageReference Include="Microsoft.Data.SqlClient" Version="7.0.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="$(EFCoreVersion)" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="$(EFCoreVersion)" />
<!-- Security pin (GHSA-2m69-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 (3.50.3),
is outside the vulnerable range, and carries no managed dependencies (ABI-stable, independent of
SQLitePCLRaw.core/provider). Remove once EntityFrameworkCore.Sqlite ships a non-vulnerable bundle. -->
<PackageReference Include="SQLitePCLRaw.lib.e_sqlite3" Version="3.50.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="$(EFCoreVersion)" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="$(EFCoreVersion)">
<PrivateAssets>all</PrivateAssets>
Expand Down
Loading