Skip to content

Commit ac987dc

Browse files
committed
Merge branch 'release/5.2.0'
2 parents f659b5d + 878952a commit ac987dc

File tree

77 files changed

+1765
-744
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+1765
-744
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
"Tool","Tool Version","Format","Issue Provider","Supported Since"
2+
"~~[dupFinder](https://www.jetbrains.com/help/resharper/2021.2/dupFinder.html){target='_blank'}~~{ title='Deprecated since dupFinder Command Line Tool has been sunsetted' } ",,,"Cake.Issues.DupFinder",0.8.0
3+
"[jscpd](https://github.com/kucherenko/jscpd){target='_blank'}",,"[jscpd-sarif-reporter](https://www.npmjs.com/package/jscpd-sarif-reporter){target='_blank'}","[Cake.Issues.Sarif](issue-providers/sarif/index.md)",4.2.0

docs/input/documentation/assets/tables/supported-tools-dotnet.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"Tool","Tool Version","Format","Issue Provider","Supported Since"
2-
"~~[dupFinder](https://www.jetbrains.com/help/resharper/2021.2/dupFinder.html){target='_blank'}~~{ title='Deprecated since dupFinder Command Line Tool has been sunsetted' } ",,,"Cake.Issues.DupFinder",0.8.0
2+
"~~[dupFinder](https://www.jetbrains.com/help/resharper/2021.2/dupFinder.html){target='_blank'}~~{ title='Deprecated since dupFinder Command Line Tool has been sunsetted. See Copy/Paste Detection for alternative tools.' } ",,,"Cake.Issues.DupFinder",0.8.0
33
"[InspectCode](https://www.jetbrains.com/help/resharper/InspectCode.html){target='_blank'}",,"[xml](https://www.jetbrains.com/help/resharper/InspectCode.html#alternative-output-formats){target='_blank'}","[Cake.Issues.InspectCode](issue-providers/inspectcode/index.md)",0.1.0
44
"[InspectCode](https://www.jetbrains.com/help/resharper/InspectCode.html){target='_blank'}",">= 2024.1","[SARIF](https://www.jetbrains.com/help/resharper/InspectCode.html#understanding-output){target='_blank'}","[Cake.Issues.Sarif](issue-providers/sarif/index.md)",4.2.0
55
"[MsBuild](https://docs.microsoft.com/visualstudio/msbuild/msbuild){target='_blank'}",,"[Binary Log 7](https://learn.microsoft.com/en-us/visualstudio/msbuild/obtaining-build-logs-with-msbuild#save-a-binary-log){target='_blank'}","[Cake.Issues.MsBuild](issue-providers/msbuild/index.md)",0.6.1

docs/input/documentation/issue-providers/sarif/features.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ The [Cake.Issues.Sarif addin](https://cakebuild.net/extensions/cake-issues-sarif
99
## Basic features
1010

1111
- [x] Reads issues from files in [SARIF](https://sarifweb.azurewebsites.net/){target="_blank"} format.
12+
- [x] Support for reading issues reported as suppressed by the linter
1213

1314
## Supported IIssue properties
1415

docs/input/documentation/recipe/configuration.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,3 +153,24 @@ By default [Cake.Git addin](https://cakebuild.net/extensions/cake-git/){target="
153153
| `IssueFilters` | Empty | List of filter functions which should be applied before posting issues to pull requests. |
154154
| `ShouldSetPullRequestStatus` | `true` | Indicates whether a status on the pull request should be set if there are any issues found. |
155155
| `ShouldSetSeparatePullRequestStatusForEachIssueProviderAndRun` | `true` | Indicates whether a separate status should be set for issues of every issue provider and run. |
156+
157+
## Build breaking
158+
159+
=== "Cake.Issues.Recipe"
160+
161+
| IssuesParameters.BuildBreaking Property | Default Value | Description |
162+
|-----------------------------------------|---------------------------|------------------------------------------------------------------------------------------------------------------------------|
163+
| `ShouldFailBuildOnIssues` | `false` | Indicates whether build should fail if any issues are found. |
164+
| `MinimumPriority` | `IssuePriority.Undefined` | The minimum priority of issues considered to fail the build. If set to `IssuePriority.Undefined`, all issues are considered. |
165+
| `IssueProvidersToConsider` | `[]` | List of issue provider types to consider. |
166+
| `IssueProvidersToIgnore` | `[]` | List of issue provider types to ignore. |
167+
168+
=== "Cake.Frosting.Issues.Recipe"
169+
170+
| IssuesContext.Parameters.BuildBreaking Property | Default Value | Description |
171+
|-------------------------------------------------|---------------------------|------------------------------------------------------------------------------------------------------------------------------|
172+
| `ShouldFailBuildOnIssues` | `false` | Indicates whether build should fail if any issues are found. |
173+
| `MinimumPriority` | `IssuePriority.Undefined` | The minimum priority of issues considered to fail the build. If set to `IssuePriority.Undefined`, all issues are considered. |
174+
| `IssueProvidersToConsider` | `[]` | List of issue provider types to consider. |
175+
| `IssueProvidersToIgnore` | `[]` | List of issue provider types to ignore. |
176+

docs/input/documentation/supported-tools.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ This pages lists tools known to be working with Cake Issues (1)
3333

3434
{{ read_csv('assets/tables/supported-tools-clojure.csv',keep_default_na=False) }}
3535

36+
## Copy/Paste Detection
37+
38+
{{ read_csv('assets/tables/supported-tools-copypaste.csv',keep_default_na=False) }}
39+
3640
## CSS, SCSS, Sass
3741

3842
{{ read_csv('assets/tables/supported-tools-css.csv',keep_default_na=False) }}

docs/input/documentation/usage/index.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,14 @@ which can be used inside your projects Cake build to add issue management.
1313

1414
The addins can be added individually to any Cake build and allow advanced customizations:
1515

16-
* [Creating Issues](creating-issues/creating-issues.md)
17-
* [Reading Issues](reading-issues/index.md)
18-
* [Creating Reports](creating-reports/index.md)
19-
* [Reporting Issues To Pull Request And Build Systems](reporting-issues-to-pull-requests/index.md)
20-
* [Breaking Builds](breaking-builds/breaking-builds.md)
16+
<div class="grid cards" markdown>
17+
18+
* :material-creation-outline: [Creating Issues](creating-issues/creating-issues.md)
19+
* :material-import: [Reading Issues](reading-issues/index.md)
20+
* :material-monitor-dashboard: [Creating Reports](creating-reports/index.md)
21+
* :material-comment-text: [Reporting Issues To Pull Request And Build Systems](reporting-issues-to-pull-requests/index.md)
22+
* :material-exclamation: [Breaking Builds](breaking-builds/breaking-builds.md)
23+
24+
</div>
2125

2226
[Recipe packages]: recipe/index.md

docs/input/news/posts/2024-04-14-sarif-issue-provider.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ search:
77
boost: 0.5
88
---
99

10-
A new [Cake.Issues.Sarif addin] has been released which adds support for reading issues in [SARIF]{target="_blank"} format.
10+
In [version 4.2.0] a new [Cake.Issues.Sarif addin] has been released which adds support for reading issues in [SARIF]{target="_blank"} format.
1111

1212
<!-- more -->
1313

@@ -20,6 +20,7 @@ See [Supported Tools] for an updated list of supported tools.
2020
The addins is available in a version for Cake .NET Tool ([Cake.Issues.Sarif]{target="_blank"})
2121
and Cake Frosting ([Cake.Frosting.Issues.Sarif]{target="_blank"}).
2222

23+
[version 4.2.0]: 2024-04-14-cake-issues-v4.2.0-released.md
2324
[Cake.Issues.Sarif addin]: ../../documentation/issue-providers/sarif/index.md
2425
[SARIF]: https://sarifweb.azurewebsites.net/
2526
[Supported Tools]: ../../documentation/supported-tools.md

docs/input/news/posts/2025-01-03-tap-issue-provider.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ search:
77
boost: 0.5
88
---
99

10-
A new [Cake.Issues.Tap addin] has been released which adds support for reading issues in [Test Anything Protocol (TAP)]{target="_blank"} format.
10+
In [version 5.1.0] a new [Cake.Issues.Tap addin] has been released which adds support for reading issues in [Test Anything Protocol (TAP)]{target="_blank"} format.
1111

1212
<!-- more -->
1313

@@ -29,6 +29,7 @@ See [Supported Tools] for an updated list of supported tools.
2929
The addins is available in a version for Cake .NET Tool ([Cake.Issues.Tap]{target="_blank"})
3030
and Cake Frosting ([Cake.Frosting.Issues.Tap]{target="_blank"}).
3131

32+
[version 5.1.0]: 2025-01-03-cake-issues-v5.1.0-released.md
3233
[Cake.Issues.Tap addin]: ../../documentation/issue-providers/tap/index.md
3334
[Test Anything Protocol (TAP)]: https://testanything.org/
3435
[Supported Tools]: ../../documentation/supported-tools.md
Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
---
2+
title: Cake Issues v5.2.0 Released
3+
date: 2025-01-09
4+
categories:
5+
- Release Notes
6+
search:
7+
boost: 0.5
8+
---
9+
10+
Cake Issues version 5.2.0 has been released bringing improvements to build breaking and SARIF issue provider.
11+
12+
<!-- more -->
13+
14+
This post shows the highlights included in this release.
15+
For update instructions skip to [Updating from previous versions](#updating-from-previous-versions).
16+
17+
❤ Huge thanks to our community! This release would not have been possible without your support and contributions! ❤
18+
19+
People working on this release:
20+
21+
* [eoehen](https://github.com/eoehen){target="_blank"}
22+
* [pascalberger](https://github.com/pascalberger){target="_blank"}
23+
24+
## Support for suppressed issues in SARIF files.
25+
26+
SARIF supports [suppressions]{target="_blank"} for issues which are suppressed, either in the source code or through some external tool.
27+
28+
Until now this property was ignored.
29+
Starting with Cake Issues 5.2.0 issues which are marked as suppressed in a SARIF file will no longer be imported by default.
30+
There is a new setting `IgnoreSuppressedIssues` which can be disabled to continue reading suppressed issues.
31+
32+
## Additional alias for build breaking
33+
34+
There is a new alias for fails build if any issues are found with settings to limit to priority and issue provider types to complement
35+
the already existing [aliases for failing builds]{target="_blank"}.
36+
37+
The following example fails build if issues with severity warning or higher from MsBuild are found:
38+
39+
=== "Cake .NET Tool"
40+
41+
```csharp
42+
BreakBuildOnIssues(
43+
issues,
44+
new BuildBreakingSettings
45+
{
46+
MinimumPriority = IssuePriority.Warning,
47+
IssueProvidersToConsider = [MsBuildIssuesProviderTypeName]
48+
});
49+
```
50+
51+
=== "Cake Frosting"
52+
53+
```csharp
54+
context.BreakBuildOnIssues(
55+
issues,
56+
new BuildBreakingSettings
57+
{
58+
MinimumPriority = IssuePriority.Warning,
59+
IssueProvidersToConsider = [context.MsBuildIssuesProviderTypeName()]
60+
});
61+
```
62+
63+
The following example fails build if issues with severity warning or higher are found, ignoring issues reported by MsBuild:
64+
65+
=== "Cake .NET Tool"
66+
67+
```csharp
68+
BreakBuildOnIssues(
69+
issues,
70+
new BuildBreakingSettings
71+
{
72+
MinimumPriority = IssuePriority.Warning,
73+
IssueProvidersToIgnore = [MsBuildIssuesProviderTypeName]
74+
});
75+
```
76+
77+
=== "Cake Frosting"
78+
79+
```csharp
80+
context.BreakBuildOnIssues(
81+
issues,
82+
new BuildBreakingSettings
83+
{
84+
MinimumPriority = IssuePriority.Warning,
85+
IssueProvidersToIgnore = [context.MsBuildIssuesProviderTypeName()]
86+
});
87+
```
88+
89+
## Support for failing builds in Cake Issues Recipe
90+
91+
Cake Issues Recipe has new configuration options to support failing of builds if any issues are found:
92+
93+
- `ShouldFailBuildOnIssues`: Indicates whether build should fail if any issues are found
94+
- `MinimumPriority`: Minimum priority of issues considered to fail the build
95+
- `IssueProvidersToConsider`: List of issue provider types to consider
96+
- `IssueProvidersToIgnore`: List of issue provider types to ignore
97+
98+
## Updating from previous versions
99+
100+
Cake.Issues 5.2.0 addins are compatible with any 5.x addins.
101+
To update to the new version bump the version of the specific addins.
102+
103+
For details see [release notes](https://github.com/cake-contrib/Cake.Issues/releases/tag/5.2.0){target="_blank"}
104+
105+
[suppressions]: https://docs.oasis-open.org/sarif/sarif/v2.1.0/errata01/os/sarif-v2.1.0-errata01-os-complete.html#_Toc141790911
106+
[aliases for failing builds]: https://cakebuild.net/extensions/cake-issues/#Build-Breaking
107+
[Cake Issues Recipe]: ../../documentation/recipe/index.md

docs/mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ extra:
116116
# renovate: datasource=nuget depName=Cake.DocFx versioning=loose
117117
cake_docfx_version: 1.0.0
118118
# renovate: datasource=nuget depName=Cake.Issues versioning=loose
119-
cake_issues_version: 5.1.0
119+
cake_issues_version: 5.2.0
120120
# renovate: datasource=nuget depName=Cake.Markdownlint versioning=loose
121121
cake_markdownlint_version: 4.0.0
122122
# renovate: datasource=nuget depName=Cake.Git versioning=loose

nuspec/nuget/Cake.Frosting.Issues.DocFx.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.DocFx.
2929
<copyright>Copyright © Cake Issues contributors</copyright>
3030
<tags>cake cake-addin cake-issues cake-issueprovider linting docfx</tags>
3131
<readme>docs\README.md</readme>
32-
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.1.1</releaseNotes>
32+
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.2.0</releaseNotes>
3333
<dependencies>
3434
<group targetFramework="net8.0">
3535
<dependency id="Cake.Core" version="5.0" exclude="Build,Analyzers" />

nuspec/nuget/Cake.Frosting.Issues.EsLint.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.EsLint.
2929
<copyright>Copyright © Cake Issues contributors</copyright>
3030
<tags>cake cake-addin cake-issues cake-issueprovider code-analysis javascript linting eslint</tags>
3131
<readme>docs\README.md</readme>
32-
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.1.1</releaseNotes>
32+
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.2.0</releaseNotes>
3333
<dependencies>
3434
<group targetFramework="net8.0">
3535
<dependency id="Cake.Core" version="5.0" exclude="Build,Analyzers" />

nuspec/nuget/Cake.Frosting.Issues.GitRepository.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.GitRepository.
2929
<copyright>Copyright © Cake Issues contributors</copyright>
3030
<tags>cake cake-addin cake-issues cake-issueprovider code-analysis linting git</tags>
3131
<readme>docs\README.md</readme>
32-
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.1.1</releaseNotes>
32+
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.2.0</releaseNotes>
3333
<dependencies>
3434
<group targetFramework="net8.0">
3535
<dependency id="Cake.Core" version="5.0" exclude="Build,Analyzers" />

nuspec/nuget/Cake.Frosting.Issues.InspectCode.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.InspectCode.
2929
<copyright>Copyright © Cake Issues contributors</copyright>
3030
<tags>cake cake-addin cake-issues cake-issueprovider codeanalysis linting inspectcode</tags>
3131
<readme>docs\README.md</readme>
32-
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.1.1</releaseNotes>
32+
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.2.0</releaseNotes>
3333
<dependencies>
3434
<group targetFramework="net8.0">
3535
<dependency id="Cake.Core" version="5.0" exclude="Build,Analyzers" />

nuspec/nuget/Cake.Frosting.Issues.Markdownlint.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.Markdownlint.
2929
<copyright>Copyright © Cake Issues contributors</copyright>
3030
<tags>cake cake-addin cake-issues cake-issueprovider linting markdown markdownlint</tags>
3131
<readme>docs\README.md</readme>
32-
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.1.1</releaseNotes>
32+
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.2.0</releaseNotes>
3333
<dependencies>
3434
<group targetFramework="net8.0">
3535
<dependency id="Cake.Core" version="5.0" exclude="Build,Analyzers" />

nuspec/nuget/Cake.Frosting.Issues.MsBuild.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.MsBuild.
3030
<copyright>Copyright © Cake Issues contributors</copyright>
3131
<tags>cake cake-addin cake-issues cake-issueprovider code-analysis linting msbuild</tags>
3232
<readme>docs\README.md</readme>
33-
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.1.1</releaseNotes>
33+
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.2.0</releaseNotes>
3434
<dependencies>
3535
<group targetFramework="net8.0">
3636
<dependency id="Cake.Core" version="5.0" exclude="Build,Analyzers" />

nuspec/nuget/Cake.Frosting.Issues.PullRequests.AppVeyor.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.PullRequests.AppVe
2727
<copyright>Copyright © Cake Issues contributors</copyright>
2828
<tags>cake cake-addin cake-issues cake-pullrequestsystem issues pullrequest buildserver appveyor</tags>
2929
<readme>docs\README.md</readme>
30-
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.1.1</releaseNotes>
30+
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.2.0</releaseNotes>
3131
<dependencies>
3232
<group targetFramework="net8.0">
3333
<dependency id="Cake.Common" version="5.0" exclude="Build,Analyzers" />

nuspec/nuget/Cake.Frosting.Issues.PullRequests.AzureDevOps.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.PullRequests.Azure
2828
<copyright>Copyright © Cake Issues contributors</copyright>
2929
<tags>cake cake-addin cake-issues cake-pullrequestsystem issues pullrequest tfs azure-devops azure-devops-server</tags>
3030
<readme>docs\README.md</readme>
31-
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.1.1</releaseNotes>
31+
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.2.0</releaseNotes>
3232
<dependencies>
3333
<group targetFramework="net8.0">
3434
<dependency id="Cake.Frosting.Issues.PullRequests" version="[5.0.0-beta0001,6.0)" exclude="Build,Analyzers" />

nuspec/nuget/Cake.Frosting.Issues.PullRequests.GitHubActions.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.PullRequests.GitHu
2727
<copyright>Copyright © Cake Issues contributors</copyright>
2828
<tags>cake cake-addin cake-issues cake-pullrequestsystem issues pullrequest buildserver github github-actions</tags>
2929
<readme>docs\README.md</readme>
30-
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.1.1</releaseNotes>
30+
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.2.0</releaseNotes>
3131
<dependencies>
3232
<group targetFramework="net8.0">
3333
<dependency id="Cake.Frosting.Issues.PullRequests" version="[5.0.0-beta0001,6.0)" exclude="Build,Analyzers" />

nuspec/nuget/Cake.Frosting.Issues.PullRequests.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ For addin compatible with Cake Script Runners see Cake.Issues.PullRequests.
2727
<copyright>Copyright © Cake Issues contributors</copyright>
2828
<tags>Cake Script Cake-Issues CodeAnalysis Linting Issues Pull-Requests</tags>
2929
<readme>docs\README.md</readme>
30-
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.1.1</releaseNotes>
30+
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.2.0</releaseNotes>
3131
<dependencies>
3232
<group targetFramework="net8.0">
3333
<dependency id="Cake.Core" version="5.0" exclude="Build,Analyzers" />

nuspec/nuget/Cake.Frosting.Issues.Reporting.Console.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The addin requires Cake Frosting 1.2.0 or higher.
2929
<copyright>Copyright © Cake Issues contributors</copyright>
3030
<tags>cake cake-addin cake-issues cake-reportformat issues reporting console</tags>
3131
<readme>docs\README.md</readme>
32-
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.1.1</releaseNotes>
32+
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/5.2.0</releaseNotes>
3333
<dependencies>
3434
<group targetFramework="net8.0">
3535
<dependency id="Cake.Frosting.Issues.Reporting" version="[5.0.0-beta0001,6.0)" exclude="Build,Analyzers" />

0 commit comments

Comments
 (0)