-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Merging internal commits for release/8.0 #64246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
vseanreesermsft
wants to merge
29
commits into
dotnet:release/8.0
from
vseanreesermsft:internal-merge-8.0-2025-11-04-0926
Closed
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
7ed20d1
Update dependencies from https://dev.azure.com/dnceng/internal/_git/d…
dotnet-bot 574e841
Update dependencies from https://dev.azure.com/dnceng/internal/_git/d…
dotnet-bot f137b0b
Update dependencies from https://dev.azure.com/dnceng/internal/_git/d…
dotnet-bot 066e272
Merged PR 54042: Fix Http3 Encoder/Decoder stream exit condition
BrennanConroy ce5879e
Update dependencies from https://dev.azure.com/dnceng/internal/_git/d…
dotnet-bot d771e30
Update dependencies from https://dev.azure.com/dnceng/internal/_git/d…
dotnet-bot 989f05a
Update dependencies from https://dev.azure.com/dnceng/internal/_git/d…
dotnet-bot 0a1d37a
Merged PR 53893: [internal/release/8.0] Update dependencies from dnce…
a85ca8f
Update dependencies from https://dev.azure.com/dnceng/internal/_git/d…
dotnet-bot fd362a5
Update dependencies from https://dev.azure.com/dnceng/internal/_git/d…
dotnet-bot 55df982
Merged PR 54332: merge from public
vseanreesermsft d3aab88
Update dependencies from https://dev.azure.com/dnceng/internal/_git/d…
dotnet-bot c9d28f3
Merged PR 54235: [internal/release/8.0] Update dependencies from dnce…
20e4110
Update dependencies from https://dev.azure.com/dnceng/internal/_git/d…
dotnet-bot a2d383a
Update dependencies from https://dev.azure.com/dnceng/internal/_git/d…
dotnet-bot 34b6f97
Update dependencies from https://dev.azure.com/dnceng/internal/_git/d…
dotnet-bot 86099b0
Merged PR 54378: [internal/release/8.0] Update dependencies from dnce…
0a26df2
Merged PR 54421: internal/release/8.0 - merge from public
vseanreesermsft 7fd3ca0
Update dependencies from https://dev.azure.com/dnceng/internal/_git/d…
dotnet-bot 4a27975
Merge commit '46a1d0f96df523173a9cf222a139deaf871f9dda'
d37e581
Update dependencies from https://dev.azure.com/dnceng/internal/_git/d…
dotnet-bot 26283eb
Update dependencies from https://dev.azure.com/dnceng/internal/_git/d…
dotnet-bot 37304a5
Update dependencies from https://dev.azure.com/dnceng/internal/_git/d…
dotnet-bot 875d67d
Update dependencies from https://dev.azure.com/dnceng/internal/_git/d…
dotnet-bot eaadd9b
Merge commit '487160985831f4b501a54f217219710ce96166e5'
8c4d230
Merged PR 54424: [internal/release/8.0] Update dependencies from dnce…
4ef9409
Merged PR 54671: [internal/release/8.0] Update dependencies from dnce…
8b3ade4
Merged PR 54673: Disable NuGet audit
dkurepa ee41747
Merged PR 54675: [internal/release/8.0] Update dependencies from dnce…
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The code references
Stream.Nullbut there is nousing System.IO;directive in the file. This will cause a compilation error. Addusing System.IO;to the top of the file.