chore: bump Aspire 13.3.1 → 13.4.6 to clear MessagePack advisories - #579
Merged
Conversation
Every restore emitted eleven NU1902/NU1903 warnings for MessagePack 2.5.192, reached transitively through Aspire.Hosting -> KubernetesClient. One is high severity (GHSA-vh6j-jc39-fggf, GHSA-hv8m-jj95-wg3x); the rest are moderate. All eleven are patched in 2.5.301 on the 2.x line. Fixed at the source rather than by pinning. Aspire 13.4.6 brings KubernetesClient 19.0.2, which depends on MessagePack 2.5.302 -- already past the patched floor, so no direct MessagePack reference is needed. The two alternatives were both worse. A direct PackageReference would add a dependency JasperFx.Aspire does not use to the shipped package's dependency graph. CentralPackageTransitivePinningEnabled would pin every transitive that has a PackageVersion entry, and this repo pins Microsoft.Extensions.* at 9.0.0/10.0.0 while Aspire pulls newer ones (Microsoft.Extensions.AI.Abstractions 10.3.0), so it risked downgrading Aspire's own dependencies. Restore is now free of NU1902/NU1903 across the solution. All 51 Aspire tests pass; full suite green. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This was referenced Jul 29, 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.
Every restore emitted eleven
NU1902/NU1903warnings forMessagePack 2.5.192, reached transitively viaAspire.Hosting→KubernetesClient. One is high severity (GHSA-vh6j-jc39-fggf, GHSA-hv8m-jj95-wg3x); the rest are moderate. All eleven are patched in 2.5.301 on the 2.x line.Fixed at the source, not pinned
Aspire 13.4.6 brings
KubernetesClient 19.0.2, which depends onMessagePack 2.5.302— already past the patched floor. No directMessagePackreference needed.Why not the other two options
PackageReferencewould add a dependencyJasperFx.Aspiredoesn't use to the shipped package's dependency graph, purely to force a floor.CentralPackageTransitivePinningEnabledpins every transitive that has aPackageVersionentry. This repo pinsMicrosoft.Extensions.*at 9.0.0/10.0.0 while Aspire pulls newer ones (Microsoft.Extensions.AI.Abstractions 10.3.0), so it risked silently downgrading Aspire's own dependencies.Verification
Restore is free of
NU1902/NU1903across the whole solution. All 51 Aspire tests pass; full./build.sh testgreen.🤖 Generated with Claude Code