Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## v1.22.0
- Changing the default dedupe statuses behavior by sophiatev ([#622](https://github.com/microsoft/durabletask-dotnet/pull/622))
- Bump Analyzers package version to 1.22.0 stable release (from 0.3.0)
- Add DURABLE0011: ContinueAsNew warning for unbounded orchestration loops ([#660](https://github.com/microsoft/durabletask-dotnet/pull/660))

## 1.21.0
- Introduce WorkItemFilters into worker flow by halspang ([#616](https://github.com/microsoft/durabletask-dotnet/pull/616))
Expand Down
8 changes: 8 additions & 0 deletions src/Analyzers/AnalyzerReleases.Shipped.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
; Shipped analyzer releases
; https://github.com/dotnet/roslyn/blob/main/src/RoslynAnalyzers/Microsoft.CodeAnalysis.Analyzers/ReleaseTrackingAnalyzers.Help.md

## Release 1.22.0

### New Rules

Rule ID | Category | Severity | Notes
--------|----------|----------|-------
Comment thread
YunchuWang marked this conversation as resolved.
DURABLE0011 | Orchestration | Warning | **ContinueAsNewOrchestrationAnalyzer**: Warns when ContinueAsNew is used in unbounded orchestration loops.
Comment thread
YunchuWang marked this conversation as resolved.
Outdated

## Release 0.3.0

### New Rules
Expand Down
1 change: 0 additions & 1 deletion src/Analyzers/AnalyzerReleases.Unshipped.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@

Rule ID | Category | Severity | Notes
--------|----------|----------|-------
DURABLE0011 | Orchestration | Warning | ContinueAsNewOrchestrationAnalyzer
2 changes: 0 additions & 2 deletions src/Analyzers/Analyzers.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>0.3.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<PackageDescription>.NET Analyzers for the Durable Task SDK.</PackageDescription>
<NeutralLanguage>en</NeutralLanguage>
<IncludeBuildOutput>false</IncludeBuildOutput> <!-- Do not include the analyzer as a lib dependency -->
Expand Down
Loading