fix: resolve Dependency Review summary failure by patching MessagePack vulnerability#113
Merged
JerrettDavis merged 2 commits intoJun 15, 2026
Conversation
Contributor
Author
AssigneesThe following users could not be added as assignees: LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
Dependency ReviewThe following issues were found:
License Issuessrc/Core/PokManager.Application/PokManager.Application.csproj
src/Hosting/PokManager.AppHost/PokManager.AppHost.csproj
src/Hosting/PokManager.ServiceDefaults/PokManager.ServiceDefaults.csproj
src/Infrastructure/PokManager.Infrastructure/PokManager.Infrastructure.csproj
OpenSSF Scorecard
Scanned Files
|
Owner
|
@dependabot rebase |
… 3 others Bumps Microsoft.Extensions.DependencyInjection.Abstractions from 10.0.8 to 10.0.9 Bumps Microsoft.Extensions.Hosting.Abstractions from 10.0.8 to 10.0.9 Bumps Microsoft.Extensions.Http.Resilience from 10.6.0 to 10.7.0 Bumps Microsoft.Extensions.ServiceDiscovery from 10.6.0 to 10.7.0 --- updated-dependencies: - dependency-name: Microsoft.Extensions.DependencyInjection.Abstractions dependency-version: 10.0.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: extensions - dependency-name: Microsoft.Extensions.Hosting.Abstractions dependency-version: 10.0.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: extensions - dependency-name: Microsoft.Extensions.Http.Resilience dependency-version: 10.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: extensions - dependency-name: Microsoft.Extensions.ServiceDiscovery dependency-version: 10.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: extensions ... Signed-off-by: dependabot[bot] <support@github.com>
c6b7f78 to
3d41d8a
Compare
Copilot
AI
changed the title
chore: Bump Microsoft.Extensions.DependencyInjection.Abstractions and 3 others
fix: resolve Dependency Review summary failure by patching MessagePack vulnerability
Jun 12, 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.
Description
This PR fixes the failing GitHub Actions job Dependency Review / Review Summary (pull_request) by addressing the root cause in the Vulnerability Check job.
The failure was caused by a transitive vulnerable dependency:
MessagePack 2.5.192(GHSA-hv8m-jj95-wg3x).To remediate this,
PokManager.AppHostnow explicitly references a patched version:MessagePack 2.5.301.Type of Change
Checklist
Related Issues
N/A
Screenshots (if applicable)
Not applicable.
Testing
dotnet build PokManager.slndotnet test PokManager.slndotnet list package --vulnerable --include-transitiveVerified that no vulnerable packages are reported after pinning
MessagePackto2.5.301.Test Configuration:
Additional Notes
Only one file was changed:
src/Hosting/PokManager.AppHost/PokManager.AppHost.csprojA direct
PackageReferencewas added to override the vulnerable transitiveMessagePackversion.Breaking Changes
None.