From 1fd843761ed9aa1c79a02f773d22a2ec6c26bb90 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Mar 2026 06:37:52 +0000 Subject: [PATCH 1/4] Bump coverlet.msbuild from 6.0.4 to 8.0.1 --- updated-dependencies: - dependency-name: coverlet.msbuild dependency-version: 8.0.1 dependency-type: direct:production update-type: version-update:semver-major - dependency-name: coverlet.msbuild dependency-version: 8.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .../BitFaster.Caching.UnitTests.Std.csproj | 2 +- BitFaster.Caching.UnitTests/BitFaster.Caching.UnitTests.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BitFaster.Caching.UnitTests.Std/BitFaster.Caching.UnitTests.Std.csproj b/BitFaster.Caching.UnitTests.Std/BitFaster.Caching.UnitTests.Std.csproj index e232f5b4..396e8a4e 100644 --- a/BitFaster.Caching.UnitTests.Std/BitFaster.Caching.UnitTests.Std.csproj +++ b/BitFaster.Caching.UnitTests.Std/BitFaster.Caching.UnitTests.Std.csproj @@ -6,7 +6,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/BitFaster.Caching.UnitTests/BitFaster.Caching.UnitTests.csproj b/BitFaster.Caching.UnitTests/BitFaster.Caching.UnitTests.csproj index 6faddefe..0556c2de 100644 --- a/BitFaster.Caching.UnitTests/BitFaster.Caching.UnitTests.csproj +++ b/BitFaster.Caching.UnitTests/BitFaster.Caching.UnitTests.csproj @@ -7,7 +7,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive From 016c9912526b18429c22183d2d28153844194cf1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 30 Mar 2026 07:14:20 +0000 Subject: [PATCH 2/4] Add net8.0 matrix entry to gate.yml workflow Agent-Logs-Url: https://github.com/bitfaster/BitFaster.Caching/sessions/e92af154-c2d6-4252-8cbf-a45f851481ae Co-authored-by: bitfaster <12851828+bitfaster@users.noreply.github.com> --- .github/workflows/gate.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/gate.yml b/.github/workflows/gate.yml index 2ff9f1bd..cdcbe838 100644 --- a/.github/workflows/gate.yml +++ b/.github/workflows/gate.yml @@ -45,6 +45,15 @@ jobs: flag: win6 publish_nuget: false + - os: windows-latest + framework: net8.0 + coverage: true + results: results8.trx + artifact: test-results-win8 + std: true + flag: win8 + publish_nuget: false + - os: windows-latest framework: net9.0 coverage: true From 5aca83fcb53edceab76016ab8fb4f39638549f9a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 30 Mar 2026 21:01:45 +0000 Subject: [PATCH 3/4] Revert net8.0 matrix entry from gate.yml Agent-Logs-Url: https://github.com/bitfaster/BitFaster.Caching/sessions/9d4c56c3-17b8-41e2-8aa5-a8a9cc9f40d9 Co-authored-by: bitfaster <12851828+bitfaster@users.noreply.github.com> --- .github/workflows/gate.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/gate.yml b/.github/workflows/gate.yml index cdcbe838..2ff9f1bd 100644 --- a/.github/workflows/gate.yml +++ b/.github/workflows/gate.yml @@ -45,15 +45,6 @@ jobs: flag: win6 publish_nuget: false - - os: windows-latest - framework: net8.0 - coverage: true - results: results8.trx - artifact: test-results-win8 - std: true - flag: win8 - publish_nuget: false - - os: windows-latest framework: net9.0 coverage: true From 3b79ba534e893bf3cf87c81d8c554b428866b9e4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 12 Apr 2026 06:46:07 +0000 Subject: [PATCH 4/4] Disable coverage for pre-net8 frameworks in gate.yml coverlet.msbuild 8.0.1 instruments assemblies with code that requires System.Runtime 8.0.0.0. Running tests against netcoreapp3.1 or net6.0 fails with FileNotFoundException at runtime. Disable coverage collection for these frameworks; coverage still runs on net9.0. Agent-Logs-Url: https://github.com/bitfaster/BitFaster.Caching/sessions/de1b570d-4a65-4b8d-b1c7-068da8ecfab0 Co-authored-by: bitfaster <12851828+bitfaster@users.noreply.github.com> --- .github/workflows/gate.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gate.yml b/.github/workflows/gate.yml index 2ff9f1bd..5a7441fa 100644 --- a/.github/workflows/gate.yml +++ b/.github/workflows/gate.yml @@ -29,7 +29,7 @@ jobs: - os: windows-latest framework: netcoreapp3.1 - coverage: true + coverage: false results: results3.trx artifact: test-results-win3 std: false @@ -38,7 +38,7 @@ jobs: - os: windows-latest framework: net6.0 - coverage: true + coverage: false results: results6.trx artifact: test-results-win6 std: true @@ -57,7 +57,7 @@ jobs: # macOS - os: macos-latest framework: net6.0 - coverage: true + coverage: false results: results.trx artifact: test-results-mac std: true @@ -67,7 +67,7 @@ jobs: # Linux - os: ubuntu-latest framework: net6.0 - coverage: true + coverage: false results: results.trx artifact: test-results-linux std: true