Skip to content

Commit

Permalink
feat: Bump Cocoa SDK to 7.2.2 (#289)
Browse files Browse the repository at this point in the history
* bump cocoa to  7.2.2

* updated CHANGELOG.md

* reverted the version to unreleased
  • Loading branch information
bitsandfoxes authored Aug 23, 2021
1 parent d874416 commit d6dd267
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@

### Fixes

- Bump Sentry Cocoa SDK 7.2.2 ([#289](https://github.com/getsentry/sentry-unity/pull/289))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/7.2.2/CHANGELOG.md)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.2.0-beta.7...7.2.2)
- Included NativeExample.c in sample project ([#288](https://github.com/getsentry/sentry-unity/pull/288))
- Added attribute to SentryInitialization to prevent codestripping of Init ([#285](https://github.com/getsentry/sentry-unity/pull/285))
- Fixed passing Sentry diagnostic level to iOS native layer ([#281](https://github.com/getsentry/sentry-unity/pull/281))
Expand Down
2 changes: 1 addition & 1 deletion src/sentry-cocoa
Submodule sentry-cocoa updated 58 files
+60 −2 CHANGELOG.md
+25 −23 Gemfile.lock
+10 −2 Samples/iOS-Swift/iOS-Swift.xcodeproj/project.pbxproj
+9 −2 Samples/iOS-Swift/iOS-Swift/Base.lproj/Main.storyboard
+11 −0 Samples/iOS-Swift/iOS-Swift/NibViewController.swift
+39 −0 Samples/iOS-Swift/iOS-Swift/NibViewController.xib
+0 −27 Samples/iOS-Swift/iOS-Swift/TraceTestViewController.swift
+6 −0 Samples/iOS-Swift/iOS-Swift/ViewController.swift
+1 −1 Sentry.podspec
+19 −3 Sentry.xcodeproj/project.pbxproj
+1 −1 Sources/Configuration/Sentry.xcconfig
+28 −2 Sources/Sentry/Public/PrivateSentrySDKOnly.h
+1 −0 Sources/Sentry/Public/Sentry.h
+12 −5 Sources/Sentry/Public/SentryAppStartMeasurement.h
+3 −3 Sources/Sentry/Public/SentryHub.h
+8 −3 Sources/Sentry/Public/SentrySDK.h
+20 −0 Sources/Sentry/Public/SentryScreenFrames.h
+20 −0 Sources/Sentry/Public/SentrySpanProtocol.h
+64 −46 Sources/Sentry/SentryAppStartTracker.m
+2 −3 Sources/Sentry/SentryCrashReportConverter.m
+6 −11 Sources/Sentry/SentryFramesTracker.m
+44 −0 Sources/Sentry/SentryHybridSKdsOnly.m
+1 −1 Sources/Sentry/SentryMeta.m
+31 −6 Sources/Sentry/SentryNetworkTracker.m
+3 −1 Sources/Sentry/SentryPerformanceTracker.m
+17 −20 Sources/Sentry/SentrySDK.m
+21 −0 Sources/Sentry/SentryScreenFrames.m
+42 −4 Sources/Sentry/SentrySpan.m
+6 −1 Sources/Sentry/SentrySpanContext.m
+74 −9 Sources/Sentry/SentryTracer.m
+200 −104 Sources/Sentry/SentryUIViewControllerPerformanceTracker.m
+18 −6 Sources/Sentry/SentryUIViewControllerSwizziling.m
+3 −5 Sources/Sentry/include/SentryFramesTracker.h
+1 −1 Sources/Sentry/include/SentrySDK+Private.h
+0 −53 Sources/Sentry/include/SentrySpan.h
+0 −51 Sources/Sentry/include/SentryTracer.h
+3 −0 Sources/Sentry/include/SentryUIViewControllerPerformanceTracker.h
+9 −0 Tests/SentryTests/ClearTestState.swift
+61 −4 Tests/SentryTests/Integrations/SentryAppStartTrackerTests.swift
+5 −5 Tests/SentryTests/Integrations/SentryAppStartTrackingIntegrationTests.swift
+16 −12 Tests/SentryTests/Integrations/SentryFramesTrackerTests.swift
+90 −2 Tests/SentryTests/Integrations/SentryNetworkTrackerTests.swift
+18 −0 Tests/SentryTests/Integrations/SentryPerformanceTrackerTests.swift
+141 −7 Tests/SentryTests/Integrations/SentryUIPerformanceTrackerTests.swift
+22 −0 Tests/SentryTests/Integrations/TestDisplayLinkWrapper.swift
+5 −0 Tests/SentryTests/Integrations/URLSessionTaskMock.h
+17 −0 Tests/SentryTests/Integrations/URLSessionTaskMock.m
+1 −18 Tests/SentryTests/Networking/SentryHTTPInterceptorTests.swift
+15 −0 Tests/SentryTests/Networking/TestURLSession.h
+26 −0 Tests/SentryTests/Networking/TestURLSession.m
+12 −0 Tests/SentryTests/Performance/SentryTracer+Test.h
+22 −38 Tests/SentryTests/Performance/SentryTracerTests.swift
+46 −0 Tests/SentryTests/PrivateSentrySDKOnlyTests.swift
+8 −0 Tests/SentryTests/Protocol/TestData.swift
+83 −0 Tests/SentryTests/SentrySDKTests.swift
+1 −0 Tests/SentryTests/SentrySpanContextTests.swift
+45 −2 Tests/SentryTests/SentrySpanTests.swift
+3 −0 Tests/SentryTests/SentryTests-Bridging-Header.h

0 comments on commit d6dd267

Please sign in to comment.