Skip to content

chore(deps): update Cocoa SDK to v7.19.0 #868

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 5, 2022
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 @@ -9,9 +9,9 @@
- Reduced automated screenshot attachment controls to a simple toggle ([#784](https://github.com/getsentry/sentry-unity/pull/784))
- Disable AutoSessionTracking on unknown platforms ([#840](https://github.com/getsentry/sentry-unity/pull/840))
- Support Android apps minified with Proguard ([#844](https://github.com/getsentry/sentry-unity/pull/844))
- Bump Cocoa SDK to v7.18.1 ([#802](https://github.com/getsentry/sentry-unity/pull/802), [#821](https://github.com/getsentry/sentry-unity/pull/821), [#835](https://github.com/getsentry/sentry-unity/pull/835), [#854](https://github.com/getsentry/sentry-unity/pull/854))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/master/CHANGELOG.md#7181)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.16.0...7.18.1)
- Bump Cocoa SDK to v7.19.0 ([#802](https://github.com/getsentry/sentry-unity/pull/802), [#821](https://github.com/getsentry/sentry-unity/pull/821), [#835](https://github.com/getsentry/sentry-unity/pull/835), [#854](https://github.com/getsentry/sentry-unity/pull/854), [#868](https://github.com/getsentry/sentry-unity/pull/868))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/master/CHANGELOG.md#7190)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.16.0...7.19.0)
- Bump .NET SDK to v3.19.0 ([#807](https://github.com/getsentry/sentry-unity/pull/807), [#860](https://github.com/getsentry/sentry-unity/pull/860))
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#3190)
- [diff](https://github.com/getsentry/sentry-dotnet/compare/3.17.0...3.19.0)
Expand Down
2 changes: 1 addition & 1 deletion modules/sentry-cocoa
Submodule sentry-cocoa updated 49 files
+13 −1 CHANGELOG.md
+4 −4 Samples/iOS-Swift/iOS-Swift.xcodeproj/project.pbxproj
+3 −0 Samples/iOS-Swift/iOS-Swift/AppDelegate.swift
+1 −1 Sentry.podspec
+6 −0 Sentry.xcodeproj/project.pbxproj
+5 −0 Sentry.xcodeproj/xcshareddata/xcschemes/Sentry.xcscheme
+1 −1 Sources/Configuration/Sentry.xcconfig
+14 −0 Sources/Sentry/Public/SentryOptions.h
+89 −25 Sources/Sentry/SentryANRTracker.m
+47 −31 Sources/Sentry/SentryANRTrackingIntegration.m
+37 −6 Sources/Sentry/SentryAppStartTracker.m
+1 −0 Sources/Sentry/SentryClient.m
+13 −0 Sources/Sentry/SentryCrashDefaultMachineContextWrapper.m
+13 −8 Sources/Sentry/SentryCrashStackEntryMapper.m
+20 −0 Sources/Sentry/SentryDependencyContainer.m
+1 −1 Sources/Sentry/SentryMeta.m
+12 −0 Sources/Sentry/SentryOptions.m
+27 −0 Sources/Sentry/SentryOutOfMemoryTrackingIntegration.m
+12 −1 Sources/Sentry/SentryProfiler.mm
+48 −7 Sources/Sentry/SentryStacktraceBuilder.m
+112 −4 Sources/Sentry/SentryThreadInspector.m
+10 −12 Sources/Sentry/include/SentryANRTracker.h
+0 −4 Sources/Sentry/include/SentryANRTrackingIntegration.h
+2 −1 Sources/Sentry/include/SentryClient+Private.h
+0 −4 Sources/Sentry/include/SentryCompiler.h
+2 −0 Sources/Sentry/include/SentryCrashMachineContextWrapper.h
+7 −0 Sources/Sentry/include/SentryCrashStackEntryMapper.h
+5 −2 Sources/Sentry/include/SentryDependencyContainer.h
+3 −1 Sources/Sentry/include/SentryOutOfMemoryTrackingIntegration.h
+14 −0 Sources/Sentry/include/SentryStacktraceBuilder.h
+9 −0 Sources/Sentry/include/SentryThreadInspector.h
+1 −1 Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_Deadlock.m
+2 −1 Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_MachException.c
+1 −1 Sources/SentryCrash/Recording/Monitors/SentryCrashMonitor_Signal.c
+18 −15 Sources/SentryCrash/Recording/Tools/SentryCrashStackCursor.h
+2 −0 Sources/SentryCrash/Recording/Tools/SentryCrashStackCursor_MachineContext.h
+3 −0 Tests/SentryTests/ClearTestState.swift
+75 −15 Tests/SentryTests/Integrations/ANR/SentryANRTrackerTests.swift
+77 −48 Tests/SentryTests/Integrations/ANR/SentryANRTrackingIntegrationTests.swift
+76 −0 Tests/SentryTests/Integrations/OutOfMemory/SentryOutOfMemoryIntegrationTests.swift
+31 −3 Tests/SentryTests/Integrations/Performance/AppStartTracking/SentryAppStartTrackerTests.swift
+16 −0 Tests/SentryTests/Profiling/SentryProfilerTests.mm
+85 −4 Tests/SentryTests/SentryCrash/SentryThreadInspectorTests.swift
+7 −1 Tests/SentryTests/SentryCrash/TestThreadInspector.swift
+3 −2 Tests/SentryTests/SentryHubTests.swift
+15 −0 Tests/SentryTests/SentryOptionsTest.m
+92 −0 Tests/SentryTests/SentrySDKIntegrationTestsBase.swift
+0 −73 Tests/SentryTests/SentrySDKTests.swift
+1 −1 Tests/SentryTests/SentryTests-Bridging-Header.h