Skip to content

Commit

Permalink
Merge branch 'main' into feature/v3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
neoscie committed Oct 6, 2024
2 parents bb3a049 + 551d092 commit 1c5402e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ and adheres to a project-specific [Versioning](/README.md).
- S4829: Reading the Standard Input is security-sensitive
- S4834: Controlling permissions is security-sensitive

## [3.1.2] - 2024-10-03

### Removed

- (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.

## [3.1.1] - 2024-09-20

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

- Changelog

[unreleased]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.1.1...HEAD
[unreleased]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.1.2...HEAD
[3.1.0]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.0.5...v3.1.0
[3.0.5]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.0.4...v3.0.5
[3.0.4]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.0.3...v3.0.4
Expand All @@ -155,4 +161,5 @@ and adheres to a project-specific [Versioning](/README.md).
[3.0.1]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.0.0...v3.0.1
[3.0.0]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v2.7.1...v3.0.0
[2.7.1]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v2.7.0...v2.7.1
[3.1.2]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.1.1...v3.1.2
[3.1.1]: https://github.com/neolution-ch/Neolution.CodeAnalysis/compare/v3.1.1-alpha.0...v3.1.1
4 changes: 4 additions & 0 deletions build/Neolution.CodeAnalysis.TestsRuleset.globalconfig
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,7 @@ dotnet_diagnostic.S126.severity = none
# S4581: "new Guid()" should not be used
; When creating mocks/substitutes this can be irrelevant, so it should not break the build
dotnet_diagnostic.S4581.severity = suggestion

# S4144: Methods should not have identical implementations
; When using parameterised tests it can make sense to have different test methods with different parametrization but using the same implementation.
dotnet_diagnostic.S4144.severity = none

0 comments on commit 1c5402e

Please sign in to comment.