Skip to content

Commit

Permalink
chore: update modules/sentry-cocoa to 8.34.0
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow authored and github-actions[bot] committed Aug 15, 2024
1 parent b0fc43e commit 2707794
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@

- Unfinished spans are now correctly stored and retrieved by the CachingTransport ([#3533](https://github.com/getsentry/sentry-dotnet/pull/3533))

### Dependencies

- Bump Cocoa SDK from v8.33.0 to v8.34.0 ([#3535](https://github.com/getsentry/sentry-dotnet/pull/3535))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8340)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.33.0...8.34.0)

## 4.10.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion modules/sentry-cocoa
Submodule sentry-cocoa updated 72 files
+1 −1 .github/last-release-runid
+8 −0 .github/workflows/lint.yml
+5 −0 .pre-commit-config.yaml
+14 −0 CHANGELOG.md
+4 −4 Package.swift
+6 −0 Samples/iOS-ObjectiveC/iOS-ObjectiveC/AppDelegate.m
+1 −1 Samples/iOS-Swift/iOS-Swift-UITests/ProfilingUITests.swift
+10 −10 Samples/iOS-Swift/iOS-Swift.xcodeproj/project.pbxproj
+1 −1 Samples/iOS-Swift/iOS-Swift.xcodeproj/xcshareddata/xcschemes/iOS-Swift.xcscheme
+5 −5 Samples/iOS-Swift/iOS-Swift/Base.lproj/Main.storyboard
+1 −1 Samples/iOS-Swift/iOS-Swift/ExtraViewController.swift
+0 −37 Samples/iOS-Swift/iOS-Swift/Tools/ANRs.swift
+34 −0 Samples/iOS-Swift/iOS-Swift/Tools/TriggerAppHang.swift
+3 −3 Samples/iOS-Swift/iOS-Swift/TransactionsViewController.swift
+1 −1 Sentry.podspec
+36 −0 Sentry.xcodeproj/project.pbxproj
+1 −1 SentryPrivate.podspec
+2 −2 SentrySwiftUI.podspec
+5 −0 SentryTestUtils/TestDisplayLinkWrapper.swift
+1 −1 Sources/Configuration/SDK.xcconfig
+3 −0 Sources/Sentry/Profiling/SentryProfiledTracerConcurrency.mm
+15 −3 Sources/Sentry/Profiling/SentryProfilerState.mm
+210 −0 Sources/Sentry/SentryANRTrackerV2.m
+130 −0 Sources/Sentry/SentryANRTrackingIntegrationV2.m
+9 −1 Sources/Sentry/SentryBacktrace.cpp
+12 −0 Sources/Sentry/SentryBaseIntegration.m
+50 −15 Sources/Sentry/SentryDelayedFramesTracker.m
+19 −0 Sources/Sentry/SentryDependencyContainer.m
+8 −16 Sources/Sentry/SentryFramesTracker.m
+5 −2 Sources/Sentry/SentryHttpTransport.m
+1 −1 Sources/Sentry/SentryMeta.m
+2 −0 Sources/Sentry/SentryNSURLRequest.m
+4 −0 Sources/Sentry/SentryOptions.m
+13 −0 Sources/Sentry/SentryScreenFrames.m
+3 −3 Sources/Sentry/SentrySerialization.m
+17 −2 Sources/Sentry/SentrySessionReplayIntegration.m
+2 −1 Sources/Sentry/SentrySpan.m
+2 −1 Sources/Sentry/SentryTracer.m
+3 −0 Sources/Sentry/include/HybridPublic/SentryDependencyContainer.h
+3 −6 Sources/Sentry/include/HybridPublic/SentryFramesTracker.h
+34 −0 Sources/Sentry/include/SentryANRTrackerV2.h
+18 −0 Sources/Sentry/include/SentryANRTrackingIntegrationV2.h
+1 −0 Sources/Sentry/include/SentryBaseIntegration.h
+10 −10 Sources/Sentry/include/SentryDelayedFramesTracker.h
+2 −0 Sources/Sentry/include/SentryOptions+Private.h
+13 −0 Sources/Swift/Integrations/FramesTracking/SentryFramesDelayResult.swift
+1 −0 Sources/Swift/Integrations/SessionReplay/SentryReplayOptions.swift
+36 −17 Sources/Swift/Integrations/SessionReplay/SentrySessionReplay.swift
+9 −2 Sources/Swift/Tools/UIRedactBuilder.swift
+1 −1 Tests/HybridSDKTest/HybridPod.podspec
+2 −0 Tests/SentryTests/Helper/SentryTestThreadWrapper.swift
+239 −0 Tests/SentryTests/Integrations/ANR/SentryANRTrackerV2Tests.swift
+229 −0 Tests/SentryTests/Integrations/ANR/SentryANRTrackingIntegrationV2Tests.swift
+60 −17 Tests/SentryTests/Integrations/Performance/FramesTracking/SentryFramesTrackerTests.swift
+10 −0 Tests/SentryTests/Integrations/SessionReplay/SentrySessionReplayIntegrationTests.swift
+64 −1 Tests/SentryTests/Integrations/SessionReplay/SentrySessionReplayTests.swift
+5 −0 Tests/SentryTests/PrivateSentrySDKOnlyTests.swift
+5 −0 Tests/SentryTests/SentryOptionsTest.m
+2 −0 Tests/SentryTests/SentryTests-Bridging-Header.h
+15 −6 Tests/SentryTests/UIRedactBuilderTests.swift
+7 −7 scripts/build-xcframework.sh
+3 −4 scripts/bump.sh
+6 −6 scripts/check-uikit-linkage.sh
+1 −1 scripts/ci-select-xcode.sh
+2 −2 scripts/commit-formatted-code.sh
+1 −1 scripts/create-simulator.sh
+1 −1 scripts/test-alamofire.sh
+1 −1 scripts/test-homekit.sh
+1 −1 scripts/update-package-sha.sh
+1 −1 scripts/upload-dsyms-with-xcode-build-phase.sh
+1 −1 scripts/xcode-slowest-tests.sh
+8 −8 scripts/xcode-test.sh

0 comments on commit 2707794

Please sign in to comment.