-
Notifications
You must be signed in to change notification settings - Fork 3
Add analyzer release tracking #84
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
Merged
rjmurillo
merged 9 commits into
rjmurillo:main
from
MattKotsenas:feature/analyzer-release-tracking
Jun 12, 2024
Merged
Changes from 8 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
2feda70
Add shipped rules for 0.0.1.22865
MattKotsenas 369a1a2
Add shipped rules for 0.0.3.40797
MattKotsenas c54b4ac
Add shipped rules for 0.0.4.43043
MattKotsenas 7ef267e
Add shipped rules for 0.0.6
MattKotsenas 04c62fa
Add shipped rules for 0.0.7
MattKotsenas bd45e37
Add shipped rules for 0.0.8
MattKotsenas 6b2d49f
Add shipped rules for 0.0.9
MattKotsenas 403f5b0
Add help link and add analyzers as unshipped
MattKotsenas 3867ba1
Remove incorrect analyzer release tracking
MattKotsenas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
; Shipped analyzer releases | ||
; https://github.com/dotnet/roslyn-analyzers/blob/main/src/Microsoft.CodeAnalysis.Analyzers/ReleaseTrackingAnalyzers.Help.md | ||
|
||
## Release 0.0.1.22865 | ||
|
||
### New Rules | ||
|
||
Rule ID | Category | Severity | Notes | ||
--------|----------|----------|------- | ||
Moq1101 | Moq | Warning | CallbackSignatureAnalyzer | ||
Moq1002 | Moq | Warning | ShouldNotAllowParametersForMockedInterfaceAnalyzer | ||
Moq1001 | Moq | Warning | ShouldNotMockSealedClassesAnalyzer | ||
|
||
## Release 0.0.3.40797 | ||
|
||
### New Rules | ||
|
||
Rule ID | Category | Severity | Notes | ||
--------|----------|----------|------- | ||
Moq1003 | Moq | Warning | MatchingConstructorParametersAnalyzer | ||
|
||
### Changed Rules | ||
|
||
Rule ID | Category | Severity | Notes | ||
--------|----------|----------|------- | ||
Moq1001 | Moq | Warning | NoMocksForSealedClassesAnalyzer | ||
Moq1002 | Moq | Warning | NoParametersForMockedInterfacesAnalyzer | ||
|
||
## Release 0.0.4.43043 | ||
|
||
### New Rules | ||
|
||
Rule ID | Category | Severity | Notes | ||
--------|----------|----------|------- | ||
Moq1100 | Moq | Warning | CallbackSignatureShouldMatchMockedMethodAnalyzer | ||
Moq1000 | Moq | Warning | ConstructorArgumentsShouldMatchAnalyzer | ||
|
||
### Changed Rules | ||
|
||
Rule ID | Category | Severity | Notes | ||
--------|----------|----------|------- | ||
Moq1001 | Moq | Warning | NoConstructorArgumentsForInterfaceMockAnalyzer | ||
Moq1101 | Moq | Warning | NoMethodsInPropertySetupAnalyzer | ||
Moq1000 | Moq | Warning | NoSealedClassMocksAnalyzer | ||
|
||
## Release 0.0.6 | ||
|
||
### Changed Rules | ||
|
||
Rule ID | Category | Severity | Notes | ||
--------|----------|----------|------- | ||
Moq1002 | Moq | Warning | ConstructorArgumentsShouldMatchAnalyzer | ||
|
||
## Release 0.0.7 | ||
|
||
### New Rules | ||
|
||
Rule ID | Category | Severity | Notes | ||
--------|----------|----------|------- | ||
Moq1200 | Moq | Error | SetupShouldBeUsedOnlyForOverridableMembersAnalyzer | ||
|
||
## Release 0.0.8 | ||
|
||
### New Rules | ||
|
||
Rule ID | Category | Severity | Notes | ||
--------|----------|----------|------- | ||
Moq1300 | Moq | Error | AsShouldBeUsedOnlyForInterfaceAnalyzer | ||
|
||
## Release 0.0.9 | ||
|
||
### New Rules | ||
|
||
Rule ID | Category | Severity | Notes | ||
--------|----------|----------|------- | ||
Moq1201 | Moq | Error | SetupShouldNotIncludeAsyncResultAnalyzer | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
; Unshipped analyzer release | ||
; https://github.com/dotnet/roslyn-analyzers/blob/main/src/Microsoft.CodeAnalysis.Analyzers/ReleaseTrackingAnalyzers.Help.md | ||
|
||
### Changed Rules | ||
|
||
Documentation links added for every rule. | ||
|
||
Rule ID | Category | Severity | Notes | ||
--------|----------|----------|------- | ||
Moq1000 | Moq | Warning | NoSealedClassMocksAnalyzer, [Documentation](https://github.com/rjmurillo/moq.analyzers/blob/main/docs/rules/Moq1000.md) | ||
rjmurillo marked this conversation as resolved.
Show resolved
Hide resolved
|
||
Moq1001 | Moq | Warning | NoConstructorArgumentsForInterfaceMockAnalyzer, [Documentation](https://github.com/rjmurillo/moq.analyzers/blob/main/docs/rules/Moq1001.md) | ||
Moq1002 | Moq | Warning | ConstructorArgumentsShouldMatchAnalyzer, [Documentation](https://github.com/rjmurillo/moq.analyzers/blob/main/docs/rules/Moq1002.md) | ||
Moq1100 | Moq | Warning | CallbackSignatureShouldMatchMockedMethodAnalyzer, [Documentation](https://github.com/rjmurillo/moq.analyzers/blob/main/docs/rules/Moq1100.md) | ||
Moq1101 | Moq | Warning | NoMethodsInPropertySetupAnalyzer, [Documentation](https://github.com/rjmurillo/moq.analyzers/blob/main/docs/rules/Moq1101.md) | ||
Moq1200 | Moq | Error | SetupShouldBeUsedOnlyForOverridableMembersAnalyzer, [Documentation](https://github.com/rjmurillo/moq.analyzers/blob/main/docs/rules/Moq1200.md) | ||
Moq1201 | Moq | Error | SetupShouldNotIncludeAsyncResultAnalyzer, [Documentation](https://github.com/rjmurillo/moq.analyzers/blob/main/docs/rules/Moq1201.md) | ||
Moq1300 | Moq | Error | AsShouldBeUsedOnlyForInterfaceAnalyzer, [Documentation](https://github.com/rjmurillo/moq.analyzers/blob/main/docs/rules/Moq1300.md) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.