Skip to content

Commit 1c5402e

Browse files
committed
Merge branch 'main' into feature/v3.2
2 parents bb3a049 + 551d092 commit 1c5402e

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ and adheres to a project-specific [Versioning](/README.md).
4242
- S4829: Reading the Standard Input is security-sensitive
4343
- S4834: Controlling permissions is security-sensitive
4444

45+
## [3.1.2] - 2024-10-03
46+
47+
### Removed
48+
49+
- (Tests ruleset only) S4144: Methods should not have identical implementations, because when using parameterised tests it can make sense to have different test methods with different parametrization but using the same implementation.
50+
4551
## [3.1.1] - 2024-09-20
4652

4753
### Changed
@@ -146,7 +152,7 @@ and adheres to a project-specific [Versioning](/README.md).
146152

147153
- Changelog
148154

149-
[unreleased]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.1.1...HEAD
155+
[unreleased]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.1.2...HEAD
150156
[3.1.0]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.0.5...v3.1.0
151157
[3.0.5]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.0.4...v3.0.5
152158
[3.0.4]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.0.3...v3.0.4
@@ -155,4 +161,5 @@ and adheres to a project-specific [Versioning](/README.md).
155161
[3.0.1]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.0.0...v3.0.1
156162
[3.0.0]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v2.7.1...v3.0.0
157163
[2.7.1]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v2.7.0...v2.7.1
164+
[3.1.2]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.1.1...v3.1.2
158165
[3.1.1]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.1.1-alpha.0...v3.1.1

build/Neolution.CodeAnalysis.TestsRuleset.globalconfig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,7 @@ dotnet_diagnostic.S126.severity = none
4040
# S4581: "new Guid()" should not be used
4141
; When creating mocks/substitutes this can be irrelevant, so it should not break the build
4242
dotnet_diagnostic.S4581.severity = suggestion
43+
44+
# S4144: Methods should not have identical implementations
45+
; When using parameterised tests it can make sense to have different test methods with different parametrization but using the same implementation.
46+
dotnet_diagnostic.S4144.severity = none

0 commit comments

Comments
 (0)