From 231f862cf743e8eed3cb0a6477a22a60f2b89dab Mon Sep 17 00:00:00 2001 From: Sergey Tepliakov Date: Wed, 20 May 2026 13:59:48 -0700 Subject: [PATCH 1/2] Add 0.9.0 release notes --- .../ErrorProne.NET.CoreAnalyzers.CodeFixes.csproj | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/ErrorProne.NET.CoreAnalyzers.CodeFixes/ErrorProne.NET.CoreAnalyzers.CodeFixes.csproj b/src/ErrorProne.NET.CoreAnalyzers.CodeFixes/ErrorProne.NET.CoreAnalyzers.CodeFixes.csproj index 067651a..a09be0b 100644 --- a/src/ErrorProne.NET.CoreAnalyzers.CodeFixes/ErrorProne.NET.CoreAnalyzers.CodeFixes.csproj +++ b/src/ErrorProne.NET.CoreAnalyzers.CodeFixes/ErrorProne.NET.CoreAnalyzers.CodeFixes.csproj @@ -18,6 +18,13 @@ false Core .NET analyzers for detecting the most common coding issues + 0.9.0 + * Add EPC38: TaskEnumerableReEnumerationAnalyzer (disabled by default). + * Add EPC39: QuadraticEnumerationAnalyzer (disabled by default). + * Add EPC40: PrivateMethodMultipleEnumerationAnalyzer (disabled by default). + * Add EPC41: FormatMethodArgumentsAnalyzer to validate arguments passed to string.Format-like methods. + * Fix EPC30: do not warn on recursive calls made from nested lambdas, anonymous methods, or local functions (#318). + * Fix EPC20: do not warn when the type defines a user-defined implicit conversion to string (#317). 0.8.2 * Reduce severity for the analyzers. 0.8.1 From 8b1cff2286f91b99970f909cd91bf5d779cccf22 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 20 May 2026 21:12:18 +0000 Subject: [PATCH 2/2] Fix CI build by forcing single-process dotnet build Agent-Logs-Url: https://github.com/SergeyTeplyakov/ErrorProne.NET/sessions/130ce17a-39f2-48c4-bd65-bb4149a38302 Co-authored-by: SergeyTeplyakov <726448+SergeyTeplyakov@users.noreply.github.com> --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 6b8c2a8..d437f76 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -26,7 +26,7 @@ jobs: run: dotnet restore working-directory: ./src - name: Build - run: dotnet build --no-restore + run: dotnet build --no-restore -m:1 working-directory: ./src - name: Test run: dotnet test --no-build --verbosity normal