From cdf9327bff63e9d3806128dc62c64a2971f0eefd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20P=C3=B6lz?= <38893694+Flash0ver@users.noreply.github.com> Date: Tue, 11 Nov 2025 17:15:29 +0100 Subject: [PATCH 1/4] update .NET SDK 10.0.100 from RC2 to GA --- global.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/global.json b/global.json index f260fed215..be464523b1 100644 --- a/global.json +++ b/global.json @@ -1,7 +1,7 @@ { "sdk": { - "version": "10.0.100-rc.2.25502.107", - "workloadVersion": "10.0.100-rc.2.25513.4", + "version": "10.0.100", + "workloadVersion": "10.0.100", "rollForward": "disable", "allowPrerelease": false } From 20e37747480939c7a77200dd11cce00a82329c97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20P=C3=B6lz?= <38893694+Flash0ver@users.noreply.github.com> Date: Tue, 11 Nov 2025 17:21:36 +0100 Subject: [PATCH 2/4] update dependency pacakges --- .../Sentry.AspNetCore.Blazor.WebAssembly.csproj | 2 +- .../Sentry.Extensions.Logging.csproj | 6 +++--- .../Sentry.AspNetCore.Grpc.Tests.csproj | 2 +- .../Sentry.AspNetCore.TestUtils.csproj | 2 +- .../Sentry.DiagnosticSource.IntegrationTests.csproj | 4 ++-- .../Sentry.DiagnosticSource.Tests.csproj | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Sentry.AspNetCore.Blazor.WebAssembly/Sentry.AspNetCore.Blazor.WebAssembly.csproj b/src/Sentry.AspNetCore.Blazor.WebAssembly/Sentry.AspNetCore.Blazor.WebAssembly.csproj index 61d6dd2229..b0635091c6 100644 --- a/src/Sentry.AspNetCore.Blazor.WebAssembly/Sentry.AspNetCore.Blazor.WebAssembly.csproj +++ b/src/Sentry.AspNetCore.Blazor.WebAssembly/Sentry.AspNetCore.Blazor.WebAssembly.csproj @@ -19,7 +19,7 @@ - + diff --git a/src/Sentry.Extensions.Logging/Sentry.Extensions.Logging.csproj b/src/Sentry.Extensions.Logging/Sentry.Extensions.Logging.csproj index 4201207da5..d26cc963e2 100644 --- a/src/Sentry.Extensions.Logging/Sentry.Extensions.Logging.csproj +++ b/src/Sentry.Extensions.Logging/Sentry.Extensions.Logging.csproj @@ -33,9 +33,9 @@ - - - + + + diff --git a/test/Sentry.AspNetCore.Grpc.Tests/Sentry.AspNetCore.Grpc.Tests.csproj b/test/Sentry.AspNetCore.Grpc.Tests/Sentry.AspNetCore.Grpc.Tests.csproj index 57dd94d734..cebd392dce 100644 --- a/test/Sentry.AspNetCore.Grpc.Tests/Sentry.AspNetCore.Grpc.Tests.csproj +++ b/test/Sentry.AspNetCore.Grpc.Tests/Sentry.AspNetCore.Grpc.Tests.csproj @@ -12,7 +12,7 @@ - + diff --git a/test/Sentry.AspNetCore.TestUtils/Sentry.AspNetCore.TestUtils.csproj b/test/Sentry.AspNetCore.TestUtils/Sentry.AspNetCore.TestUtils.csproj index fba06619e4..6c6d98ec6b 100644 --- a/test/Sentry.AspNetCore.TestUtils/Sentry.AspNetCore.TestUtils.csproj +++ b/test/Sentry.AspNetCore.TestUtils/Sentry.AspNetCore.TestUtils.csproj @@ -59,7 +59,7 @@ - + diff --git a/test/Sentry.DiagnosticSource.IntegrationTests/Sentry.DiagnosticSource.IntegrationTests.csproj b/test/Sentry.DiagnosticSource.IntegrationTests/Sentry.DiagnosticSource.IntegrationTests.csproj index 62d67cadbb..6356d86783 100644 --- a/test/Sentry.DiagnosticSource.IntegrationTests/Sentry.DiagnosticSource.IntegrationTests.csproj +++ b/test/Sentry.DiagnosticSource.IntegrationTests/Sentry.DiagnosticSource.IntegrationTests.csproj @@ -9,8 +9,8 @@ - - + + diff --git a/test/Sentry.DiagnosticSource.Tests/Sentry.DiagnosticSource.Tests.csproj b/test/Sentry.DiagnosticSource.Tests/Sentry.DiagnosticSource.Tests.csproj index 93ad42e99b..5edda61ce8 100644 --- a/test/Sentry.DiagnosticSource.Tests/Sentry.DiagnosticSource.Tests.csproj +++ b/test/Sentry.DiagnosticSource.Tests/Sentry.DiagnosticSource.Tests.csproj @@ -8,8 +8,8 @@ - - + + From 167cee8d3d2fa6994724441ff10d87b63fd0e19e Mon Sep 17 00:00:00 2001 From: James Crosswell Date: Fri, 14 Nov 2025 13:35:11 +1300 Subject: [PATCH 3/4] Removed prerelease build prop --- Directory.Build.props | 3 --- 1 file changed, 3 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index 92b7d9f7a9..093b687c47 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -21,9 +21,6 @@ $(NoWarn);NU1902;NU1903 - - $(NoWarn);XCODE_26_0_PREVIEW - NU1902;NU1903 From 18ead2834d96b2bc3b87fa3d9b0d121fdfef15f7 Mon Sep 17 00:00:00 2001 From: James Crosswell Date: Fri, 14 Nov 2025 13:41:27 +1300 Subject: [PATCH 4/4] Removed special handling for musl (until next year) --- .github/workflows/build.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3e14ccf55e..1821dfebd3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -265,21 +265,22 @@ jobs: path: src - name: Integration test - if: ${{ (matrix.rid != 'linux-musl-x64') && (matrix.rid != 'linux-musl-arm64') }} +# # Note that when upgsading .NET versions, linux-musl may need special handling... see comments below +# if: ${{ (matrix.rid != 'linux-musl-x64') && (matrix.rid != 'linux-musl-arm64') }} uses: getsentry/github-workflows/sentry-cli/integration-test/@a5e409bd5bad4c295201cdcfe862b17c50b29ab7 # v2.14.1 with: path: integration-test - # For the linux-musl runtimes we have to pin the ContainerBaseImage for preview or RC builds, since - # these don't conform to the normal naming conventions and don't get resolved automatically. We do - # by passing it as parameter to aot.Tests.ps1 via an environment variable - - name: Integration test (musl) - if: ${{ (matrix.rid == 'linux-musl-x64') || (matrix.rid == 'linux-musl-arm64') }} - uses: getsentry/github-workflows/sentry-cli/integration-test/@v2 - env: - ContainerBaseImage: 'mcr.microsoft.com/dotnet/nightly/runtime-deps:10.0-preview-alpine3.22' - with: - path: integration-test +# # For the linux-musl runtimes we have to pin the ContainerBaseImage for preview or RC builds, since +# # these don't conform to the normal naming conventions and don't get resolved automatically. We do +# # by passing it as parameter to aot.Tests.ps1 via an environment variable +# - name: Integration test (musl) +# if: ${{ (matrix.rid == 'linux-musl-x64') || (matrix.rid == 'linux-musl-arm64') }} +# uses: getsentry/github-workflows/sentry-cli/integration-test/@v2 +# env: +# ContainerBaseImage: 'mcr.microsoft.com/dotnet/nightly/runtime-deps:10.0-preview-alpine3.22' +# with: +# path: integration-test ms-build: needs: build-sentry-native