chore: pin floating NuGet package versions - #5522
Open
jamescrosswell wants to merge 1 commit into
Open
Conversation
Newtonsoft.Json used a `13.*` wildcard and FluentAssertions a `[7.2.2,8.0.0)` range. Both are now pinned to the versions they already resolved to (13.0.4 and 7.2.2 respectively), so the dependency graph is explicit without changing what gets restored. The FluentAssertions range also acted as a guard against Dependabot bumping into the license-changed 8.x, so that guard moves to an explicit `ignore` entry for semver-major updates in dependabot.yml. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #5522 +/- ##
=======================================
Coverage 74.72% 74.72%
=======================================
Files 513 513
Lines 18826 18826
Branches 3680 3680
=======================================
+ Hits 14067 14068 +1
+ Misses 3879 3878 -1
Partials 880 880 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
jamescrosswell
marked this pull request as ready for review
August 31, 2026 04:09
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
Closes #5276
Rather than introducing
packages.lock.json, we've pinned the only two non-specific NuGet version declarations in the repo so the dependency graph is explicit. Both are pinned to the versions they already resolved to, verified by comparingproject.assets.jsonbefore and after — restore output is unchanged.