Bump the tests group with 4 updates#330
Open
dependabot[bot] wants to merge 1 commit into
Open
Conversation
Bumps CancelCop.Analyzer from 1.27.173 to 1.27.224 Bumps Microsoft.Extensions.Http.Polly from 9.0.0 to 9.0.18 Bumps microsoft.web.librarymanager.cli from 3.0.71 to 3.0.114 Bumps System.ServiceModel.Syndication from 9.0.0 to 9.0.18 --- updated-dependencies: - dependency-name: CancelCop.Analyzer dependency-version: 1.27.224 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: tests - dependency-name: Microsoft.Extensions.Http.Polly dependency-version: 9.0.18 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: tests - dependency-name: microsoft.web.librarymanager.cli dependency-version: 3.0.114 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: tests - dependency-name: System.ServiceModel.Syndication dependency-version: 9.0.18 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: tests ... Signed-off-by: dependabot[bot] <support@github.com>
This was referenced Jul 22, 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.
Updated CancelCop.Analyzer from 1.27.173 to 1.27.224.
Release notes
Sourced from CancelCop.Analyzer's releases.
1.27.224
Changed
Validation
1.27.223
Fixed
OperationCanceledException, a derived cancellation type, or a possible interface-implementing cancellation subtype are diagnosed, while disjoint and same-named custom types stay quiet.Verification
1.27.222
Fixed
CancellationTokenSource.CancelAsync()before reportingCancel().Verification
1.27.221
Fixed
[AcceptVerbs(...)]and offers the existing add-token fix.Microsoft.AspNetCore.Mvcremain excluded.Verification
1.27.220
CC005C: positional unreduced EndpointRouteBuilderExtensions Map calls now analyze and fix lambda and method-group handlers with exact framework and route-builder gates. Verified by 722 tests, Release build, package inspection, PR CI, and master CI.
1.27.219
CC015: statically imported Task.WaitAll and Task.WaitAny calls are now diagnosed in async code while zero-timeout, shadowing, and sync guards remain quiet. Verified by 717 tests, Release build, package inspection, PR CI, and master CI.
1.27.218
CC020/CC021: null-conditional reduced extension calls now count as context handoffs while ordinary instance calls remain diagnostic. Verified by 712 tests, Release build, package inspection, PR CI, and master CI.
1.27.217
CC020/CC021: chained null-conditional CancellationToken and RequestAborted reads now count as observation while nested-object members remain excluded. Verified by 709 tests, Release build, package inspection, PR CI, and master CI.
1.27.216
Fixed CC020/CC021 false positives: direct null-conditional context token reads now count as runtime observation, while similarly named downstream members do not.
1.27.215
Fixed a CC022 false negative: null-conditional CancellationTokenSource.Cancel() calls are now diagnosed in async code. No automatic fix is offered because preserving null semantics requires a control-flow rewrite.
1.27.214
Fixed a CC002 false negative by classifying explicit arguments by their parameter-converted type, so boxed token expressions no longer masquerade as propagation while contextual token defaults remain recognized.
1.27.213
Fixed a CC019 false negative: a conditional rethrow restricted to an unrelated exception type no longer masks cancellation swallowing, while OperationCanceledException guards remain recognized.
1.27.212
CC009 now ignores cancellation checks deferred inside nested lambdas or local functions when evaluating an enclosing loop.
1.27.211
CC016 and CC017 now diagnose cancellation-token parameters only passed as out, while ref, in, and ordinary forwarding remain observations.
1.27.210
CC012 now diagnoses and fixes CancellationToken.None imported through using static while keeping custom None properties quiet.
1.27.209
CC016 and CC017 now diagnose cancellation-token parameters that are only overwritten before use, while preserving right-hand-side reads as real observation.
1.27.208
Fixed
CancellationToken.None, typeddefault, and default-literal arguments when a token is available.1.27.207
Fixed
IDisposable.Dispose()invocations through an exact built-in interface cast.1.27.206
Fixed
using (resource).1.27.205
Fixed
1.27.204
Fixed
TimeSpandurations so scheduler-yield semantics are not rewritten to synchronously completingTask.Delaycalls.TimeSpansleeps remain diagnostic.1.27.203
Fixed
1.27.202
Fixed
using staticimports.1.27.201
Fixed
Thread.Sleep(0).1.27.200
Fixed
1.27.199
Fixed
1.27.198
What's Changed
Full Changelog: georgepwall1991/CancelCop.Analyzer@v1.27.197...v1.27.198
1.27.197
What's Changed
Full Changelog: georgepwall1991/CancelCop.Analyzer@v1.27.196...v1.27.197
1.27.196
What's Changed
Full Changelog: georgepwall1991/CancelCop.Analyzer@v1.27.195...v1.27.196
1.27.195
What's Changed
Full Changelog: georgepwall1991/CancelCop.Analyzer@v1.27.194...v1.27.195
1.27.194
What's Changed
Full Changelog: georgepwall1991/CancelCop.Analyzer@v1.27.193...v1.27.194
1.27.193
What's Changed
Full Changelog: georgepwall1991/CancelCop.Analyzer@v1.27.192...v1.27.193
1.27.192
What's Changed
Full Changelog: georgepwall1991/CancelCop.Analyzer@v1.27.191...v1.27.192
1.27.191
CC026 now excludes exact zero-TimeSpan SemaphoreSlim.Wait probes.
1.27.190
CC015 now treats zero-timeout Task.WaitAll and Task.WaitAny calls as immediate probes.
1.27.189
CC015 now excludes exact zero-TimeSpan Task.Wait probes while preserving potentially blocking timeout diagnostics.
1.27.188
CC015 no longer diagnoses Task.Wait(0), a guaranteed immediate completion probe.
1.27.187
CC022 and CC025 now recognize async top-level programs while preserving purely synchronous top-level behavior.
1.27.186
CC024 now diagnoses async lambdas converted to custom void-returning delegates while preserving the sanctioned event-handler delegate shape.
1.27.185
What's Changed
Full Changelog: georgepwall1991/CancelCop.Analyzer@v1.27.184...v1.27.185
1.27.184
What's Changed
Full Changelog: georgepwall1991/CancelCop.Analyzer@v1.27.183...v1.27.184
1.27.183
What's Changed
Full Changelog: georgepwall1991/CancelCop.Analyzer@v1.27.182...v1.27.183
1.27.182
What's Changed
Full Changelog: georgepwall1991/CancelCop.Analyzer@v1.27.181...v1.27.182
1.27.181
What's Changed
Full Changelog: georgepwall1991/CancelCop.Analyzer@v1.27.180...v1.27.181
1.27.180
What's Changed
Full Changelog: georgepwall1991/CancelCop.Analyzer@v1.27.179...v1.27.180
1.27.179
What's Changed
Full Changelog: georgepwall1991/CancelCop.Analyzer@v1.27.178...v1.27.179
1.27.178
What's Changed
Full Changelog: georgepwall1991/CancelCop.Analyzer@v1.27.177...v1.27.178
1.27.177
What's Changed
Full Changelog: georgepwall1991/CancelCop.Analyzer@v1.27.176...v1.27.177
1.27.176
What's Changed
Full Changelog: georgepwall1991/CancelCop.Analyzer@v1.27.175...v1.27.176
1.27.175
What's Changed
Full Changelog: georgepwall1991/CancelCop.Analyzer@v1.27.174...v1.27.175
1.27.174
What's Changed
Full Changelog: georgepwall1991/CancelCop.Analyzer@v1.27.173...v1.27.174
Commits viewable in compare view.
Updated Microsoft.Extensions.Http.Polly from 9.0.0 to 9.0.18.
Release notes
Sourced from Microsoft.Extensions.Http.Polly's releases.
9.0.18
Release
What's Changed
d72f9c8toa721f1bby @dependabot[bot] in [release/9.0] (deps): Bump src/submodules/googletest fromd72f9c8toa721f1bdotnet/aspnetcore#66974a721f1bto7140cd4by @dependabot[bot] in [release/9.0] (deps): Bump src/submodules/googletest froma721f1bto7140cd4dotnet/aspnetcore#67217Full Changelog: dotnet/aspnetcore@v9.0.17...v9.0.18
9.0.17
Release
What's Changed
Full Changelog: dotnet/aspnetcore@v9.0.16...v9.0.17
9.0.16
Release
What's Changed
73a63eatod72f9c8by @dependabot[bot] in [release/9.0] (deps): Bump src/submodules/googletest from73a63eatod72f9c8dotnet/aspnetcore#66088Full Changelog: dotnet/aspnetcore@v9.0.15...v9.0.16
9.0.15
Release
What's Changed
56efe39to73a63eaby @dependabot[bot] in [release/9.0] (deps): Bump src/submodules/googletest from56efe39to73a63eadotnet/aspnetcore#65587Full Changelog: dotnet/aspnetcore@v9.0.14...v9.0.15
9.0.14
Release
What's Changed
9156d4cto56efe39by @dependabot[bot] in [release/9.0] (deps): Bump src/submodules/googletest from9156d4cto56efe39dotnet/aspnetcore#65290Full Changelog: dotnet/aspnetcore@v9.0.13...v9.0.14
9.0.13
Release
What's Changed
1b96fa1to9156d4cby @dependabot[bot] in [release/9.0] (deps): Bump src/submodules/googletest from1b96fa1to9156d4cdotnet/aspnetcore#64908Full Changelog: dotnet/aspnetcore@v9.0.12...v9.0.13)
9.0.12
Release
What's Changed
Microsoft.Buildversions to 17.8.43 by @MackinnonBuck in UpdateMicrosoft.Buildversions to 17.8.43 dotnet/aspnetcore#642779706f75to6ec14dfby @dependabot[bot] in [release/9.0] (deps): Bump src/submodules/googletest from9706f75to6ec14dfdotnet/aspnetcore#642306ec14dfto1b96fa1by @dependabot[bot] in [release/9.0] (deps): Bump src/submodules/googletest from6ec14dfto1b96fa1dotnet/aspnetcore#64580Full Changelog: dotnet/aspnetcore@v9.0.11...v9.0.12
9.0.11
Release
What's Changed
eb2d85eto9706f75by @dependabot[bot] in [release/9.0] (deps): Bump src/submodules/googletest fromeb2d85eto9706f75dotnet/aspnetcore#63894Full Changelog: dotnet/aspnetcore@v9.0.10...v9.0.11
9.0.10
Release
What's Changed
373af2etoeb2d85eby @dependabot[bot] in [release/9.0] (deps): Bump src/submodules/googletest from373af2etoeb2d85edotnet/aspnetcore#63501RadioButtonGetsResetAfterSubmittingEnhancedFormby @ilonatommy in UnquarantineRadioButtonGetsResetAfterSubmittingEnhancedFormdotnet/aspnetcore#63556Full Changelog: dotnet/aspnetcore@v9.0.9...v9.0.10
9.0.9
Release
What's Changed
c67de11to373af2eby @dependabot[bot] in [release/9.0] (deps): Bump src/submodules/googletest fromc67de11to373af2edotnet/aspnetcore#63035Full Changelog: dotnet/aspnetcore@v9.0.8...v9.0.9
9.0.7
Release
What's Changed
04ee1b4toe9092b1by @dependabot in [release/9.0] (deps): Bump src/submodules/googletest from04ee1b4toe9092b1dotnet/aspnetcore#62199Full Changelog: dotnet/aspnetcore@v9.0.6...v9.0.7
9.0.6
Bug Fixes
The Forwarded Headers Middleware now ignores
X-Forwarded-Headerssent from unknown proxies. This change improves security by ensuring that only trusted proxies can influence forwarded header values, preventing potential spoofing or misrouting issues.Dependency Updates
52204f7to04ee1b4(#61762)Updates the GoogleTest submodule to a newer commit, bringing in the latest improvements and bug fixes from the upstream project.
Updates internal build and infrastructure dependencies from the dotnet/arcade repository, ensuring compatibility and access to the latest build tools.
Refreshes dependencies from the dotnet/extensions repository, incorporating the latest features and fixes from the extensions libraries.
Further updates dependencies from dotnet/extensions, ensuring the project benefits from recent improvements and bug fixes.
Additional updates to build and infrastructure dependencies from dotnet/arcade, maintaining up-to-date tooling and build processes.
Miscellaneous
Updates the project version and branding to 9.0.6, reflecting the new release and ensuring version consistency across the codebase.
Incorporates various internal commits into the release/9.0 branch, ensuring that all relevant changes are included in this release.
This summary is generated and may contain inaccuracies. For complete details, please review the linked pull requests.
Full Changelog: v9.0.5...v9.0.6
9.0.5
Release
What's Changed
24a9e94to52204f7by @dependabot in [release/9.0] (deps): Bump src/submodules/googletest from24a9e94to52204f7dotnet/aspnetcore#61261Full Changelog: dotnet/aspnetcore@v9.0.4...v9.0.5
9.0.4
Release
What's Changed
e235eb3to24a9e94by @dependabot in [release/9.0] (deps): Bump src/submodules/googletest frome235eb3to24a9e94dotnet/aspnetcore#60678Full Changelog: dotnet/aspnetcore@v9.0.3...v9.0.4
9.0.3
Release
What's Changed
HtmlAttributePropertyHelperto correctly follow theMetadataUpdateHandlerAttributecontract by @github-actions in [release/9.0] UpdateHtmlAttributePropertyHelperto correctly follow theMetadataUpdateHandlerAttributecontract dotnet/aspnetcore#599087d76a23toe235eb3by @dependabot in [release/9.0] (deps): Bump src/submodules/googletest from7d76a23toe235eb3dotnet/aspnetcore#60151Full Changelog: dotnet/aspnetcore@v9.0.2...v9.0.3
9.0.2
Release
What's Changed
d144031to7d76a23by @dependabot in [release/9.0] (deps): Bump src/submodules/googletest fromd144031to7d76a23dotnet/aspnetcore#59679index.htmlduring development by @MackinnonBuck in [release/9.0] [Blazor WASM standalone] Avoid cachingindex.htmlduring development dotnet/aspnetcore#59348Full Changelog: dotnet/aspnetcore@v9.0.1...v9.0.2
9.0.1
Release
What's Changed
6dae7ebtod144031by @dependabot in [release/9.0] (deps): Bump src/submodules/googletest from6dae7ebtod144031dotnet/aspnetcore#59032Full Changelog: dotnet/aspnetcore@v9.0.0...v9.0.1
Commits viewable in compare view.
Updated microsoft.web.librarymanager.cli from 3.0.71 to 3.0.114.
Release notes
Sourced from microsoft.web.librarymanager.cli's releases.
No release notes found for this version range.
Commits viewable in compare view.
Updated System.ServiceModel.Syndication from 9.0.0 to 9.0.18.
Release notes
Sourced from System.ServiceModel.Syndication's releases.
9.0.18
Release
What's Changed
Full Changelog: dotnet/runtime@v9.0.17...v9.0.18
9.0.17
Release
What's Changed
Full Changelog: dotnet/runtime@v9.0.16...v9.0.17
9.0.16
Release
9.0.15
Release
9.0.14
Release
9.0.13
Release
What's Changed
Full Changelog: dotnet/runtime@v9.0.12...v9.0.13
9.0.12
Release
9.0.11
Release
What's Changed
UnsafeAccessor- ambiguous name and signature match by @AaronRobinsonMSFT in [release/9.0-staging]UnsafeAccessor- ambiguous name and signature match dotnet/runtime#120011Full Changelog: dotnet/runtime@v9.0.10...v9.0.11
9.0.10
Release
What's Changed
Full Changelog: dotnet/runtime@v9.0.9...v9.0.10
9.0.9
Release
What's Changed
Description has been truncated