Bump Analyzers package version to 1.22.0 stable release#661
Merged
YunchuWang merged 3 commits intomainfrom Mar 11, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Durable Task Analyzers NuGet package metadata to ship a stable 2.0.0 release, and reflects that release in the analyzer release tracking and repo changelog.
Changes:
- Bump
src/Analyzers/Analyzers.csprojpackageVersionPrefixto2.0.0(stable, no suffix). - Add a
Release 2.0.0section toAnalyzerReleases.Shipped.md. - Add an
Analyzers v2.0.0entry toCHANGELOG.md.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| src/Analyzers/Analyzers.csproj | Updates analyzer package version metadata to 2.0.0. |
| src/Analyzers/AnalyzerReleases.Shipped.md | Adds a shipped release section for 2.0.0 (version bump only). |
| CHANGELOG.md | Records the analyzers 2.0.0 release in the repo changelog. |
7210079 to
959aad8
Compare
959aad8 to
ab3fce6
Compare
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
kaibocai
approved these changes
Mar 11, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 4 out of 4 changed files in this pull request and generated no new comments.
You can also share your feedback on Copilot code review. Take the survey.
This was referenced Mar 18, 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.
This pull request updates the Durable Task .NET Analyzers package to the stable 1.22.0 release and introduces a new analyzer rule to warn about unbounded orchestration loops using
ContinueAsNew. The most important changes are grouped below:Analyzer Package Versioning:
Analyzerspackage version from0.3.0to1.22.0in both theCHANGELOG.mdand theAnalyzers.csprojfile, marking the release as stable. [1] [2]New Analyzer Rule:
ContinueAsNewOrchestrationAnalyzer) that detects and warns whenContinueAsNewis used in unbounded orchestration loops, to help prevent potential issues with infinite or uncontrolled orchestration executions. This rule is now tracked inAnalyzerReleases.Shipped.md. [1] [2]