Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
- Bump CLI from v3.2.0 to v3.3.0 ([#2561](https://github.com/getsentry/sentry-unity/pull/2561), [#2563](https://github.com/getsentry/sentry-unity/pull/2563), [#2568](https://github.com/getsentry/sentry-unity/pull/2568), [#2576](https://github.com/getsentry/sentry-unity/pull/2576))
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#330)
- [diff](https://github.com/getsentry/sentry-cli/compare/3.2.0...3.3.0)
- Bump .NET SDK from v6.2.0-alpha.0-11-gf201b653 to v6.2.0 ([#2588](https://github.com/getsentry/sentry-unity/pull/2588))
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#620)
- [diff](https://github.com/getsentry/sentry-dotnet/compare/6.2.0-alpha.0-11-gf201b653...6.2.0)

## 4.1.0

Expand Down
2 changes: 1 addition & 1 deletion src/sentry-dotnet
Submodule sentry-dotnet updated 73 files
+1 −0 .claude/skills
+1 −0 .generated.NoMobile.slnx
+19 −0 .github/ISSUE_TEMPLATE/bug_report.yml
+2 −2 .github/actions/environment/action.yml
+1 −0 .github/copilot-instructions.md
+8 −2 .github/dependabot.yml
+2 −2 .github/workflows/alpine.yml
+6 −6 .github/workflows/build.yml
+1 −1 .github/workflows/changelog-preview.yml
+2 −2 .github/workflows/codeql-analysis.yml
+4 −4 .github/workflows/device-tests-android.yml
+3 −3 .github/workflows/device-tests-ios.yml
+15 −4 .github/workflows/format-code.yml
+2 −2 .github/workflows/playwright-blazor-wasm.yml
+1 −1 .github/workflows/release.yml
+3 −0 .gitignore
+147 −0 AGENTS.md
+16 −1 CHANGELOG.md
+1 −0 CLAUDE.md
+16 −1 CONTRIBUTING.md
+2 −2 Directory.Build.props
+7 −0 GlobalUsings.cs
+1 −0 Sentry.slnx
+93 −0 agents.lock
+60 −0 agents.toml
+1 −1 global.json
+1 −1 integration-test/cli.Tests.ps1
+1 −0 integration-test/common.ps1
+1 −1 modules/sentry-cocoa.properties
+1 −1 modules/sentry-native
+0 −4 samples/Sentry.Samples.Aws.Lambda.AspNetCoreServer/Sentry.Samples.Aws.Lambda.AspNetCoreServer.csproj
+3 −0 samples/Sentry.Samples.Maui/Properties/launchSettings.json
+0 −2 samples/Sentry.Samples.Maui/Sentry.Samples.Maui.csproj
+14 −8 scripts/build-sentry-native.ps1
+1 −1 scripts/device-test-utils.ps1
+15 −4 scripts/device-test.ps1
+32 −32 src/Sentry.Analyzers/Sentry.Analyzers.csproj
+3 −1 src/Sentry.Android.AssemblyReader/Sentry.Android.AssemblyReader.csproj
+20 −3 src/Sentry.Android.AssemblyReader/V2/StoreReader.cs
+1 −1 src/Sentry.Bindings.Android/Sentry.Bindings.Android.csproj
+1 −0 src/Sentry.Bindings.Android/Transforms/Metadata.xml
+0 −5 src/Sentry.Bindings.Cocoa/ApiDefinitions.cs
+12 −9 src/Sentry.Bindings.Cocoa/StructsAndEnums.cs
+1 −1 src/Sentry.Log4Net/SentryAppender.cs
+1 −3 src/Sentry.Maui/Internal/MauiDeviceData.cs
+1 −3 src/Sentry.Maui/Internal/ScreenshotAttachment.cs
+6 −0 src/Sentry.Serilog/Sentry.Serilog.csproj
+1 −1 src/Sentry/Internal/Hub.cs
+34 −0 src/Sentry/Internal/InAppExcludeRegexes.cs
+1 −1 src/Sentry/Internal/InstallationIdHelper.cs
+1 −1 src/Sentry/Internal/Signal.cs
+60 −0 src/Sentry/Platforms/Android/DotnetReplayBreadcrumbConverter.cs
+4 −0 src/Sentry/Platforms/Android/SentrySdk.cs
+8 −8 src/Sentry/Platforms/Native/Sentry.Native.targets
+4 −8 src/Sentry/Platforms/Native/buildTransitive/Sentry.Native.targets
+2 −2 src/Sentry/Scope.cs
+26 −8 src/Sentry/Sentry.csproj
+11 −0 src/Sentry/SentryHttpMessageHandler.cs
+1 −1 src/Sentry/SentryMessageHandler.cs
+2 −0 src/Sentry/SentryOptions.cs
+1 −1 src/Sentry/TransactionTracer.cs
+0 −1 src/Sentry/buildTransitive/Sentry.targets
+6 −7 test/Sentry.Analyzers.Tests/Sentry.Analyzers.Tests.csproj
+6 −0 test/Sentry.AspNetCore.Tests/Sentry.AspNetCore.Tests.csproj
+4 −4 test/Sentry.Extensions.Logging.Tests/SentryHttpMessageHandlerBuilderFilterTests.cs
+2 −2 test/Sentry.Maui.Device.TestApp/Sentry.Maui.Device.TestApp.csproj
+1 −1 test/Sentry.Maui.Tests/Mocks/MockApplication.cs
+9 −0 test/Sentry.Maui.Tests/Sentry.Maui.Tests.csproj
+6 −0 test/Sentry.Serilog.Tests/Sentry.Serilog.Tests.csproj
+38 −0 test/Sentry.Tests/Platforms/Android/DotnetReplayBreadcrumbConverterTests.cs
+40 −0 test/Sentry.Tests/Protocol/Exceptions/SentryStackFrameTests.cs
+6 −0 test/Sentry.Tests/Sentry.Tests.csproj
+72 −0 test/Sentry.Tests/SentryHttpMessageHandlerTests.cs
Loading