Skip to content

Commit

Permalink
chore: update modules/sentry-cocoa to 8.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow authored Jan 5, 2024
1 parent 59b29fa commit b7f95c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/sentry-cocoa
Submodule sentry-cocoa updated 85 files
+7 −2 .github/workflows/benchmarking.yml
+8 −3 .github/workflows/build.yml
+5 −0 .github/workflows/codeql-analysis.yml
+5 −0 .github/workflows/lint.yml
+7 −2 .github/workflows/saucelabs-UI-tests.yml
+16 −11 .github/workflows/test.yml
+1 −1 .github/workflows/testflight.yml
+22 −1 CHANGELOG.md
+10 −10 Samples/iOS-Swift/iOS-Swift.xcodeproj/project.pbxproj
+1 −0 Samples/iOS-Swift/iOS-Swift/AppDelegate.swift
+3 −3 Samples/iOS-Swift/iOS-Swift/Base.lproj/Main.storyboard
+1 −1 Samples/iOS-Swift/iOS-Swift/TransactionsViewController.swift
+4 −1 Samples/iOS-Swift/iOS-Swift/ViewControllers/LoremIpsumViewController.swift
+7 −10 Samples/iOS-Swift/iOS-SwiftUITests/LaunchUITests.swift
+2 −2 Sentry.podspec
+20 −0 Sentry.xcodeproj/project.pbxproj
+1 −1 SentryPrivate.podspec
+2 −2 SentrySwiftUI.podspec
+2 −1 SentryTestUtils/TestCurrentDateProvider.swift
+16 −9 SentryTestUtils/TestDisplayLinkWrapper.swift
+1 −1 Sources/Configuration/Sentry.xcconfig
+1 −1 Sources/Configuration/SentryPrivate.xcconfig
+3 −3 Sources/Sentry/PrivateSentrySDKOnly.mm
+2 −0 Sources/Sentry/Public/SentryCrashExceptionApplication.h
+14 −2 Sources/Sentry/Public/SentryOptions.h
+1 −1 Sources/Sentry/Public/SentryScope.h
+3 −21 Sources/Sentry/SentryAppStartMeasurement.m
+36 −9 Sources/Sentry/SentryAppStartTracker.m
+3 −1 Sources/Sentry/SentryAppStartTrackingIntegration.m
+10 −4 Sources/Sentry/SentryBuildAppStartSpans.m
+25 −0 Sources/Sentry/SentryDelayedFrame.m
+208 −0 Sources/Sentry/SentryDelayedFramesTracker.m
+4 −1 Sources/Sentry/SentryDependencyContainer.m
+7 −5 Sources/Sentry/SentryFileManager.m
+66 −12 Sources/Sentry/SentryFramesTracker.m
+1 −1 Sources/Sentry/SentryMeta.m
+4 −0 Sources/Sentry/SentryOptions.m
+21 −0 Sources/Sentry/SentrySDK.m
+64 −1 Sources/Sentry/SentrySpan.m
+9 −5 Sources/Sentry/SentrySystemEventBreadcrumbs.m
+8 −2 Sources/Sentry/SentryTime.mm
+43 −43 Sources/Sentry/SentryTimeToDisplayTracker.m
+80 −48 Sources/Sentry/SentryTracer.m
+1 −5 Sources/Sentry/SentryUIEventTrackerTransactionMode.m
+2 −5 Sources/Sentry/SentryUIEventTrackingIntegration.m
+1 −1 Sources/Sentry/SentryUIViewControllerPerformanceTracker.m
+3 −3 Sources/Sentry/include/HybridPublic/PrivateSentrySDKOnly.h
+8 −13 Sources/Sentry/include/HybridPublic/SentryAppStartMeasurement.h
+4 −1 Sources/Sentry/include/SentryAppStartTracker.h
+22 −0 Sources/Sentry/include/SentryDelayedFrame.h
+63 −0 Sources/Sentry/include/SentryDelayedFramesTracker.h
+15 −2 Sources/Sentry/include/SentryFramesTracker.h
+1 −0 Sources/Sentry/include/SentrySDK+Private.h
+1 −0 Sources/Sentry/include/SentryScope+Private.h
+15 −2 Sources/Sentry/include/SentrySpan.h
+3 −0 Sources/Sentry/include/SentryTime.h
+1 −1 Sources/Sentry/include/SentryTimeToDisplayTracker.h
+2 −0 Sources/Sentry/include/SentryTracer.h
+0 −5 Sources/Sentry/include/SentryTracerConfiguration.h
+1 −4 Sources/Sentry/include/SentryUIEventTrackerTransactionMode.h
+1 −1 Tests/HybridSDKTest/HybridPod.podspec
+4 −3 Tests/SentryProfilerTests/SentryProfilerSwiftTests.swift
+21 −0 Tests/SentryTests/Helper/SentryTimeSwiftTests.swift
+15 −0 Tests/SentryTests/Integrations/Breadcrumbs/SentrySystemEventBreadcrumbsTest.swift
+49 −8 Tests/SentryTests/Integrations/Performance/AppStartTracking/SentryAppStartTrackerTests.swift
+13 −0 Tests/SentryTests/Integrations/Performance/AppStartTracking/SentryAppStartTrackingIntegrationTests.swift
+445 −16 Tests/SentryTests/Integrations/Performance/FramesTracking/SentryFramesTrackerTests.swift
+1 −0 Tests/SentryTests/Integrations/Performance/SentryPerformanceTrackingIntegrationTests.swift
+215 −131 Tests/SentryTests/Integrations/Performance/UIViewController/SentryTimeToDisplayTrackerTest.swift
+13 −4 ...s/SentryTests/Integrations/Performance/UIViewController/SentryUIViewControllerPerformanceTrackerTests.swift
+2 −1 Tests/SentryTests/Integrations/UIEvents/SentryUIEventTrackerTests.swift
+1 −1 Tests/SentryTests/PrivateSentrySDKOnlyTests.swift
+3 −2 Tests/SentryTests/Protocol/TestData.swift
+1 −1 Tests/SentryTests/SentryClientTests.swift
+5 −0 Tests/SentryTests/SentryOptionsTest.m
+18 −0 Tests/SentryTests/SentrySDKTests.swift
+108 −11 Tests/SentryTests/Transaction/SentrySpanTests.swift
+108 −62 Tests/SentryTests/Transaction/SentryTracerTests.swift
+13 −2 Tests/ThreadSanitizer.sup
+7 −45 develop-docs/README.md
+0 −42 develop-docs/auto-ui-performance-tracking.svg
+0 −20 develop-docs/auto-ui-performance-tracking.wsd
+0 −44 develop-docs/performance-api.svg
+0 −22 develop-docs/performance-api.wsd
+28 −0 scripts/create-cherry-pick-branch.sh

0 comments on commit b7f95c4

Please sign in to comment.