Skip to content

Commit

Permalink
bump submodules (#407)
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-garcia authored Nov 8, 2021
1 parent 5c5e07d commit f9ae034
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
- Fixed missing context data when initializing SDK programmatically ([#376](https://github.com/getsentry/sentry-unity/pull/376))
- Fixed CaptureInEditor flag when initializing SDK programmatically ([#370](https://github.com/getsentry/sentry-unity/pull/370))
- Preventing numeric options to be set negative in the editor window ([#364](https://github.com/getsentry/sentry-unity/pull/364))
- Bump Sentry .NET SDK 3.10.0 ([#328](https://github.com/getsentry/sentry-unity/pull/383))
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/3.10.0/CHANGELOG.md)
- [diff](https://github.com/getsentry/sentry-dotnet/compare/3.9.3...3.10.0)
- Bump Sentry Cocoa SDK 7.4.7 ([#328](https://github.com/getsentry/sentry-unity/pull/383))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/7.4.7/CHANGELOG.md)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.3.0...7.4.7)
- Bump Sentry Android SDK 5.2.4 ([#359](https://github.com/getsentry/sentry-unity/pull/383))
- [changelog](https://github.com/getsentry/sentry-java/blob/5.2.4/CHANGELOG.md)
- [diff](https://github.com/getsentry/sentry-java/compare/5.2.1...5.2.4)
- Bump Sentry .NET SDK 3.11.1 ([#407](https://github.com/getsentry/sentry-unity/pull/407))
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/3.11.1/CHANGELOG.md)
- [diff](https://github.com/getsentry/sentry-dotnet/compare/3.9.3...3.11.1)
- Bump Sentry Cocoa SDK 7.5.2 ([#407](https://github.com/getsentry/sentry-unity/pull/407))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/7.5.2/CHANGELOG.md)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.3.0...7.5.2)
- Bump Sentry Android SDK 5.3.0 ([#407](https://github.com/getsentry/sentry-unity/pull/407))
- [changelog](https://github.com/getsentry/sentry-java/blob/5.3.0/CHANGELOG.md)
- [diff](https://github.com/getsentry/sentry-java/compare/5.2.1...5.3.0)

## 0.6.0

Expand Down
2 changes: 1 addition & 1 deletion src/sentry-cocoa
Submodule sentry-cocoa updated 77 files
+47 −0 .github/workflows/stale.yml
+0 −4 .github/workflows/testflight.yml
+22 −0 CHANGELOG.md
+10 −10 Gemfile.lock
+2 −2 Samples/iOS-Swift/iOS-Swift.xcodeproj/project.pbxproj
+1 −1 Sentry.podspec
+284 −78 Sentry.xcodeproj/project.pbxproj
+1 −1 Sources/Configuration/Sentry.xcconfig
+10 −0 Sources/Sentry/Public/SentryOptions.h
+25 −12 Sources/Sentry/SentryAutoBreadcrumbTrackingIntegration.m
+5 −1 Sources/Sentry/SentryBreadcrumbTracker.m
+9 −0 Sources/Sentry/SentryDefaultObjCRuntimeWrapper.h
+12 −0 Sources/Sentry/SentryDefaultObjCRuntimeWrapper.m
+9 −10 Sources/Sentry/SentryDispatchQueueWrapper.m
+0 −2 Sources/Sentry/SentryFramesTracker.m
+0 −2 Sources/Sentry/SentryFramesTrackingIntegration.m
+1 −1 Sources/Sentry/SentryMeta.m
+0 −4 Sources/Sentry/SentryNetworkTracker.m
+7 −0 Sources/Sentry/SentryNetworkTrackingIntegration.m
+7 −0 Sources/Sentry/SentryObjCRuntimeWrapper.h
+68 −49 Sources/Sentry/SentryOptions.m
+9 −4 Sources/Sentry/SentryPerformanceTracker.m
+7 −0 Sources/Sentry/SentryPerformanceTrackingIntegration.m
+0 −1 Sources/Sentry/SentryScreenFrames.m
+29 −0 Sources/Sentry/SentrySubClassFinder.h
+103 −0 Sources/Sentry/SentrySubClassFinder.m
+1 −1 Sources/Sentry/SentryTracer.m
+1 −2 Sources/Sentry/SentryUIViewControllerPerformanceTracker.m
+104 −86 Sources/Sentry/SentryUIViewControllerSwizziling.m
+1 −1 Sources/Sentry/include/SentryBreadcrumbTracker.h
+0 −1 Sources/Sentry/include/SentryDisplayLinkWrapper.m
+0 −1 Tests/SentryTests/ClearTestState.swift
+13 −0 Tests/SentryTests/Helper/SentryTestObjCRuntimeWrapper.h
+38 −0 Tests/SentryTests/Helper/SentryTestObjCRuntimeWrapper.m
+16 −0 Tests/SentryTests/Integrations/Breadcrumbs/SentryAutoBreadcrumbTrackingIntegration+Test.h
+54 −0 Tests/SentryTests/Integrations/Breadcrumbs/SentryAutoBreadcrumbTrackingIntegrationTests.swift
+42 −0 Tests/SentryTests/Integrations/Breadcrumbs/SentryBreadcrumbTrackerTests.swift
+0 −0 Tests/SentryTests/Integrations/Breadcrumbs/SentrySystemEventsBreadcrumbsTest.swift
+0 −0 Tests/SentryTests/Integrations/OutOfMemory/SentryOutOfMemoryTrackerTests.swift
+0 −0 Tests/SentryTests/Integrations/Performance/AppStartTracking/SentryAppStartTrackerTests.swift
+0 −0 Tests/SentryTests/Integrations/Performance/AppStartTracking/SentryAppStartTrackingIntegrationTests.swift
+0 −0 Tests/SentryTests/Integrations/Performance/FramesTracking/SentryFramesTracker+TestInit.h
+0 −0 Tests/SentryTests/Integrations/Performance/FramesTracking/SentryFramesTrackerTests.swift
+0 −0 Tests/SentryTests/Integrations/Performance/FramesTracking/SentryFramesTrackingIntegrationTests.swift
+0 −0 Tests/SentryTests/Integrations/Performance/FramesTracking/TestDisplayLinkWrapper.swift
+8 −2 Tests/SentryTests/Integrations/Performance/Network/SentryNetworkTrackerIntegrationTests.swift
+0 −0 Tests/SentryTests/Integrations/Performance/Network/SentryNetworkTrackerTests.swift
+0 −0 Tests/SentryTests/Integrations/Performance/Network/URLSessionTaskMock.h
+0 −0 Tests/SentryTests/Integrations/Performance/Network/URLSessionTaskMock.m
+22 −0 Tests/SentryTests/Integrations/Performance/SentryInitializeForGettingSubclassesNotCalled.h
+22 −0 Tests/SentryTests/Integrations/Performance/SentryInitializeForGettingSubclassesNotCalled.m
+11 −1 Tests/SentryTests/Integrations/Performance/SentryPerformanceTrackerTests.swift
+46 −0 Tests/SentryTests/Integrations/Performance/SentryPerformanceTrackingIntegrationTests.swift
+108 −0 Tests/SentryTests/Integrations/Performance/SentrySubClassFinderTests.swift
+0 −0 Tests/SentryTests/Integrations/Performance/SwizzlingCallTests.swift
+1 −1 ...s/SentryTests/Integrations/Performance/UIViewController/SentryUIViewControllerPerformanceTrackerTests.swift
+3 −3 Tests/SentryTests/Integrations/Performance/UIViewController/SentryUIViewControllerSwizziling+Test.h
+164 −0 Tests/SentryTests/Integrations/Performance/UIViewController/SentryUIViewControllerSwizzlingTests.swift
+0 −0 Tests/SentryTests/Integrations/SentryCrash/SentryCrashIntegration+TestInit.h
+0 −0 Tests/SentryTests/Integrations/SentryCrash/SentryCrashIntegrationTests.swift
+0 −0 Tests/SentryTests/Integrations/SentryCrash/SentryCrashReportTests.swift
+0 −0 Tests/SentryTests/Integrations/SentryCrash/SentryCrashScopeObserverTests.swift
+0 −0 Tests/SentryTests/Integrations/SentryCrash/SentryTestIntegration.h
+0 −0 Tests/SentryTests/Integrations/SentryCrash/SentryTestIntegration.m
+0 −24 Tests/SentryTests/Integrations/SentryPerformanceTrackingIntegrationTests.swift
+0 −123 Tests/SentryTests/Integrations/SentryUIViewControllerSwizzlingTests.swift
+0 −0 Tests/SentryTests/Integrations/Session/SentrySessionGeneratorTests.swift
+0 −0 Tests/SentryTests/Integrations/Session/SentrySessionTrackerTests.swift
+6 −0 Tests/SentryTests/Performance/SentryTracerTests.swift
+7 −0 Tests/SentryTests/SentryCrash/SentryCrashReportStore_Tests.m
+113 −15 Tests/SentryTests/SentryOptionsTest.m
+9 −0 Tests/SentryTests/SentryTests-Bridging-Header.h
+14 −0 Tests/SentryTests/TestUtils/SentryClassRegistrator.h
+14 −0 Tests/SentryTests/TestUtils/SentryClassRegistrator.m
+9 −0 Tests/SentryTests/Transaction/TestSentrySpan.h
+62 −0 Tests/SentryTests/Transaction/TestSentrySpan.m
+7 −1 fastlane/Fastfile
2 changes: 1 addition & 1 deletion src/sentry-dotnet
Submodule sentry-dotnet updated 70 files
+3 −0 .editorconfig
+20 −0 CHANGELOG.md
+1 −1 Directory.Build.props
+1 −1 benchmarks/Sentry.Benchmarks/Sentry.Benchmarks.csproj
+1 −1 modules/Ben.Demystifier
+2 −2 samples/Sentry.Samples.AspNetCore.Blazor.Wasm/Sentry.Samples.AspNetCore.Blazor.Wasm.csproj
+3 −3 samples/Sentry.Samples.AspNetCore.Grpc/Sentry.Samples.AspNetCore.Grpc.csproj
+2 −2 samples/Sentry.Samples.Aws.Lambda.AspNetCoreServer/Sentry.Samples.Aws.Lambda.AspNetCoreServer.csproj
+2 −1 samples/Sentry.Samples.Google.Cloud.Functions/appsettings.json
+5 −0 src/CodeAnalysis.ruleset
+2 −1 src/Directory.Build.props
+2 −2 src/Sentry.AspNetCore.Grpc/Sentry.AspNetCore.Grpc.csproj
+28 −0 src/Sentry.AspNetCore/AspNetCoreExceptionProcessor.cs
+1 −0 src/Sentry.AspNetCore/Extensions/DependencyInjection/ServiceCollectionExtensions.cs
+8 −2 src/Sentry.AspNetCore/Extensions/HttpContextExtensions.cs
+7 −0 src/Sentry.AspNetCore/ISentryRouteName.cs
+13 −6 src/Sentry.AspNetCore/SentryMiddleware.cs
+5 −0 src/Sentry.DiagnosticSource/Internals/DiagnosticSource/SentrySqlListener.cs
+1 −0 src/Sentry.Extensions.Logging/Properties/AssemblyInfo.cs
+52 −0 src/Sentry.Google.Cloud.Functions/SentryStartup.cs
+16 −6 src/Sentry.Tunnel/SentryTunnelMiddleware.cs
+16 −8 src/Sentry/Envelopes/Envelope.cs
+25 −15 src/Sentry/Envelopes/EnvelopeItem.cs
+11 −3 src/Sentry/Envelopes/JsonSerializable.cs
+9 −0 src/Sentry/GlobalSessionManager.cs
+9 −5 src/Sentry/Internal/Extensions/HttpClientExtensions.cs
+1 −1 src/Sentry/Internal/Extensions/JsonExtensions.cs
+32 −22 src/Sentry/Internal/Http/CachingTransport.cs
+5 −3 src/Sentry/Internal/Http/GzipBufferedRequestBodyHandler.cs
+11 −7 src/Sentry/Internal/Http/HttpTransport.cs
+0 −1 src/Sentry/Internal/Hub.cs
+1 −1 src/Sentry/Internal/ReleaseLocator.cs
+9 −5 src/Sentry/Internal/SerializableExtensions.cs
+1 −1 src/Sentry/Internal/StackFrameData.cs
+2 −0 src/Sentry/Properties/AssemblyInfo.cs
+3 −3 test/Directory.Build.props
+3 −3 test/Sentry.AspNetCore.Grpc.Tests/Sentry.AspNetCore.Grpc.Tests.csproj
+32 −0 test/Sentry.AspNetCore.Tests/Extensions/HttpContextExtensionsTests.cs
+3 −0 test/Sentry.AspNetCore.Tests/MiddlewareLoggerIntegration.cs
+2 −2 test/Sentry.AspNetCore.Tests/ScopeExtensionsTests.cs
+1 −1 test/Sentry.AspNetCore.Tests/Sentry.AspNetCore.Tests.csproj
+95 −0 test/Sentry.AspNetCore.Tests/SentryMiddlewareTests.cs
+1 −1 test/Sentry.DiagnosticSource.Tests/Integration/SQLite/Database.cs
+3 −3 test/Sentry.DiagnosticSource.Tests/Sentry.DiagnosticSource.Tests.csproj
+13 −13 test/Sentry.DiagnosticSource.Tests/SentrySqlListenerTests.cs
+1 −1 test/Sentry.EntityFramework.Tests/ErrorProcessorTests.cs
+1 −1 test/Sentry.EntityFramework.Tests/Sentry.EntityFramework.Tests.csproj
+9 −9 test/Sentry.EntityFramework.Tests/SentryCommandInterceptorTests.cs
+3 −3 test/Sentry.Extensions.Logging.EfCore.Tests/Sentry.Extensions.Logging.EfCore.Tests.csproj
+1 −0 test/Sentry.Google.Cloud.Functions.Tests/ApiApprovalTests.Run.DotNet3_1.verified.txt
+1 −0 test/Sentry.Google.Cloud.Functions.Tests/ApiApprovalTests.Run.DotNet5_0.verified.txt
+35 −0 test/Sentry.Google.Cloud.Functions.Tests/SentryStartupTests.cs
+1 −1 test/Sentry.NLog.Tests/SentryTargetTests.cs
+32 −0 test/Sentry.Serilog.Tests/AspNetCoreIntegrationTests.cs
+63 −0 test/Sentry.Serilog.Tests/AspNetSentrySdkTestFixture.cs
+5 −0 test/Sentry.Serilog.Tests/Sentry.Serilog.Tests.csproj
+13 −0 test/Sentry.Serilog.Tests/SentrySdkCollection.cs
+16 −0 test/Sentry.Serilog.Tests/Utils/Extensions/DependencyContainerExtensions.cs
+43 −0 test/Sentry.Serilog.Tests/Utils/FakeSentryServer.cs
+1 −0 test/Sentry.Testing/ApiExtensions.cs
+1 −1 test/Sentry.Tests/Protocol/Context/AppTests.cs
+1 −1 test/Sentry.Tests/Protocol/Context/BrowserTests.cs
+1 −1 test/Sentry.Tests/Protocol/Context/GpuTests.cs
+1 −1 test/Sentry.Tests/Protocol/Context/OperatingSystemTests.cs
+1 −1 test/Sentry.Tests/Protocol/RequestTests.cs
+2 −2 test/Sentry.Tests/Protocol/ScopeExtensionsTests.cs
+1 −1 test/Sentry.Tests/Protocol/UserTests.cs
+7 −7 test/Sentry.Tests/ScopeTests.cs
+3 −3 test/Sentry.Tests/Sentry.Tests.csproj
+1 −1 test/Sentry.Tests/SpanTracerTests.cs
2 changes: 1 addition & 1 deletion src/sentry-java
Submodule sentry-java updated 129 files

0 comments on commit f9ae034

Please sign in to comment.