Skip to content
Merged
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
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
- Bump CLI from v2.53.0 to v2.56.0 ([#2324](https://github.com/getsentry/sentry-unity/pull/2324), [#2330](https://github.com/getsentry/sentry-unity/pull/2330), [#2343](https://github.com/getsentry/sentry-unity/pull/2343))
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2560)
- [diff](https://github.com/getsentry/sentry-cli/compare/2.53.0...2.56.0)
- Bump .NET SDK from v5.15.0 to v5.15.1 ([#2326](https://github.com/getsentry/sentry-unity/pull/2326))
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#5151)
- [diff](https://github.com/getsentry/sentry-dotnet/compare/5.15.0...5.15.1)
- Bump .NET SDK from v5.15.0 to v5.16.0 ([#2326](https://github.com/getsentry/sentry-unity/pull/2326), [#2345](https://github.com/getsentry/sentry-unity/pull/2345))
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#5160)
- [diff](https://github.com/getsentry/sentry-dotnet/compare/5.15.0...5.16.0)
- Bump Java SDK from v8.21.1 to v8.22.0 ([#2328](https://github.com/getsentry/sentry-unity/pull/2328))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8220)
- [diff](https://github.com/getsentry/sentry-java/compare/8.21.1...8.22.0)
Expand Down
2 changes: 1 addition & 1 deletion src/sentry-dotnet
Submodule sentry-dotnet updated 73 files
+15 −3 .github/actions/environment/action.yml
+8 −7 .github/workflows/build.yml
+29 −6 .github/workflows/device-tests-android.yml
+1 −0 .github/workflows/device-tests-ios.yml
+36 −2 CHANGELOG.md
+2 −2 Directory.Build.props
+1 −1 benchmarks/Sentry.Benchmarks/BackgroundWorkerFlushBenchmarks.cs
+7 −0 integration-test/cli.Tests.ps1
+1 −1 integration-test/common.ps1
+101 −0 integration-test/msbuild.Tests.ps1
+11 −0 integration-test/nuget5.config
+1 −1 modules/sentry-cocoa.properties
+1 −1 modules/sentry-native
+4 −4 samples/Sentry.Samples.Console.Basic/Program.cs
+2 −0 samples/Sentry.Samples.Serilog/Program.cs
+2 −2 scripts/device-test.ps1
+22 −0 scripts/install-libssl1.sh
+1 −1 src/Sentry.Bindings.Android/Sentry.Bindings.Android.csproj
+3 −0 src/Sentry.Bindings.Android/Transforms/Metadata.xml
+3 −3 src/Sentry.Extensions.Logging/SentryStructuredLogger.cs
+14 −0 src/Sentry.Serilog/LogLevelExtensions.cs
+104 −0 src/Sentry.Serilog/SentrySink.Structured.cs
+48 −22 src/Sentry.Serilog/SentrySink.cs
+18 −9 src/Sentry.Serilog/SentrySinkExtensions.cs
+2 −0 src/Sentry/BindableSentryOptions.cs
+0 −2 src/Sentry/Extensibility/DisabledHub.cs
+1 −3 src/Sentry/Extensibility/HubAdapter.cs
+20 −3 src/Sentry/Http/HttpTransportBase.cs
+0 −2 src/Sentry/IHub.cs
+4 −0 src/Sentry/Internal/BackgroundWorker.cs
+166 −0 src/Sentry/Internal/BackpressureMonitor.cs
+6 −0 src/Sentry/Internal/BackpressureMonitorExtensions.cs
+3 −3 src/Sentry/Internal/DefaultSentryStructuredLogger.cs
+2 −2 src/Sentry/Internal/Http/HttpTransport.cs
+2 −2 src/Sentry/Internal/Http/LazyHttpTransport.cs
+32 −6 src/Sentry/Internal/Hub.cs
+11 −0 src/Sentry/Internal/SampleRandHelper.cs
+5 −3 src/Sentry/Internal/SdkComposer.cs
+5 −2 src/Sentry/Internal/UnsampledTransaction.cs
+17 −6 src/Sentry/Platforms/Native/CFunctions.cs
+7 −7 src/Sentry/Sentry.csproj
+15 −7 src/Sentry/SentryClient.cs
+36 −23 src/Sentry/SentryLog.cs
+0 −3 src/Sentry/SentryLogLevel.cs
+6 −4 src/Sentry/SentryOptions.cs
+8 −12 src/Sentry/SentrySdk.cs
+0 −26 src/Sentry/SentryStructuredLogger.Format.cs
+0 −2 src/Sentry/SentryStructuredLogger.cs
+23 −6 src/Sentry/buildTransitive/Sentry.targets
+12 −7 test/Sentry.Extensions.Logging.Tests/SentryStructuredLoggerTests.cs
+1 −1 test/Sentry.Profiling.Tests/SamplingTransactionProfilerTests.cs
+2 −1 test/Sentry.Serilog.Tests/ApiApprovalTests.Run.DotNet8_0.verified.txt
+2 −1 test/Sentry.Serilog.Tests/ApiApprovalTests.Run.DotNet9_0.verified.txt
+2 −1 test/Sentry.Serilog.Tests/ApiApprovalTests.Run.Net4_8.verified.txt
+49 −0 test/Sentry.Serilog.Tests/AspNetCoreIntegrationTests.cs
+70 −0 test/Sentry.Serilog.Tests/IntegrationTests.StructuredLogging.verified.txt
+40 −0 test/Sentry.Serilog.Tests/IntegrationTests.verify.cs
+4 −2 test/Sentry.Serilog.Tests/SentrySerilogSinkExtensionsTests.cs
+135 −0 test/Sentry.Serilog.Tests/SentrySinkTests.Structured.cs
+2 −1 test/Sentry.Serilog.Tests/SentrySinkTests.cs
+9 −1 test/Sentry.Serilog.Tests/SerilogAspNetSentrySdkTestFixture.cs
+2 −1 test/Sentry.Testing/InMemorySentryStructuredLogger.cs
+2 −0 test/Sentry.Testing/RecordingTransport.cs
+3 −34 test/Sentry.Tests/ApiApprovalTests.Run.DotNet8_0.verified.txt
+3 −34 test/Sentry.Tests/ApiApprovalTests.Run.DotNet9_0.verified.txt
+3 −4 test/Sentry.Tests/ApiApprovalTests.Run.Net4_8.verified.txt
+94 −5 test/Sentry.Tests/HubTests.cs
+34 −3 test/Sentry.Tests/Internals/BackgroundWorkerTests.cs
+163 −0 test/Sentry.Tests/Internals/BackpressureMonitorTests.cs
+36 −0 test/Sentry.Tests/Internals/Http/HttpTransportTests.cs
+57 −11 test/Sentry.Tests/SentryClientTests.cs
+76 −0 test/Sentry.Tests/SentryLogTests.cs
+13 −8 test/Sentry.Tests/SentryStructuredLoggerTests.cs
Loading