File tree
4 files changed
+10
-5
lines changed- src
- test/Sentry.Unity.Tests
4 files changed
+10
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
28 | | - | |
29 | | - | |
30 | | - | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
| |||
Submodule sentry-dotnet updated 89 files
- .github/ISSUE_TEMPLATE/bug_report.yml+7-3
- .github/actions/environment/action.yml+1-1
- .github/alpine/Dockerfile+1-1
- .github/alpine/setup-node.sh+5-5
- .github/workflows/alpine.yml+1-1
- .github/workflows/build.yml+14-10
- .github/workflows/codeql-analysis.yml+3-3
- .github/workflows/device-tests-android.yml+2-2
- .github/workflows/device-tests-ios.yml+1-1
- .github/workflows/format-code.yml+1-1
- .github/workflows/release.yml+2-2
- .github/workflows/vulnerabilities.yml+1-1
- CHANGELOG.md+38-4
- Directory.Build.props+3-3
- Directory.Build.targets+1-1
- README.md+1
- benchmarks/Sentry.Benchmarks/BenchmarkDotNet.Artifacts/results/Sentry.Benchmarks.StructuredLogBatchProcessorBenchmarks-report-github.md+15-9
- benchmarks/Sentry.Benchmarks/StructuredLogBatchProcessorBenchmarks.cs+30-15
- global.json+2-2
- modules/sentry-cocoa.properties+1-1
- modules/sentry-native+1-1
- samples/Sentry.Samples.Console.Basic/Program.cs+5-3
- samples/Sentry.Samples.Maui/MauiProgram.cs+5-2
- samples/Sentry.Samples.Maui/Sentry.Samples.Maui.csproj+1-1
- scripts/device-test.ps1+12-2
- scripts/generate-cocoa-bindings.ps1+18-76
- scripts/ios-simulator-utils.ps1+95
- src/Sentry.Android.AssemblyReader/AndroidAssemblyReaderFactory.cs+7-7
- src/Sentry.Android.AssemblyReader/ArchiveUtils.cs+1-1
- src/Sentry.Android.AssemblyReader/DebugLogger.cs+2-1
- src/Sentry.Android.AssemblyReader/DebugLoggerLevel.cs+32
- src/Sentry.Android.AssemblyReader/V1/AndroidAssemblyDirectoryReaderV1.cs+2-2
- src/Sentry.Android.AssemblyReader/V1/AndroidAssemblyStoreReaderV1.cs+9-9
- src/Sentry.Android.AssemblyReader/V2/AndroidAssemblyDirectoryReaderV2.cs+11-11
- src/Sentry.Android.AssemblyReader/V2/AndroidAssemblyStoreReaderV2.cs+9-9
- src/Sentry.Android.AssemblyReader/V2/AssemblyStoreExplorer.cs+1-1
- src/Sentry.Android.AssemblyReader/V2/StoreReaderV2.cs+3-3
- src/Sentry.AspNet/HttpContextExtensions.cs+1-1
- src/Sentry.AspNetCore/SentryTracingMiddleware.cs+1-1
- src/Sentry.Bindings.Android/Sentry.Bindings.Android.csproj+14-1
- src/Sentry.Bindings.Android/Transforms/Metadata.xml+1
- src/Sentry.Bindings.Cocoa/ApiDefinitions.cs+215-298
- src/Sentry.Bindings.Cocoa/Sentry.Bindings.Cocoa.csproj+3-1
- src/Sentry.Bindings.Cocoa/StructsAndEnums.cs-22
- src/Sentry.Bindings.Cocoa/SwiftApiDefinitions.cs+764
- src/Sentry.Bindings.Cocoa/SwiftStructsAndEnums.cs+81
- src/Sentry.Extensions.Logging/SentryStructuredLogger.cs+3-3
- src/Sentry.Maui/Internal/MauiEventsBinder.cs+4-4
- src/Sentry.Maui/Internal/MauiSessionReplayMaskControlsOfTypeBinder.cs+10-2
- src/Sentry.Maui/SentryMauiAppBuilderExtensions.cs+2-3
- src/Sentry/Ben.BlockingDetector/BlockingMonitor.cs-1
- src/Sentry/BuiltInSystemDiagnosticsMeters.cs-249
- src/Sentry/DynamicSamplingContext.cs+13-26
- src/Sentry/ExperimentalMetricsOptions.cs-61
- src/Sentry/Internal/AotHelper.cs+1-1
- src/Sentry/Internal/DefaultSentryStructuredLogger.cs+3-8
- src/Sentry/Internal/Hub.cs+5-4
- src/Sentry/Internal/StructuredLogBatchBuffer.cs+2
- src/Sentry/Platforms/Android/AndroidHelpers.cs+1-1
- src/Sentry/Platforms/Android/NativeOptions.cs+25
- src/Sentry/Platforms/Android/SentrySdk.cs+2
- src/Sentry/Sentry.csproj+7-7
- src/Sentry/SentryStructuredLogger.Format.cs+156
- src/Sentry/SentryStructuredLogger.cs+1-94
- src/Sentry/Threading/ScopedCountdownLock.cs+15-8
- src/Sentry/buildTransitive/Sentry.targets+1
- test/Sentry.Android.AssemblyReader.Tests/AndroidAssemblyReaderTests.cs+1-1
- test/Sentry.Android.AssemblyReader.Tests/ApiApprovalTests.Run.DotNet8_0.verified.txt+9-1
- test/Sentry.Android.AssemblyReader.Tests/ApiApprovalTests.Run.DotNet9_0.verified.txt+9-1
- test/Sentry.AspNetCore.Tests/SentryAspNetCoreStructuredLoggerProviderTests.cs+1-1
- test/Sentry.Extensions.Logging.Tests/SentryStructuredLoggerProviderTests.cs+1-1
- test/Sentry.Extensions.Logging.Tests/SentryStructuredLoggerTests.cs+10-10
- test/Sentry.Maui.Device.TestApp/Sentry.Maui.Device.TestApp.csproj+1-1
- test/Sentry.Maui.Tests/Internal/SentryMauiStructuredLoggerProviderTests.cs+1-1
- test/Sentry.Maui.Tests/MauiCustomSessionReplayMaskBinderTests.cs+119
- test/Sentry.Maui.Tests/MauiEventsBinderTests.cs+36
- test/Sentry.Maui.Tests/MauiVisualElementEventsBinderTests.cs-59
- test/Sentry.Profiling.Tests/SamplingTransactionProfilerTests.cs+6
- test/Sentry.Testing/TestEnvironment.cs-2
- test/Sentry.Tests/ApiApprovalTests.Run.DotNet8_0.verified.txt+19-32
- test/Sentry.Tests/ApiApprovalTests.Run.DotNet9_0.verified.txt+19-32
- test/Sentry.Tests/ApiApprovalTests.Run.Net4_8.verified.txt+13-32
- test/Sentry.Tests/BuiltInSystemDiagnosticsMetersTests.cs-104
- test/Sentry.Tests/DynamicSamplingContextTests.cs+1-1
- test/Sentry.Tests/GlobalSessionManagerTests.cs+3-1
- test/Sentry.Tests/HubTests.cs+55-72
- test/Sentry.Tests/SentryStructuredLoggerTests.Format.cs+143
- test/Sentry.Tests/SentryStructuredLoggerTests.cs+39-90
- test/Sentry.Tests/Threading/ScopedCountdownLockTests.cs+7-7
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
45 | | - | |
| 45 | + | |
| 46 | + | |
46 | 47 | | |
| 48 | + | |
47 | 49 | | |
48 | 50 | | |
49 | 51 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
184 | 184 | | |
185 | 185 | | |
186 | 186 | | |
| 187 | + | |
| 188 | + | |
187 | 189 | | |
| 190 | + | |
188 | 191 | | |
189 | 192 | | |
190 | 193 | | |
| |||
0 commit comments