Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@

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

### Dependencies

- Bump Cocoa SDK from v8.55.1 to v8.56.1 ([#3272](https://github.com/getsentry/sentry-dart/pull/3272))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8561)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.55.1...8.56.1)

## 9.7.0-beta.5

### Dependencies
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter/ios/sentry_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Sentry SDK for Flutter with support to native through sentry-cocoa.
:tag => s.version.to_s }
s.source_files = 'sentry_flutter/Sources/**/*'
s.public_header_files = 'sentry_flutter/Sources/**/*.h'
s.dependency 'Sentry/HybridSDK', '8.55.1'
s.dependency 'Sentry/HybridSDK', '8.56.1'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Cocoa SDK Update Triggers Runtime Crashes

Updating to Cocoa SDK v8.56.1 introduces a dependency version with known runtime crash issues. The upstream changelog explicitly warns that this version "can cause runtime crashes because the UIApplication.sharedApplication/NSApplication.sharedApplication is not yet available during SDK initialization." This violates the principle of avoiding changes with material stability impact without proper evaluation and risk assessment.

Fix in Cursor Fix in Web

s.ios.dependency 'Flutter'
s.osx.dependency 'FlutterMacOS'
s.ios.deployment_target = '12.0'
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter/ios/sentry_flutter/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ let package = Package(
.library(name: "sentry-flutter", targets: ["sentry_flutter", "sentry_flutter_objc"])
],
dependencies: [
.package(url: "https://github.com/getsentry/sentry-cocoa", exact: "8.55.1")
.package(url: "https://github.com/getsentry/sentry-cocoa", exact: "8.56.1")
],
targets: [
.target(
Expand Down
Loading