Skip to content

Commit

Permalink
chore: update modules/sentry-cocoa to 7.25.0 (#967)
Browse files Browse the repository at this point in the history
Co-authored-by: GitHub <noreply@github.com>
  • Loading branch information
github-actions[bot] and web-flow authored Sep 14, 2022
1 parent c0ec915 commit bfa574f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## Unreleased

### Dependencies

- Bump Cocoa SDK from v7.24.1 to v7.25.0 ([#967](https://github.com/getsentry/sentry-unity/pull/967))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/master/CHANGELOG.md#7250)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.24.1...7.25.0)

## 0.23.0

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion modules/sentry-cocoa
Submodule sentry-cocoa updated 69 files
+2 −2 .github/workflows/benchmarking.yml
+22 −5 .github/workflows/build.yml
+3 −3 .github/workflows/lint.yml
+11 −6 .github/workflows/saucelabs-UI-tests.yml
+55 −17 .github/workflows/test.yml
+1 −1 .github/workflows/testflight.yml
+1 −1 .sauce/benchmarking-config.yml
+13 −0 CHANGELOG.md
+13 −2 CONTRIBUTING.md
+2 −4 Package.swift
+7 −0 Samples/SPM-Dynamic/.gitignore
+23 −0 Samples/SPM-Dynamic/Package.swift
+27 −0 Samples/SPM-Dynamic/Sources/SPM-Dynamic/main.swift
+4 −4 Samples/iOS-Swift/iOS-Swift.xcodeproj/project.pbxproj
+1 −1 Sentry.podspec
+8 −4 Sentry.xcodeproj/project.pbxproj
+1 −1 Sources/Configuration/Sentry.xcconfig
+15 −0 Sources/Sentry/PrivateSentrySDKOnly.m
+15 −0 Sources/Sentry/Public/PrivateSentrySDKOnly.h
+10 −8 Sources/Sentry/Public/SentryDefines.h
+14 −1 Sources/Sentry/Public/SentrySampleDecision.h
+27 −1 Sources/Sentry/Public/SentrySpanStatus.h
+2 −1 Sources/Sentry/SentryBreadcrumb.m
+10 −1 Sources/Sentry/SentryClient.m
+2 −1 Sources/Sentry/SentryCrashScopeObserver.m
+70 −54 Sources/Sentry/SentryDataCategoryMapper.m
+2 −2 Sources/Sentry/SentryDefaultRateLimits.m
+23 −28 Sources/Sentry/SentryDiscardReasonMapper.m
+4 −3 Sources/Sentry/SentryDiscardedEvent.m
+2 −2 Sources/Sentry/SentryEnvelopeRateLimit.m
+2 −1 Sources/Sentry/SentryEvent.m
+2 −2 Sources/Sentry/SentryFileManager.m
+3 −4 Sources/Sentry/SentryHttpTransport.m
+32 −9 Sources/Sentry/SentryLevelMapper.m
+3 −2 Sources/Sentry/SentryLog.m
+1 −1 Sources/Sentry/SentryMeta.m
+5 −2 Sources/Sentry/SentryOptions.m
+4 −35 Sources/Sentry/SentryRateLimitParser.m
+18 −0 Sources/Sentry/SentrySampleDecision.m
+2 −1 Sources/Sentry/SentryScope.m
+1 −1 Sources/Sentry/SentrySerialization.m
+8 −8 Sources/Sentry/SentrySpan.m
+2 −2 Sources/Sentry/SentrySpanContext.m
+63 −0 Sources/Sentry/SentrySpanStatus.m
+4 −4 Sources/Sentry/SentryTracer.m
+60 −15 Sources/Sentry/SentryUIViewControllerSwizzling.m
+14 −11 Sources/Sentry/include/SentryDataCategory.h
+13 −10 Sources/Sentry/include/SentryDataCategoryMapper.h
+4 −2 Sources/Sentry/include/SentryDiscardReason.h
+8 −4 Sources/Sentry/include/SentryDiscardReasonMapper.h
+8 −3 Sources/Sentry/include/SentryLevelMapper.h
+3 −4 Sources/Sentry/include/SentrySpan.h
+1 −1 Sources/SentryCrash/Recording/SentryCrashReportStore.c
+0 −15 Tests/SentryTests/Helper/SentryLevelMapperTests.swift
+2 −0 Tests/SentryTests/Integrations/Performance/UIViewController/SentryUIViewControllerSwizzling+Test.h
+35 −0 Tests/SentryTests/Integrations/Performance/UIViewController/SentryUIViewControllerSwizzlingTests.swift
+37 −35 Tests/SentryTests/Networking/SentryDataCategoryMapperTests.swift
+8 −10 Tests/SentryTests/Networking/SentryDiscardReasonMapperTests.swift
+1 −1 Tests/SentryTests/Performance/SentryTracerObjCTests.m
+39 −0 Tests/SentryTests/PrivateSentrySDKOnlyTests.swift
+38 −0 Tests/SentryTests/SentryClientTests.swift
+20 −0 Tests/SentryTests/SentryCrash/SentryCrashReportStore_Tests.m
+1 −1 Tests/SentryTests/SentryHubTests.swift
+8 −2 Tests/SentryTests/SentryOptionsTest.m
+19 −6 Tests/SentryTests/SentryTests.m
+6 −0 Tests/SentryTests/Transaction/SentrySpanContextTests.swift
+28 −7 Tests/SentryTests/Transaction/SentrySpanTests.swift
+3 −2 scripts/ci-select-xcode.sh
+1 −1 scripts/xcode-test.sh

0 comments on commit bfa574f

Please sign in to comment.