Skip to content

Commit 4512de6

Browse files
authored
Merge pull request #6444 from mavasani/PostRelease_3_3_4
Post release changes after 3.3.4 analyzer package release
2 parents b08c60a + ceb7bdd commit 4512de6

17 files changed

+72
-57
lines changed

VERSIONING.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ Sr. No. | Release |
2121
1 | [5.0.0](https://github.com/dotnet/roslyn-analyzers/releases/tag/5.0.0) |
2222
2 | [5.0.1](https://github.com/dotnet/roslyn-analyzers/releases/tag/5.0.1) |
2323
3 | [5.0.3](https://github.com/dotnet/roslyn-analyzers/releases/tag/5.0.3) |
24+
4 | [6.0.0](https://github.com/dotnet/roslyn-analyzers/releases/tag/6.0.0) |
25+
5 | [7.0.0](https://github.com/dotnet/roslyn-analyzers/releases/tag/7.0.0) |
2426

2527
### Other analyzers
2628

@@ -66,3 +68,4 @@ Sr. No. | Release Version | Commit Tag | Commit SHA
6668
38 | 3.3.1 | v3.3.1 | [49efc9e](https://github.com/dotnet/roslyn-analyzers/commit/49efc9eea7aaa303190beb5b3ea554604fb5ce9d) | Microsoft.CodeAnalysis.Analyzers, Microsoft.CodeAnalysis.AnalyzerUtilities, Microsoft.CodeAnalysis.FxCopAnalyzers, Microsoft.CodeAnalysis.VersionCheckAnalyzer, Microsoft.CodeQuality.Analyzers, Microsoft.NetCore.Analyzers, Microsoft.NetFramework.Analyzers, Roslyn.Diagnostics.Analyzers, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.BannedApiAnalyzers
6769
39 | 3.3.2 | v3.3.2 | [4e0e1e8](https://github.com/dotnet/roslyn-analyzers/commit/4e0e1e855864587991a39e1e974dc53af094f4db) | Microsoft.CodeAnalysis.Analyzers, Microsoft.CodeAnalysis.AnalyzerUtilities, Microsoft.CodeAnalysis.FxCopAnalyzers, Microsoft.CodeAnalysis.VersionCheckAnalyzer, Microsoft.CodeQuality.Analyzers, Microsoft.NetCore.Analyzers, Microsoft.NetFramework.Analyzers, Roslyn.Diagnostics.Analyzers, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.BannedApiAnalyzers
6870
40 | 3.3.3 | v3.3.3 | [2771ee3](https://github.com/dotnet/roslyn-analyzers/commit/2771ee33883320861d72cdd23bf09a8da7fa8e5e) | Microsoft.CodeAnalysis.Analyzers, Microsoft.CodeAnalysis.AnalyzerUtilities, Microsoft.CodeAnalysis.FxCopAnalyzers, Microsoft.CodeAnalysis.VersionCheckAnalyzer, Microsoft.CodeQuality.Analyzers, Microsoft.NetCore.Analyzers, Microsoft.NetFramework.Analyzers, Roslyn.Diagnostics.Analyzers, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.BannedApiAnalyzers
71+
41 | 3.3.4 | v3.3.4 | [22ea642](https://github.com/dotnet/roslyn-analyzers/commit/22ea6422f85b05ca0793cc3b76375487be407f5d) | Microsoft.CodeAnalysis.Analyzers, Microsoft.CodeAnalysis.AnalyzerUtilities, Roslyn.Diagnostics.Analyzers, Microsoft.CodeAnalysis.PublicApiAnalyzers, Microsoft.CodeAnalysis.BannedApiAnalyzers, Microsoft.CodeAnalysis.Metrics, Text.Analyzers

eng/Versions.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<MicrosoftCodeAnalysisExecutableVersion Condition="'$(MicrosoftCodeAnalysisExecutableVersion)' == ''">3.8.0</MicrosoftCodeAnalysisExecutableVersion>
1515
</PropertyGroup>
1616
<PropertyGroup>
17-
<VersionPrefix>3.3.4</VersionPrefix>
17+
<VersionPrefix>3.3.5</VersionPrefix>
1818
<PreReleaseVersionLabel>beta1</PreReleaseVersionLabel>
1919
<NetAnalyzersVersionPrefix>8.0.0</NetAnalyzersVersionPrefix>
2020
<NetAnalyzersPreReleaseVersionLabel>preview1</NetAnalyzersPreReleaseVersionLabel>
@@ -46,7 +46,7 @@
4646
<MicrosoftCodeAnalysisVersion>3.3.1</MicrosoftCodeAnalysisVersion>
4747
<MicrosoftCodeAnalysisForRoslynDiagnosticsAnalyzersVersion>3.7.0</MicrosoftCodeAnalysisForRoslynDiagnosticsAnalyzersVersion>
4848
<MicrosoftCodeAnalysisVersionForTests>4.4.0-2.22416.9</MicrosoftCodeAnalysisVersionForTests>
49-
<DogfoodAnalyzersVersion>3.3.4-beta1.22418.3</DogfoodAnalyzersVersion>
49+
<DogfoodAnalyzersVersion>3.3.4</DogfoodAnalyzersVersion>
5050
<DogfoodNetAnalyzersVersion>8.0.0-preview1.22621.6</DogfoodNetAnalyzersVersion>
5151
<MicrosoftCodeAnalysisBannedApiAnalyzersVersion>$(DogfoodAnalyzersVersion)</MicrosoftCodeAnalysisBannedApiAnalyzersVersion>
5252
<MicrosoftCodeAnalysisAnalyzersVersion>$(DogfoodAnalyzersVersion)</MicrosoftCodeAnalysisAnalyzersVersion>

eng/globalconfigs/Common.globalconfig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,3 +114,7 @@ dotnet_diagnostic.VSTHRD002.severity = none
114114

115115
# VSTHRD011: Use AsyncLazy<T>
116116
dotnet_diagnostic.VSTHRD011.severity = none
117+
118+
# RS1036: A project containing analyzers or source generators should specify the property '<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>'.
119+
# https://github.com/dotnet/roslyn-analyzers/issues/6443 tracks enabling RS1036 and fixing RS1035 violations
120+
dotnet_diagnostic.RS1036.severity = none

src/Microsoft.CodeAnalysis.Analyzers/CSharp/AnalyzerReleases.Shipped.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,11 @@
55
Rule ID | Category | Severity | Notes
66
--------|----------|----------|-------
77
RS1014 | MicrosoftCodeAnalysisCorrectness | Warning | CSharpImmutableObjectMethodAnalyzer
8+
9+
## Release 3.3.4
10+
11+
### Removed Rules
12+
13+
Rule ID | Category | Severity | Notes
14+
--------|----------|----------|-------
15+
RS1014 | MicrosoftCodeAnalysisCorrectness | Warning | CSharpImmutableObjectMethodAnalyzer
Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1 @@
11
; Please do not edit this file manually, it should only be updated through code fix application.
2-
3-
### Removed Rules
4-
5-
Rule ID | Category | Severity | Notes
6-
--------|----------|----------|-------
7-
RS1014 | MicrosoftCodeAnalysisCorrectness | Warning | CSharpImmutableObjectMethodAnalyzer

src/Microsoft.CodeAnalysis.Analyzers/Core/AnalyzerReleases.Shipped.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,14 @@ RS1033 | MicrosoftCodeAnalysisDesign | Warning | DiagnosticDescriptorCreationAna
6767
Rule ID | Category | Severity | Notes
6868
--------|----------|----------|-------
6969
RS1034 | MicrosoftCodeAnalysisPerformance | Warning | PreferIsKindAnalyzer
70+
71+
## Release 3.3.4
72+
73+
### New Rules
74+
75+
Rule ID | Category | Severity | Notes
76+
--------|----------|----------|-------
77+
RS1014 | MicrosoftCodeAnalysisCorrectness | Warning | ImmutableObjectMethodAnalyzer
78+
RS1035 | MicrosoftCodeAnalysisCorrectness | Error | SymbolIsBannedInAnalyzersAnalyzer
79+
RS1036 | MicrosoftCodeAnalysisCorrectness | Warning | SymbolIsBannedInAnalyzersAnalyzer
80+
RS1037 | MicrosoftCodeAnalysisDesign | Warning | DiagnosticDescriptorCreationAnalyzer
Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1 @@
11
; Please do not edit this file manually, it should only be updated through code fix application.
2-
3-
### New Rules
4-
5-
Rule ID | Category | Severity | Notes
6-
--------|----------|----------|-------
7-
RS1014 | MicrosoftCodeAnalysisCorrectness | Warning | ImmutableObjectMethodAnalyzer
8-
RS1035 | MicrosoftCodeAnalysisCorrectness | Error | SymbolIsBannedInAnalyzersAnalyzer
9-
RS1036 | MicrosoftCodeAnalysisCorrectness | Warning | SymbolIsBannedInAnalyzersAnalyzer
10-
RS1037 | MicrosoftCodeAnalysisDesign | Warning | DiagnosticDescriptorCreationAnalyzer

src/Microsoft.CodeAnalysis.Analyzers/Microsoft.CodeAnalysis.Analyzers.sarif

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{
66
"tool": {
77
"name": "Microsoft.CodeAnalysis.Analyzers",
8-
"version": "3.3.4",
8+
"version": "3.3.5",
99
"language": "en-US"
1010
},
1111
"rules": {
@@ -659,7 +659,7 @@
659659
{
660660
"tool": {
661661
"name": "Microsoft.CodeAnalysis.CSharp.Analyzers",
662-
"version": "3.3.4",
662+
"version": "3.3.5",
663663
"language": "en-US"
664664
},
665665
"rules": {
@@ -857,7 +857,7 @@
857857
{
858858
"tool": {
859859
"name": "Microsoft.CodeAnalysis.VisualBasic.Analyzers",
860-
"version": "3.3.4",
860+
"version": "3.3.5",
861861
"language": "en-US"
862862
},
863863
"rules": {

src/Microsoft.CodeAnalysis.BannedApiAnalyzers/Microsoft.CodeAnalysis.BannedApiAnalyzers.sarif

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{
66
"tool": {
77
"name": "Microsoft.CodeAnalysis.BannedApiAnalyzers",
8-
"version": "3.3.4",
8+
"version": "3.3.5",
99
"language": "en-US"
1010
},
1111
"rules": {
@@ -14,7 +14,7 @@
1414
{
1515
"tool": {
1616
"name": "Microsoft.CodeAnalysis.CSharp.BannedApiAnalyzers",
17-
"version": "3.3.4",
17+
"version": "3.3.5",
1818
"language": "en-US"
1919
},
2020
"rules": {
@@ -77,7 +77,7 @@
7777
{
7878
"tool": {
7979
"name": "Microsoft.CodeAnalysis.VisualBasic.BannedApiAnalyzers",
80-
"version": "3.3.4",
80+
"version": "3.3.5",
8181
"language": "en-US"
8282
},
8383
"rules": {

src/PerformanceSensitiveAnalyzers/Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers.sarif

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{
66
"tool": {
77
"name": "Microsoft.CodeAnalysis.CSharp.PerformanceSensitiveAnalyzers",
8-
"version": "3.3.4",
8+
"version": "3.3.5",
99
"language": "en-US"
1010
},
1111
"rules": {
@@ -184,7 +184,7 @@
184184
{
185185
"tool": {
186186
"name": "Microsoft.CodeAnalysis.CSharp.PerformanceSensitiveAnalyzers.CodeFixes",
187-
"version": "3.3.4",
187+
"version": "3.3.5",
188188
"language": "en-US"
189189
},
190190
"rules": {
@@ -193,7 +193,7 @@
193193
{
194194
"tool": {
195195
"name": "Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers",
196-
"version": "3.3.4",
196+
"version": "3.3.5",
197197
"language": "en-US"
198198
},
199199
"rules": {

0 commit comments

Comments
 (0)