Skip to content
Open
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 @@ -18,9 +18,9 @@

### Dependencies

- Bump Cocoa SDK from v9.7.0 to v9.8.0 ([#2596](https://github.com/getsentry/sentry-unity/pull/2596))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#980)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/9.7.0...9.8.0)
- Bump Cocoa SDK from v9.7.0 to v9.9.0 ([#2596](https://github.com/getsentry/sentry-unity/pull/2596), [#2628](https://github.com/getsentry/sentry-unity/pull/2628))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#990)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/9.7.0...9.9.0)
- Bump Native SDK from v0.13.2 to v0.13.5 ([#2597](https://github.com/getsentry/sentry-unity/pull/2597), [#2612](https://github.com/getsentry/sentry-unity/pull/2612), [#2631](https://github.com/getsentry/sentry-unity/pull/2631))
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#0135)
- [diff](https://github.com/getsentry/sentry-native/compare/0.13.2...0.13.5)
Expand Down
2 changes: 1 addition & 1 deletion modules/sentry-cocoa
Submodule sentry-cocoa updated 76 files
+1 −1 .github/actions/capture-screenshot/action.yml
+1 −1 .github/last-release-runid
+2 −2 .github/workflows/analyze-language-trends.yml
+3 −3 .github/workflows/assemble-xcframework-variant.yml
+1 −1 .github/workflows/auto-update-tools.yml
+4 −4 .github/workflows/benchmarking.yml
+2 −2 .github/workflows/build-xcframework-variant-slices.yml
+4 −4 .github/workflows/build.yml
+1 −1 .github/workflows/changelog-preview.yml
+2 −2 .github/workflows/changes-in-high-risk-code.yml
+2 −2 .github/workflows/codeql-analysis.yml
+0 −118 .github/workflows/create-issue-for-unreferenced-pr.yml
+1 −1 .github/workflows/danger.yml
+2 −2 .github/workflows/integration-test.yml
+1 −1 .github/workflows/lint-cocoapods-specs.yml
+1 −1 .github/workflows/lint-dprint-formatting.yml
+2 −2 .github/workflows/objc-conversion-analysis.yml
+1 −1 .github/workflows/ready-to-merge-workflow.yml
+1 −1 .github/workflows/release-comment-issues.yml
+2 −2 .github/workflows/release-upload-xcframework.yml
+14 −14 .github/workflows/release.yml
+1 −1 .github/workflows/size-analysis.yml
+3 −3 .github/workflows/test-3rd-party-integrations.yml
+1 −1 .github/workflows/test-cross-platform.yml
+8 −8 .github/workflows/test.yml
+2 −2 .github/workflows/testflight.yml
+5 −5 .github/workflows/ui-tests-common.yml
+2 −2 .github/workflows/ui-tests-critical.yml
+8 −7 .github/workflows/unit-test-common.yml
+16 −0 .github/workflows/validate-pr.yml
+3 −0 .gitignore
+1 −1 3rd-party-integrations/SentryCocoaLumberjack/Package.swift
+1 −1 3rd-party-integrations/SentryPulse/Package.swift
+1 −1 3rd-party-integrations/SentrySwiftLog/Package.swift
+1 −1 3rd-party-integrations/SentrySwiftyBeaver/Package.swift
+25 −1 CHANGELOG.md
+5 −8 Gemfile.lock
+10 −10 Package.swift
+10 −10 Package@swift-6.1.swift
+10 −4 Samples/SentrySampleShared/SentrySampleShared/SentrySDKOverrides.swift
+1 −0 Samples/SentrySampleShared/SentrySampleShared/SentrySDKWrapper.swift
+1 −1 Sentry.podspec
+2 −2 SentrySwiftUI.podspec
+22 −0 SentryTestUtils/Sources/TestClient.swift
+6 −0 SentryTestUtils/Sources/TestSentryDispatchQueueWrapper.swift
+1 −1 Sources/Configuration/SDK.xcconfig
+1 −1 Sources/Configuration/SentrySwiftUI.xcconfig
+1 −1 Sources/Configuration/Versioning.xcconfig
+33 −1 Sources/Sentry/SentryClient.m
+3 −2 Sources/Sentry/SentryEvent.m
+35 −0 Sources/Sentry/SentryHub.m
+1 −1 Sources/Sentry/SentryMeta.m
+2 −2 Sources/Sentry/SentryScope.m
+15 −0 Sources/Sentry/include/SentryClient+Private.h
+6 −1 Sources/Sentry/include/SentryEvent+Private.h
+12 −0 Sources/Sentry/include/SentryHub+Private.h
+19 −6 Sources/Swift/Core/Tools/ViewCapture/SentryUIRedactBuilder.swift
+52 −4 Sources/Swift/Helper/SentrySDK.swift
+35 −17 Sources/Swift/Integrations/Breadcrumbs/SentryBreadcrumbTracker.swift
+61 −37 Sources/Swift/Integrations/Session/SessionTracker.swift
+7 −0 Sources/Swift/Options.swift
+3 −1 Sources/Swift/SentryDependencyContainer.swift
+2 −1 Tests/SentryProfilerTests/SentryProfilingPublicAPITests.swift
+139 −1 Tests/SentryTests/Integrations/Breadcrumbs/SentryBreadcrumbTrackerTests.swift
+4 −1 Tests/SentryTests/Integrations/Session/SentrySessionTrackerTests.swift
+49 −1 Tests/SentryTests/Integrations/SessionReplay/SentrySRDefaultBreadcrumbConverterTests.swift
+49 −9 Tests/SentryTests/OptionsInSyncWithDocs/SentryOptionsDocumentationSyncTests.swift
+133 −0 Tests/SentryTests/SentryClientTests.swift
+6 −2 Tests/SentryTests/SentryCrash/TestThreadInspector.swift
+34 −1 Tests/SentryTests/SentryHubTests.swift
+40 −0 Tests/SentryTests/SentrySDKTests.swift
+146 −0 Tests/SentryTests/ViewCapture/SentryUIRedactBuilderTests+Common.swift
+678 −0 develop-docs/SENTRYCRASH.md
+269 −0 develop-docs/SENTRYCRASH_IMPROVEMENT_PLAN.md
+1 −1 scripts/.clang-format-version
+224 −0 sdk_api.json
Loading