.NET 10 migration and SQLite test dependency hardening - #1
Merged
Conversation
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.
Summary
This draft PR publishes the current
chore/net10-migrationbranch.It includes the accumulated work from the branch lineage:
feature-modernizacaocontent, becausechore/net10-migrationwas created from that branchSQLitePCLRaw.lib.e_sqlite3SQLite hardening
The latest commit pins
SQLitePCLRaw.bundle_e_sqlite3to2.1.12intest/Dapper.FluentMap.TestswithPrivateAssets="all", so the test graph resolvesSQLitePCLRaw.lib.e_sqlite3 2.1.12instead of vulnerable2.1.11.The affected chain was:
Advisory addressed:
GHSA-2m69-gcr7-jv3q/CVE-2025-6965.Validation
Validated locally before pushing:
dotnet restoredotnet package list --project test/Dapper.FluentMap.Tests/Dapper.FluentMap.Tests.csproj --include-transitivedotnet package list --project test/Dapper.FluentMap.Tests/Dapper.FluentMap.Tests.csproj --include-transitive --vulnerabledotnet package list --project test/Dapper.FluentMap.Dommel.Tests/Dapper.FluentMap.Dommel.Tests.csproj --include-transitive --vulnerabledotnet package list --project src/Dapper.FluentMap/Dapper.FluentMap.csproj --include-transitive --vulnerabledotnet package list --project src/Dapper.FluentMap.Dommel/Dapper.FluentMap.Dommel.csproj --include-transitive --vulnerabledotnet build --configuration Releasedotnet test test/Dapper.FluentMap.Tests/Dapper.FluentMap.Tests.csproj --configuration Release --no-build --filter FullyQualifiedName~DapperIntegrationTestsdotnet test test/Dapper.FluentMap.Tests/Dapper.FluentMap.Tests.csproj --configuration Release --no-builddotnet test --configuration Release --no-builddotnet pack src/Dapper.FluentMap/Dapper.FluentMap.csproj --configuration Release --no-buildResults:
Dapper.FluentMap.Tests: 45/45 passedsrcprojectsMicrosoft.Data.SqliteorSQLitePCLRaw.*dependency inDapper.FluentMap.2.0.0.nupkgNotes
This is intentionally opened as a draft because the branch was created from
feature-modernizacao, not directly frommaster. Reviewers should confirm whether that branch lineage is intended for this PR.