Skip to content

Commit

Permalink
chore: update modules/sentry-cocoa to 8.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow authored Mar 8, 2023
1 parent 52a2ce2 commit 387c616
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 v8.2.0 to v8.3.0 ([#2220](https://github.com/getsentry/sentry-dotnet/pull/2220))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#830)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.2.0...8.3.0)

## 3.29.0

**Notice:** The `<SentryUploadSymbols>` MSBuild property previously defaulted to `true` for projects compiled in `Release` configuration.
Expand Down
2 changes: 1 addition & 1 deletion modules/sentry-cocoa
Submodule sentry-cocoa updated 88 files
+2 −2 .github/workflows/codeql-analysis.yml
+4 −0 .github/workflows/saucelabs-UI-tests.yml
+9 −0 .github/workflows/test.yml
+13 −1 CHANGELOG.md
+5 −1 Gemfile
+8 −8 Gemfile.lock
+28 −0 Samples/watchOS-Swift/watchOS-Swift WatchKit Extension/ContentView.swift
+1 −1 Samples/watchOS-Swift/watchOS-Swift WatchKit Extension/ExtensionDelegate.swift
+2 −2 Sentry.podspec
+12 −12 Sentry.xcodeproj/project.pbxproj
+0 −6 Sentry.xcodeproj/xcshareddata/xcschemes/Sentry.xcscheme
+1 −1 SentryPrivate.podspec
+2 −2 SentrySwiftUI.podspec
+1 −1 Sources/Configuration/Sentry.xcconfig
+1 −1 Sources/Configuration/SentryPrivate.xcconfig
+14 −3 Sources/Sentry/Public/SentryOptions.h
+3 −3 Sources/Sentry/SentryANRTracker.m
+14 −3 Sources/Sentry/SentryANRTrackingIntegration.m
+1 −1 Sources/Sentry/SentryBreadcrumbTracker.m
+26 −3 Sources/Sentry/SentryClient.m
+1 −1 Sources/Sentry/SentryCrashDefaultMachineContextWrapper.m
+1 −1 Sources/Sentry/SentryCrashReportSink.m
+1 −1 Sources/Sentry/SentryDsn.m
+1 −16 Sources/Sentry/SentryEvent.m
+10 −5 Sources/Sentry/SentryFramesTracker.m
+2 −2 Sources/Sentry/SentryHub.m
+6 −1 Sources/Sentry/SentryLog.m
+1 −1 Sources/Sentry/SentryMeta.m
+186 −72 Sources/Sentry/SentryMetricKitIntegration.m
+67 −31 Sources/Sentry/SentryMetricProfiler.mm
+2 −2 Sources/Sentry/SentryNSDataSwizzling.m
+3 −3 Sources/Sentry/SentryNSDataTracker.m
+10 −0 Sources/Sentry/SentryNSProcessInfoWrapper.mm
+53 −16 Sources/Sentry/SentryOptions.m
+2 −2 Sources/Sentry/SentryPerformanceTracker.m
+2 −2 Sources/Sentry/SentryPerformanceTrackingIntegration.m
+0 −15 Sources/Sentry/SentryProcessInfoWrapper.m
+443 −354 Sources/Sentry/SentryProfiler.mm
+0 −1 Sources/Sentry/SentrySpan.m
+1 −1 Sources/Sentry/SentrySpanContext.m
+1 −1 Sources/Sentry/SentryStacktraceBuilder.m
+1 −1 Sources/Sentry/SentrySubClassFinder.m
+1 −1 Sources/Sentry/SentrySwizzle.m
+1 −1 Sources/Sentry/SentryThreadInspector.m
+11 −1 Sources/Sentry/SentryTime.mm
+44 −18 Sources/Sentry/SentryTracer.m
+41 −0 Sources/Sentry/SentryTracerConcurrency.mm
+3 −3 Sources/Sentry/SentryUIViewControllerSwizzling.m
+4 −4 Sources/Sentry/SentryViewHierarchy.m
+16 −1 Sources/Sentry/include/SentryEvent+Private.h
+15 −0 Sources/Sentry/include/SentryInternalDefines.h
+4 −0 Sources/Sentry/include/SentryLog.h
+39 −6 Sources/Sentry/include/SentryMetricProfiler.h
+2 −2 Sources/Sentry/include/SentryNSDataTracker.h
+2 −0 Sources/Sentry/include/SentryNSProcessInfoWrapper.h
+0 −12 Sources/Sentry/include/SentryProcessInfoWrapper.h
+19 −3 Sources/Sentry/include/SentryProfiler+Test.h
+14 −30 Sources/Sentry/include/SentryProfiler.h
+13 −0 Sources/Sentry/include/SentryTime.h
+29 −0 Sources/Sentry/include/SentryTracerConcurrency.h
+2 −2 Sources/Sentry/include/SentryUIViewControllerSwizzling.h
+1 −1 Tests/Perf/metrics-test.yml
+60 −1 Tests/Resources/metric-kit-callstack-not-per-thread.json
+102 −0 Tests/SentryTests/Helper/SentryTimeTests.m
+0 −9 Tests/SentryTests/Helper/TestProcessInfoWrapper.swift
+5 −0 Tests/SentryTests/Helper/TestSentryNSProcessInfoWrapper.swift
+23 −0 Tests/SentryTests/Integrations/ANR/SentryANRTrackerTests.swift
+52 −19 Tests/SentryTests/Integrations/ANR/SentryANRTrackingIntegrationTests.swift
+10 −7 Tests/SentryTests/Integrations/MetricKit/SentryMXCallStackTreeTests.swift
+74 −14 Tests/SentryTests/Integrations/MetricKit/SentryMetricKitIntegrationTests.swift
+52 −17 Tests/SentryTests/Integrations/Performance/FramesTracking/SentryFramesTrackerTests.swift
+4 −0 Tests/SentryTests/Integrations/Performance/FramesTracking/TestDisplayLinkWrapper.swift
+4 −1 Tests/SentryTests/Integrations/Performance/IO/SentryNSDataTrackerTests.swift
+5 −2 Tests/SentryTests/Integrations/Performance/SentryPerformanceTrackerTests.swift
+1 −1 Tests/SentryTests/Integrations/Performance/UIViewController/SentryUIViewControllerSwizzlingTests.swift
+1 −1 Tests/SentryTests/Integrations/SentryCrash/SentryCrashIntegrationTests.swift
+6 −0 Tests/SentryTests/Networking/SentryDsnTests.m
+58 −0 Tests/SentryTests/Performance/SentryTracerObjCTests.m
+41 −4 Tests/SentryTests/Performance/SentryTracerTests.swift
+186 −74 Tests/SentryTests/Profiling/SentryProfilerSwiftTests.swift
+4 −5 Tests/SentryTests/Profiling/SentryProfilerTests.mm
+10 −2 Tests/SentryTests/SentryClient+TestInit.h
+3 −2 Tests/SentryTests/SentryClientTests.swift
+74 −1 Tests/SentryTests/SentryOptionsTest.m
+8 −0 Tests/SentryTests/SentrySDKIntegrationTestsBase.swift
+1 −1 Tests/SentryTests/SentryTests-Bridging-Header.h
+9 −4 Tests/SentryTests/TestClient.swift
+1 −1 fastlane/Fastfile

0 comments on commit 387c616

Please sign in to comment.