Skip to content

Commit

Permalink
chore: update modules/sentry-cocoa to 7.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow authored Sep 10, 2022
1 parent ef2b501 commit 62af066
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
- Bump Java SDK from v6.4.0 to v6.4.1 ([#954](https://github.com/getsentry/sentry-unity/pull/954))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#641)
- [diff](https://github.com/getsentry/sentry-java/compare/6.4.0...6.4.1)
- Bump Cocoa SDK from v7.23.0 to v7.24.1 ([#957](https://github.com/getsentry/sentry-unity/pull/957), [#961](https://github.com/getsentry/sentry-unity/pull/961))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/master/CHANGELOG.md#7241)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.23.0...7.24.1)
- Bump Cocoa SDK from v7.23.0 to v7.25.0 ([#957](https://github.com/getsentry/sentry-unity/pull/957), [#961](https://github.com/getsentry/sentry-unity/pull/961), [#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.23.0...7.25.0)
- Bump .NET SDK from v3.20.1-33-g76b13448 to v3.21.0 ([#958](https://github.com/getsentry/sentry-unity/pull/958))
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#3210)
- [diff](https://github.com/getsentry/sentry-dotnet/compare/3.20.1-33-g76b13448...3.21.0)
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 62af066

Please sign in to comment.