Skip to content

Commit 1f639ee

Browse files
chore(deps): update Cocoa SDK to v8.56.2 (#3276)
1 parent 5d411b0 commit 1f639ee

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@
1515

1616
- Safely access browser `navigator.deviceMemory` ([#3268](https://github.com/getsentry/sentry-dart/pull/3268))
1717

18+
### Dependencies
19+
20+
- Bump Cocoa SDK from v8.55.1 to v8.56.2 ([#3276](https://github.com/getsentry/sentry-dart/pull/3276))
21+
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8562)
22+
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.55.1...8.56.2)
23+
1824
## 9.7.0-beta.5
1925

2026
### Dependencies

packages/flutter/ios/sentry_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Sentry SDK for Flutter with support to native through sentry-cocoa.
1616
:tag => s.version.to_s }
1717
s.source_files = 'sentry_flutter/Sources/**/*'
1818
s.public_header_files = 'sentry_flutter/Sources/**/*.h'
19-
s.dependency 'Sentry/HybridSDK', '8.55.1'
19+
s.dependency 'Sentry/HybridSDK', '8.56.2'
2020
s.ios.dependency 'Flutter'
2121
s.osx.dependency 'FlutterMacOS'
2222
s.ios.deployment_target = '12.0'

packages/flutter/ios/sentry_flutter/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ let package = Package(
1313
.library(name: "sentry-flutter", targets: ["sentry_flutter", "sentry_flutter_objc"])
1414
],
1515
dependencies: [
16-
.package(url: "https://github.com/getsentry/sentry-cocoa", exact: "8.55.1")
16+
.package(url: "https://github.com/getsentry/sentry-cocoa", exact: "8.56.2")
1717
],
1818
targets: [
1919
.target(

packages/flutter/ios/sentry_flutter/Sources/sentry_flutter/SentryFlutterPlugin.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Sentry
1+
@_spi(Private) import Sentry
22

33
#if SWIFT_PACKAGE
44
import Sentry._Hybrid
@@ -578,8 +578,8 @@ public class SentryFlutterPlugin: NSObject, FlutterPlugin {
578578
for address in instructionAddresses {
579579
let hexDigits = address.replacingOccurrences(of: "0x", with: "")
580580
if let instructionAddress = UInt64(hexDigits, radix: 16) {
581-
let image = SentryDependencyContainer.sharedInstance().binaryImageCache.image(
582-
byAddress: instructionAddress)
581+
let image = SentryDependencyContainer.sharedInstance().binaryImageCache
582+
.imageByAddress(instructionAddress)
583583
if let image = image {
584584
let imageAddress = sentry_formatHexAddressUInt64(image.address)!
585585
imagesAddresses.insert(imageAddress)

0 commit comments

Comments
 (0)