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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
- Bump Android SDK from v8.28.0 to v8.30.0 ([#3451](https://github.com/getsentry/sentry-dart/pull/3451))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8300)
- [diff](https://github.com/getsentry/sentry-java/compare/8.28.0...8.30.0)
- Bump Cocoa SDK from v8.56.2 to v9.1.0 ([#3394](https://github.com/getsentry/sentry-dart/pull/3394))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#910)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.56.2...9.1.0)

## 9.10.0

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.56.2'
s.dependency 'Sentry/HybridSDK', '9.1.0'
s.ios.dependency 'Flutter'
s.osx.dependency 'FlutterMacOS'
s.ios.deployment_target = '12.0'
Copy link

Choose a reason for hiding this comment

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

Bug: iOS deployment target incompatible with Cocoa SDK 9.x

The Cocoa SDK 9.x requires a minimum iOS deployment target of 15.0, but sentry_flutter.podspec and Package.swift still specify iOS 12.0. This mismatch will cause build failures when the SDK attempts to use iOS 15+ only APIs on lower deployment targets, or CocoaPods/SPM dependency resolution may fail due to incompatible platform requirements.

Additional Locations (1)

Fix in Cursor Fix in Web

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.56.2")
.package(url: "https://github.com/getsentry/sentry-cocoa", exact: "9.1.0")
],
targets: [
.target(
Expand Down
Loading
Loading