Fix MEVD build failures from vulnerable transitive dependencies - #17
Merged
adamsitnik merged 2 commits intoJul 1, 2026
Merged
Conversation
Pin safe versions of vulnerable transitive dependencies: - SQLitePCLRaw.bundle_e_sqlite3 3.0.3 (fixes GHSA-2m69-gcr7-jv3q) - SharpCompress 0.49.1 (fixes GHSA-6c8g-7p36-r338) - Snappier 1.3.1 (fixes GHSA-pggp-6c3x-2xmx) Enable CentralPackageTransitivePinningEnabled to enforce transitive dependency version pinning via Directory.Packages.props.
…gEnabled Revert CentralPackageTransitivePinningEnabled and add direct PackageReference entries in the source projects so shipped packages reference safe versions directly, without requiring consumers to enable transitive pinning. - SqliteVec.csproj: add SQLitePCLRaw.bundle_e_sqlite3 - CosmosMongoDB.csproj: add SharpCompress, Snappier
This was referenced Jul 2, 2026
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.
Build fails with NU1902/NU1903 errors due to known vulnerabilities in transitive dependencies pulled by
sqlite-vecandMongoDB.Driver.Changes
PackageReferenceentries in source projects to ensure shipped packages reference safe versions (so consumers don't need additional configuration):SqliteVec.csproj: addedSQLitePCLRaw.bundle_e_sqlite3CosmosMongoDB.csproj: addedSharpCompressandSnappierDirectory.Packages.props:SQLitePCLRaw.bundle_e_sqlite33.0.3 (fixes GHSA-2m69-gcr7-jv3q)SharpCompress0.49.1 (fixes GHSA-6c8g-7p36-r338)Snappier1.3.1 (fixes GHSA-pggp-6c3x-2xmx)Note:
SQLitePCLRaw.lib.e_sqlite32.1.11 is deprecated with no patched release;SQLitePCLRaw.bundle_e_sqlite33.0.3 supersedes it with a fixed SQLite engine (≥3.50.2).