Skip to content

Commit fab52eb

Browse files
authored
chore(v8): update to min ios version 12 (#1821)
* update to min ios version 12 * Update CHANGELOG * Update CHANGELOG * Update CHANGELOG * Re-enable iOS flutter integration test * Update CHANGELOG
1 parent d99a1e4 commit fab52eb

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/flutter_test.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,7 @@ jobs:
120120
fail-fast: false
121121
matrix:
122122
sdk: ["stable", "beta"]
123-
# TODO: remove ios for now, will be fixed in v8
124-
target: ["macos"]
123+
target: ["ios", "macos"]
125124
steps:
126125
- name: checkout
127126
uses: actions/checkout@v4

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
### Breaking Changes
66

7+
- Bump iOS minimum deployment target from **11** to **12** ([#1821](https://github.com/getsentry/sentry-dart/pull/1821))
78
- Mark exceptions not handled by the user as `handled: false` ([#1535](https://github.com/getsentry/sentry-dart/pull/1535))
89
- This will affect your release health data, and is therefore considered a breaking change.
910
- Refrain from overwriting the span status for unfinished spans ([#1577](https://github.com/getsentry/sentry-dart/pull/1577))
@@ -16,7 +17,7 @@
1617
- Now the device context from Android is available in `BeforeSendCallback`
1718
- Set ip_address to {{auto}} by default, even if sendDefaultPII is disabled ([#1665](https://github.com/getsentry/sentry-dart/pull/1665))
1819
- Instead use the "Prevent Storing of IP Addresses" option in the "Security & Privacy" project settings on sentry.io
19-
20+
2021
## 7.16.0
2122

2223
### Features

flutter/example/ios/Podfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
platform :ios, '11.0'
2+
platform :ios, '12.0'
33

44
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

flutter/ios/sentry_flutter.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Sentry SDK for Flutter with support to native through sentry-cocoa.
1515
s.dependency 'Sentry/HybridSDK', '8.19.0'
1616
s.ios.dependency 'Flutter'
1717
s.osx.dependency 'FlutterMacOS'
18-
s.ios.deployment_target = '11.0'
18+
s.ios.deployment_target = '12.0'
1919
# Flutter 3.7 requires 10.14
2020
s.osx.deployment_target = '10.13'
2121

min_version_test/ios/Podfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
# platform :ios, '11.0'
2+
platform :ios, '12.0'
33

44
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

0 commit comments

Comments
 (0)