Switch SDK rollForward from disable to patch for automatic servicing updates#4364
Merged
Conversation
Allow automatic roll-forward within the 10.0.3xx feature band so that servicing patches (e.g. security fixes like 10.0.301) are picked up by CI agents and developers without requiring a dedicated PR for each bump. The base version remains 10.0.300 — this is the minimum required SDK. Any installed 10.0.3xx patch will be used automatically. Updated both global.json files: - /global.json (repo root) - /tools/PackageCompatibility/global.json
Contributor
There was a problem hiding this comment.
Pull request overview
Updates SDK resolution policy to keep the repo on the .NET 10.0.3xx feature band while allowing automatic pickup of servicing patches, reducing the need for frequent SDK-bump PRs.
Changes:
- Change
global.jsonrollForwardfromdisabletopatchand update the explanatory comment. - Change
tools/PackageCompatibility/global.jsonrollForwardfromdisabletopatchto mirror root SDK selection behavior.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| global.json | Allows patch roll-forward within the .NET 10.0.3xx SDK feature band while keeping prereleases disallowed. |
| tools/PackageCompatibility/global.json | Mirrors root SDK roll-forward policy for commands run from the PackageCompatibility subtree. |
apoorvdeshmukh
approved these changes
Jun 15, 2026
cheenamalhotra
approved these changes
Jun 15, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #4364 +/- ##
==========================================
- Coverage 65.69% 63.65% -2.05%
==========================================
Files 285 280 -5
Lines 43311 66193 +22882
==========================================
+ Hits 28453 42132 +13679
- Misses 14858 24061 +9203
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
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
Switches
global.jsonSDK resolution from"rollForward": "disable"(exact pin) to"rollForward": "patch"(allow roll-forward within the 10.0.3xx feature band).Motivation
Changes
global.jsonrollForward:disable→patch, updated commenttools/PackageCompatibility/global.jsonrollForward:disable→patchNotes
10.0.300— this is the minimum required SDKdotnet buildof the main SqlClient project succeeds with SDK 10.0.300Testing