Skip to content

Commit

Permalink
chore: update src/sentry-dotnet to 3.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow authored Jul 26, 2022
1 parent 1f1b0c7 commit faec941
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
- Bump Cocoa SDK to v7.22.0 ([#892](https://github.com/getsentry/sentry-unity/pull/892), [#909](https://github.com/getsentry/sentry-unity/pull/909))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/master/CHANGELOG.md#7220)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.20.0...7.22.0)
- Bump .NET SDK to v3.20.0 ([#907](https://github.com/getsentry/sentry-unity/pull/907))
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#3200)
- [diff](https://github.com/getsentry/sentry-dotnet/compare/3.19.0...3.20.0)
- Bump .NET SDK to v3.20.1 ([#907](https://github.com/getsentry/sentry-unity/pull/907), [#911](https://github.com/getsentry/sentry-unity/pull/911))
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#3201)
- [diff](https://github.com/getsentry/sentry-dotnet/compare/3.19.0...3.20.1)

## 0.21.0

Expand Down
2 changes: 1 addition & 1 deletion src/sentry-dotnet
Submodule sentry-dotnet updated 71 files
+38 −0 .github/actions/environment/action.yml
+3 −43 .github/workflows/build.yml
+5 −21 .github/workflows/codeql-analysis.yml
+2 −43 .github/workflows/vulnerabilities.yml
+7 −0 CHANGELOG.md
+1 −1 Directory.Build.props
+3 −0 Sentry.sln.DotSettings
+2 −2 benchmarks/Sentry.Benchmarks/CaptureExceptionDuplicateDetectionBenchmarks.cs
+1 −1 samples/Sentry.Samples.Maui/App.xaml.cs
+1 −1 samples/Sentry.Samples.Maui/AppShell.xaml.cs
+1 −1 samples/Sentry.Samples.Maui/MainPage.xaml.cs
+2 −2 samples/Sentry.Samples.Maui/Platforms/Windows/App.xaml.cs
+1 −1 samples/Sentry.Samples.Serilog/Program.cs
+6 −1 src/Sentry.AspNet/HttpContextExtensions.cs
+1 −2 src/Sentry.AspNet/Internal/SystemWebRequestEventProcessor.cs
+5 −11 src/Sentry.AspNetCore/SentryMiddleware.cs
+1 −1 src/Sentry.AspNetCore/SentryTunnelMiddleware.cs
+6 −4 src/Sentry.DiagnosticSource/Internals/DiagnosticSource/SentrySqlListener.cs
+1 −4 src/Sentry.Google.Cloud.Functions/SentryStartup.cs
+1 −1 src/Sentry.Log4Net/SentryAppender.cs
+1 −1 src/Sentry.Maui/Internal/MauiNetworkStatusListener.cs
+2 −3 src/Sentry.Maui/Internal/SentryMauiInitializer.cs
+1 −1 src/Sentry.NLog/NLogDiagnosticLogger.cs
+5 −7 src/Sentry.Serilog/SentrySink.cs
+16 −5 src/Sentry/Envelopes/Envelope.cs
+2 −2 src/Sentry/Envelopes/EnvelopeItem.cs
+2 −2 src/Sentry/Envelopes/StreamSerializable.cs
+4 −7 src/Sentry/Http/HttpTransportBase.cs
+1 −3 src/Sentry/Internal/Extensions/CollectionsExtensions.cs
+2 −2 src/Sentry/Internal/Extensions/JsonExtensions.cs
+3 −0 src/Sentry/Internal/Extensions/StreamExtensions.cs
+58 −0 src/Sentry/Internal/FileSystem.cs
+28 −33 src/Sentry/Internal/Http/CachingTransport.cs
+26 −0 src/Sentry/Internal/IFileSystem.cs
+1 −1 src/Sentry/Internal/MainSentryEventProcessor.cs
+10 −5 src/Sentry/Internal/MonoSentryStackTraceFactory.cs
+1 −1 src/Sentry/Internal/SentryScopeManager.cs
+4 −4 src/Sentry/Internal/Signal.cs
+2 −2 src/Sentry/PlatformAbstractions/FrameworkInfo.NetFx.cs
+0 −1 src/Sentry/PlatformAbstractions/RuntimeInfo.cs
+2 −1 src/Sentry/Scope.cs
+8 −2 src/Sentry/SentryOptions.cs
+10 −4 test/Directory.Build.props
+6 −11 test/Sentry.AspNet.Tests/Internal/SentryScopeManagerTests.cs
+2 −2 test/Sentry.AspNetCore.Grpc.Tests/Sentry.AspNetCore.Grpc.Tests.csproj
+8 −1 test/Sentry.AspNetCore.Tests/Tunnel/IntegrationsTests.cs
+7 −7 test/Sentry.DiagnosticSource.IntegrationTests/Sentry.DiagnosticSource.IntegrationTests.csproj
+15 −15 test/Sentry.DiagnosticSource.Tests/Sentry.DiagnosticSource.Tests.csproj
+1 −1 test/Sentry.EntityFramework.Tests/DbInterceptionIntegrationTests.cs
+10 −10 test/Sentry.EntityFramework.Tests/SentryCommandInterceptorTests.cs
+2 −2 test/Sentry.EntityFramework.Tests/SentryQueryPerformanceListenerTests.cs
+1 −1 test/Sentry.Extensions.Logging.Tests/Sentry.Extensions.Logging.Tests.csproj
+5 −5 test/Sentry.Serilog.Tests/SentrySerilogSinkExtensionsTests.cs
+1 −1 test/Sentry.Serilog.Tests/SentrySinkTests.cs
+54 −0 test/Sentry.Testing/FakeFileSystem.cs
+1 −1 test/Sentry.Testing/HttpClientExtensions.cs
+3 −1 test/Sentry.Testing/MockClock.cs
+10 −8 test/Sentry.Testing/TempDirectory.cs
+6 −3 test/Sentry.Tests/GlobalSessionManagerTests.cs
+29 −10 test/Sentry.Tests/HubTests.cs
+10 −10 test/Sentry.Tests/Internals/DefaultSentryHttpClientFactoryTests.cs
+75 −26 test/Sentry.Tests/Internals/Http/CachingTransportTests.cs
+10 −9 test/Sentry.Tests/Internals/SentryStackTraceFactoryTests.cs
+4 −2 test/Sentry.Tests/Internals/ThreadsafeCounterDictionaryTests.cs
+7 −2 test/Sentry.Tests/Protocol/BaseScopeTests.cs
+28 −1 test/Sentry.Tests/Protocol/Envelopes/EnvelopeTests.cs
+16 −8 test/Sentry.Tests/Protocol/Exceptions/SentryStackFrameTests.cs
+6 −2 test/Sentry.Tests/Protocol/SentryEventTests.cs
+6 −2 test/Sentry.Tests/SentryClientTests.cs
+30 −22 test/Sentry.Tests/SentrySdkTests.cs
+9 −0 test/xunit.runner.windows.json

0 comments on commit faec941

Please sign in to comment.