[master] Update branch for release v7.7.0-preview.4 - #27828
Open
Dongbo Wang (daxian-dbw) wants to merge 4 commits into
Open
[master] Update branch for release v7.7.0-preview.4#27828Dongbo Wang (daxian-dbw) wants to merge 4 commits into
Dongbo Wang (daxian-dbw) wants to merge 4 commits into
Conversation
Dongbo Wang (daxian-dbw)
requested review from
a team and
Justin Chung (jshigetomi)
as code owners
August 11, 2026 22:40
|
Azure Pipelines: There may be pipelines that require an authorized user to comment /azp run to run. |
Patrick Meinecke (SeeminglyScience)
approved these changes
Aug 11, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Cherry-picks PR #27825 changes onto master to advance the repo’s release branch dependencies for v7.7.0-preview.4, primarily by updating the pinned .NET SDK build version and synchronizing related dependency metadata/manifests.
Changes:
- Update pinned .NET SDK from
11.0.100-preview.6.26359.118to11.0.100-preview.7.26381.103(and corresponding metadata/changelog entry). - Bump several NuGet package references in project files to the
11.0.0-preview.7.26381.103wave (plus Perfolizer0.7.5). - Refresh CG manifests (add
$schema, update recorded package versions).
Reviewed changes
Copilot reviewed 14 out of 14 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| tools/cgmanifest/tpn/cgmanifest.json | Adds schema and updates recorded component versions for TPN manifest. |
| tools/cgmanifest/main/cgmanifest.json | Adds schema and updates recorded component versions for main manifest. |
| test/tools/WebListener/WebListener.csproj | Bumps ASP.NET Core NewtonsoftJson package to preview.7. |
| test/perf/dotnet-tools/ResultsComparer/ResultsComparer.csproj | Bumps Perfolizer to 0.7.5. |
| src/System.Management.Automation/System.Management.Automation.csproj | Updates corefx-derived package references to preview.7. |
| src/Microsoft.WSMan.Management/Microsoft.WSMan.Management.csproj | Updates ServiceController package to preview.7. |
| src/Microsoft.PowerShell.SDK/Microsoft.PowerShell.SDK.csproj | Updates forced dependency versions to preview.7. |
| src/Microsoft.PowerShell.CoreCLR.Eventing/Microsoft.PowerShell.CoreCLR.Eventing.csproj | Updates EventLog package to preview.7. |
| src/Microsoft.PowerShell.Commands.Utility/Microsoft.PowerShell.Commands.Utility.csproj | Updates System.Drawing.Common to preview.7. |
| src/Microsoft.PowerShell.Commands.Management/Microsoft.PowerShell.Commands.Management.csproj | Updates ServiceController package to preview.7. |
| src/Microsoft.PowerShell.Commands.Diagnostics/Microsoft.PowerShell.Commands.Diagnostics.csproj | Updates PerformanceCounter package to preview.7. |
| global.json | Pins build SDK to 11.0.100-preview.7.26381.103. |
| DotnetRuntimeMetadata.json | Updates sdkImageVersion to match the new pinned SDK. |
| CHANGELOG/v7.7/dependencychanges.json | Records the .NET SDK update in the dependency change log. |
💡 Add a code-review agent skill for context-aware, tailored reviews. Learn more in the docs.
|
Azure Pipelines: There may be pipelines that require an authorized user to comment /azp run to run. |
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.
Cherry-picked the commits from #27825 because the bot account has not agreed to the Contributor License Agreement, and thus the merge of that PR is blocked.
About the test change
The test failed due to an intentional bug fix in .NET that changed the rounding for double-to-decimal conversion: dotnet/runtime#130566. This is the minimal repro of the issue:
On v7.6.4, the result is:
4567.123456789Withe .NET 11 preview7, the result is:
4567.1234567889996469602920115The fix is to avoid double-to-decimal conversion, but use the decimal literal
ddirectly.