Skip to content
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

Add c# 12 test project #3734

Merged

Conversation

bjornhellander
Copy link
Contributor

@bjornhellander bjornhellander commented Nov 25, 2023

I took the liberty of adding a test project for c# 12. I assume that this will have to wait until your test changes are done @sharwell , but this can be rebased or re-done easily. It was mostly mechanical work anyway. 4 (?) test cases failed on c# 12, so I updated those.

Copy link

codecov bot commented Nov 25, 2023

Codecov Report

Merging #3734 (0cb2666) into master (c0246ab) will increase coverage by 0.00%.
Report is 4 commits behind head on master.
The diff coverage is 100.00%.

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #3734   +/-   ##
=======================================
  Coverage   93.13%   93.13%           
=======================================
  Files        1090     1093    +3     
  Lines      115038   115117   +79     
  Branches     4112     4118    +6     
=======================================
+ Hits       107135   107214   +79     
  Misses       6862     6862           
  Partials     1041     1041           

Comment on lines 991 to 1002
Diagnostic().WithLocation(8, 20),
Diagnostic().WithLocation(9, 20),
Diagnostic().WithLocation(10, 25),
Diagnostic().WithLocation(11, 30),
Diagnostic().WithLocation(12, 30),
Diagnostic(CS1065).WithLocation(12, 53),
Diagnostic().WithLocation(13, 30),
Diagnostic(CS7014).WithLocation(13, 47),
Diagnostic().WithLocation(14, 30),
Diagnostic(CS1670).WithLocation(14, 47),
Diagnostic().WithLocation(15, 25),
Diagnostic(CS1669).WithLocation(15, 42),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Let's move all the Diagnostic() items back into the test itself, and only have the CS* diagnostics in this virtual method.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure. I thought of that too briefly, but ended up not doing it. 👍

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added them as annotations in the tested code instead. This removed the need for two methods before and after the fix. Ok simplification?

Comment on lines 1010 to 1017
Diagnostic().WithLocation(12, 30),
Diagnostic(CS1065).WithLocation(12, 53),
Diagnostic().WithLocation(13, 30),
Diagnostic(CS7014).WithLocation(13, 47),
Diagnostic().WithLocation(14, 30),
Diagnostic(CS1670).WithLocation(14, 47),
Diagnostic().WithLocation(15, 25),
Diagnostic(CS1669).WithLocation(15, 42),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Same applies for Diagnostic() here

Comment on lines 1025 to 1026
Diagnostic().WithSpan(4, 50, 4, 58),
DiagnosticResult.CompilerError("CS1660").WithMessage("Cannot convert anonymous method to type 'EventHandler[]' because it is not a delegate type").WithSpan(4, 50, 4, 62),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Same here

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I noticed that the only thing differing was the span, so I simplified to only check the start location. Ok simplification?

@sharwell
Copy link
Member

Looks good but hoping for a slight refactoring

@bjornhellander
Copy link
Contributor Author

Cancelled the previous time as well, I think. Could a higher timeout be needed now with another test project, or is it just bad luck?

@sharwell
Copy link
Member

sharwell commented Dec 1, 2023

It may be possible to split the test executions into separate jobs that run in parallel, and then merge the result in a cleanup step. For now I just hit retry on the build.

@sharwell sharwell merged commit f21721e into DotNetAnalyzers:master Dec 5, 2023
4 checks passed
@bjornhellander bjornhellander deleted the feature/csharp12-test-project branch December 15, 2023 16:09
renovate bot added a commit to smartive/cas-fee-adv-mumble-api that referenced this pull request Dec 21, 2023
…20)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[StyleCop.Analyzers](https://togithub.com/DotNetAnalyzers/StyleCopAnalyzers)
| `1.2.0-beta.507` -> `1.2.0-beta.556` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/StyleCop.Analyzers/1.2.0-beta.556?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/StyleCop.Analyzers/1.2.0-beta.556?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/StyleCop.Analyzers/1.2.0-beta.507/1.2.0-beta.556?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/StyleCop.Analyzers/1.2.0-beta.507/1.2.0-beta.556?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>DotNetAnalyzers/StyleCopAnalyzers
(StyleCop.Analyzers)</summary>

###
[`v1.2.0-beta.556`](https://togithub.com/DotNetAnalyzers/StyleCopAnalyzers/releases/tag/1.2.0-beta.556)

[Compare
Source](https://togithub.com/DotNetAnalyzers/StyleCopAnalyzers/compare/1.2.0-beta.553...1.2.0-beta.556)

#### What's Changed

- Update SA1011 to forbid trailing space before the end of a switch case
by [@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3674
- Rewrite IOperationWrapper as a wrapper structure around IOperation by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3611
- Update SA1202 to support interfaces (C# 8) and records (C# 9, 10) by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3694
- Update documentation for SA1308 to also mention prefix "t\_" by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3697
- Update SA1642 and its code fix to handle record structs correctly by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3696
- Update dependencies by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3700
- Mark several test classes as partial by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3702
- Add missing test files and fix inheritance by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3703
- Generate and validate derived test classes by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3704
- Update SA1011 to not require space before a range operator by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3709
- Update SA1131 to treat methods as constants by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3710
- Avoid allocations in CanWrap... methods by
[@&#8203;martin-strecker-sonarsource](https://togithub.com/martin-strecker-sonarsource)
in
[DotNetAnalyzers/StyleCopAnalyzers#3711
- Update SA1648 to accept inheritdoc on members implemented from static
abstract/virtual interface members by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3715
- Update SA1600 to also handle records by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3725
- Update SA1119 to allow parenthesis around a ref ternary conditional
expression when it is the left-hand side of an assigment by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3737
- Update SA1119 to allow parenthesized switch expressions followed by an
invocation by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3733
- Add c# 12 test project by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3734
- Run tests in parallel jobs by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3740
- Update SA1010 to accept whitespace before collection initializers by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3745
- Update SA1513 to not require a blank line if the closing brace is at
the end of a collection expression by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3746
- Update SA1118 to allow multi-line collection expressions by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3749
- Update SA1009 to require a space after the closing parenthesis if it
is followed by ++ or -- from a prefix unary expression by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3750
- Update SA1008 to allow space before the opening parenthesis of a using
alias definition of a tuple type by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3748
- Update documentation for SA1102 to contain compilable code examples by
[@&#8203;arphox](https://togithub.com/arphox) in
[DotNetAnalyzers/StyleCopAnalyzers#3755
- Update SA1008 to not crash if there is no previous token by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3741
- Change default value of test property CodeActionValidationMode to
SemanticStructure instead of None and update so that tests still pass by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3753
- Allow inheritdoc for class constructors with base types by
[@&#8203;MartyIX](https://togithub.com/MartyIX) in
[DotNetAnalyzers/StyleCopAnalyzers#3719
- Fix that SA1134 Fix All maybe non-deterministic by
[@&#8203;pdelvo](https://togithub.com/pdelvo) in
[DotNetAnalyzers/StyleCopAnalyzers#2853
- Coverage improvements by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3675
- Fix SA1131 to not treat "complex" expressions as a literal by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3760

#### New Contributors

-
[@&#8203;martin-strecker-sonarsource](https://togithub.com/martin-strecker-sonarsource)
made their first contribution in
[DotNetAnalyzers/StyleCopAnalyzers#3711
- [@&#8203;arphox](https://togithub.com/arphox) made their first
contribution in
[DotNetAnalyzers/StyleCopAnalyzers#3755
- [@&#8203;MartyIX](https://togithub.com/MartyIX) made their first
contribution in
[DotNetAnalyzers/StyleCopAnalyzers#3719

**Full Changelog**:
DotNetAnalyzers/StyleCopAnalyzers@1.2.0-beta.507...1.2.0-beta.556

###
[`v1.2.0-beta.553`](https://togithub.com/DotNetAnalyzers/StyleCopAnalyzers/releases/tag/1.2.0-beta.553)

[Compare
Source](https://togithub.com/DotNetAnalyzers/StyleCopAnalyzers/compare/1.2.0-beta.507...1.2.0-beta.553)

##### What's Changed

- Update SA1011 to forbid trailing space before the end of a switch case
by [@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3674
- Rewrite IOperationWrapper as a wrapper structure around IOperation by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3611
- Update SA1202 to support interfaces (C# 8) and records (C# 9, 10) by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3694
- Update documentation for SA1308 to also mention prefix "t\_" by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3697
- Update SA1642 and its code fix to handle record structs correctly by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3696
- Update dependencies by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3700
- Mark several test classes as partial by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3702
- Add missing test files and fix inheritance by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3703
- Generate and validate derived test classes by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3704
- Update SA1011 to not require space before a range operator by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3709
- Update SA1131 to treat methods as constants by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3710
- Avoid allocations in CanWrap... methods by
[@&#8203;martin-strecker-sonarsource](https://togithub.com/martin-strecker-sonarsource)
in
[DotNetAnalyzers/StyleCopAnalyzers#3711
- Update SA1648 to accept inheritdoc on members implemented from static
abstract/virtual interface members by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3715
- Update SA1600 to also handle records by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3725
- Update SA1119 to allow parenthesis around a ref ternary conditional
expression when it is the left-hand side of an assigment by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3737
- Update SA1119 to allow parenthesized switch expressions followed by an
invocation by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3733
- Add c# 12 test project by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3734
- Run tests in parallel jobs by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3740
- Update SA1010 to accept whitespace before collection initializers by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3745
- Update SA1513 to not require a blank line if the closing brace is at
the end of a collection expression by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3746
- Update SA1118 to allow multi-line collection expressions by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3749
- Update SA1009 to require a space after the closing parenthesis if it
is followed by ++ or -- from a prefix unary expression by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3750
- Update SA1008 to allow space before the opening parenthesis of a using
alias definition of a tuple type by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3748
- Update documentation for SA1102 to contain compilable code examples by
[@&#8203;arphox](https://togithub.com/arphox) in
[DotNetAnalyzers/StyleCopAnalyzers#3755
- Update SA1008 to not crash if there is no previous token by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3741
- Change default value of test property CodeActionValidationMode to
SemanticStructure instead of None and update so that tests still pass by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3753
- Allow inheritdoc for class constructors with base types by
[@&#8203;MartyIX](https://togithub.com/MartyIX) in
[DotNetAnalyzers/StyleCopAnalyzers#3719
- Fix that SA1134 Fix All maybe non-deterministic by
[@&#8203;pdelvo](https://togithub.com/pdelvo) in
[DotNetAnalyzers/StyleCopAnalyzers#2853
- Coverage improvements by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3675

##### New Contributors

-
[@&#8203;martin-strecker-sonarsource](https://togithub.com/martin-strecker-sonarsource)
made their first contribution in
[DotNetAnalyzers/StyleCopAnalyzers#3711
- [@&#8203;arphox](https://togithub.com/arphox) made their first
contribution in
[DotNetAnalyzers/StyleCopAnalyzers#3755
- [@&#8203;MartyIX](https://togithub.com/MartyIX) made their first
contribution in
[DotNetAnalyzers/StyleCopAnalyzers#3719

**Full Changelog**:
DotNetAnalyzers/StyleCopAnalyzers@1.2.0-beta.507...1.2.0-beta.553

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 9pm,before 6am" in timezone
Europe/Zurich, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/smartive/cas-fee-adv-mumble-api).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
ThorstenSauter pushed a commit to ThorstenSauter/NoPlan that referenced this pull request Dec 21, 2023
…591)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[StyleCop.Analyzers](https://togithub.com/DotNetAnalyzers/StyleCopAnalyzers)
| `1.2.0-beta.507` -> `1.2.0-beta.556` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/StyleCop.Analyzers/1.2.0-beta.556?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/StyleCop.Analyzers/1.2.0-beta.556?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/StyleCop.Analyzers/1.2.0-beta.507/1.2.0-beta.556?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/StyleCop.Analyzers/1.2.0-beta.507/1.2.0-beta.556?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>DotNetAnalyzers/StyleCopAnalyzers
(StyleCop.Analyzers)</summary>

###
[`v1.2.0-beta.556`](https://togithub.com/DotNetAnalyzers/StyleCopAnalyzers/releases/tag/1.2.0-beta.556)

[Compare
Source](https://togithub.com/DotNetAnalyzers/StyleCopAnalyzers/compare/1.2.0-beta.553...1.2.0-beta.556)

#### What's Changed

- Update SA1011 to forbid trailing space before the end of a switch case
by [@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3674
- Rewrite IOperationWrapper as a wrapper structure around IOperation by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3611
- Update SA1202 to support interfaces (C# 8) and records (C# 9, 10) by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3694
- Update documentation for SA1308 to also mention prefix "t\_" by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3697
- Update SA1642 and its code fix to handle record structs correctly by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3696
- Update dependencies by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3700
- Mark several test classes as partial by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3702
- Add missing test files and fix inheritance by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3703
- Generate and validate derived test classes by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3704
- Update SA1011 to not require space before a range operator by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3709
- Update SA1131 to treat methods as constants by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3710
- Avoid allocations in CanWrap... methods by
[@&#8203;martin-strecker-sonarsource](https://togithub.com/martin-strecker-sonarsource)
in
[DotNetAnalyzers/StyleCopAnalyzers#3711
- Update SA1648 to accept inheritdoc on members implemented from static
abstract/virtual interface members by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3715
- Update SA1600 to also handle records by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3725
- Update SA1119 to allow parenthesis around a ref ternary conditional
expression when it is the left-hand side of an assigment by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3737
- Update SA1119 to allow parenthesized switch expressions followed by an
invocation by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3733
- Add c# 12 test project by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3734
- Run tests in parallel jobs by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3740
- Update SA1010 to accept whitespace before collection initializers by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3745
- Update SA1513 to not require a blank line if the closing brace is at
the end of a collection expression by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3746
- Update SA1118 to allow multi-line collection expressions by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3749
- Update SA1009 to require a space after the closing parenthesis if it
is followed by ++ or -- from a prefix unary expression by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3750
- Update SA1008 to allow space before the opening parenthesis of a using
alias definition of a tuple type by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3748
- Update documentation for SA1102 to contain compilable code examples by
[@&#8203;arphox](https://togithub.com/arphox) in
[DotNetAnalyzers/StyleCopAnalyzers#3755
- Update SA1008 to not crash if there is no previous token by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3741
- Change default value of test property CodeActionValidationMode to
SemanticStructure instead of None and update so that tests still pass by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3753
- Allow inheritdoc for class constructors with base types by
[@&#8203;MartyIX](https://togithub.com/MartyIX) in
[DotNetAnalyzers/StyleCopAnalyzers#3719
- Fix that SA1134 Fix All maybe non-deterministic by
[@&#8203;pdelvo](https://togithub.com/pdelvo) in
[DotNetAnalyzers/StyleCopAnalyzers#2853
- Coverage improvements by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3675
- Fix SA1131 to not treat "complex" expressions as a literal by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3760

#### New Contributors

-
[@&#8203;martin-strecker-sonarsource](https://togithub.com/martin-strecker-sonarsource)
made their first contribution in
[DotNetAnalyzers/StyleCopAnalyzers#3711
- [@&#8203;arphox](https://togithub.com/arphox) made their first
contribution in
[DotNetAnalyzers/StyleCopAnalyzers#3755
- [@&#8203;MartyIX](https://togithub.com/MartyIX) made their first
contribution in
[DotNetAnalyzers/StyleCopAnalyzers#3719

**Full Changelog**:
DotNetAnalyzers/StyleCopAnalyzers@1.2.0-beta.507...1.2.0-beta.556

###
[`v1.2.0-beta.553`](https://togithub.com/DotNetAnalyzers/StyleCopAnalyzers/releases/tag/1.2.0-beta.553)

[Compare
Source](https://togithub.com/DotNetAnalyzers/StyleCopAnalyzers/compare/1.2.0-beta.507...1.2.0-beta.553)

##### What's Changed

- Update SA1011 to forbid trailing space before the end of a switch case
by [@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3674
- Rewrite IOperationWrapper as a wrapper structure around IOperation by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3611
- Update SA1202 to support interfaces (C# 8) and records (C# 9, 10) by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3694
- Update documentation for SA1308 to also mention prefix "t\_" by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3697
- Update SA1642 and its code fix to handle record structs correctly by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3696
- Update dependencies by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3700
- Mark several test classes as partial by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3702
- Add missing test files and fix inheritance by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3703
- Generate and validate derived test classes by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3704
- Update SA1011 to not require space before a range operator by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3709
- Update SA1131 to treat methods as constants by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3710
- Avoid allocations in CanWrap... methods by
[@&#8203;martin-strecker-sonarsource](https://togithub.com/martin-strecker-sonarsource)
in
[DotNetAnalyzers/StyleCopAnalyzers#3711
- Update SA1648 to accept inheritdoc on members implemented from static
abstract/virtual interface members by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3715
- Update SA1600 to also handle records by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3725
- Update SA1119 to allow parenthesis around a ref ternary conditional
expression when it is the left-hand side of an assigment by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3737
- Update SA1119 to allow parenthesized switch expressions followed by an
invocation by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3733
- Add c# 12 test project by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3734
- Run tests in parallel jobs by
[@&#8203;sharwell](https://togithub.com/sharwell) in
[DotNetAnalyzers/StyleCopAnalyzers#3740
- Update SA1010 to accept whitespace before collection initializers by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3745
- Update SA1513 to not require a blank line if the closing brace is at
the end of a collection expression by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3746
- Update SA1118 to allow multi-line collection expressions by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3749
- Update SA1009 to require a space after the closing parenthesis if it
is followed by ++ or -- from a prefix unary expression by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3750
- Update SA1008 to allow space before the opening parenthesis of a using
alias definition of a tuple type by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3748
- Update documentation for SA1102 to contain compilable code examples by
[@&#8203;arphox](https://togithub.com/arphox) in
[DotNetAnalyzers/StyleCopAnalyzers#3755
- Update SA1008 to not crash if there is no previous token by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3741
- Change default value of test property CodeActionValidationMode to
SemanticStructure instead of None and update so that tests still pass by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3753
- Allow inheritdoc for class constructors with base types by
[@&#8203;MartyIX](https://togithub.com/MartyIX) in
[DotNetAnalyzers/StyleCopAnalyzers#3719
- Fix that SA1134 Fix All maybe non-deterministic by
[@&#8203;pdelvo](https://togithub.com/pdelvo) in
[DotNetAnalyzers/StyleCopAnalyzers#2853
- Coverage improvements by
[@&#8203;bjornhellander](https://togithub.com/bjornhellander) in
[DotNetAnalyzers/StyleCopAnalyzers#3675

##### New Contributors

-
[@&#8203;martin-strecker-sonarsource](https://togithub.com/martin-strecker-sonarsource)
made their first contribution in
[DotNetAnalyzers/StyleCopAnalyzers#3711
- [@&#8203;arphox](https://togithub.com/arphox) made their first
contribution in
[DotNetAnalyzers/StyleCopAnalyzers#3755
- [@&#8203;MartyIX](https://togithub.com/MartyIX) made their first
contribution in
[DotNetAnalyzers/StyleCopAnalyzers#3719

**Full Changelog**:
DotNetAnalyzers/StyleCopAnalyzers@1.2.0-beta.507...1.2.0-beta.553

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/ThorstenSauter/NoPlan).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants