Skip to content

Commit 09471ff

Browse files
authored
Update ios version in package file (#6316)
1 parent 854ca12 commit 09471ff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+48
-719
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,6 @@ jobs:
7676
include:
7777
- scheme: macOS-Swift
7878
config: Debug
79-
- scheme: iOS13-Swift
80-
config: Debug
8179
- scheme: watchOS-Swift WatchKit App
8280
config: Debug
8381
- scheme: macOS-SwiftUI

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ jobs:
275275
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
276276
MATCH_USERNAME: ${{ secrets.MATCH_USERNAME }}
277277
- name: Collect app metrics
278-
uses: getsentry/action-app-sdk-overhead-metrics@c9eca50e02d180ee07a02952c062b2f3f545f735
278+
uses: getsentry/action-app-sdk-overhead-metrics@4ccd0f993ff482b1ea5da556134ccace418190fb
279279
with:
280280
config: Tests/Perf/metrics-test.yml
281281
sauce-user: ${{ secrets.SAUCE_USERNAME }}

.github/workflows/test-cross-platform.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
with:
5656
repository: getsentry/sentry-react-native
5757
path: sentry-react-native
58-
ref: itay/fix_sentreyscreenframes
58+
ref: updateVersion
5959

6060
- name: Enable Corepack
6161
working-directory: sentry-react-native

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ Samples/SessionReplay-CameraTest/SessionReplay-CameraTest.xcodeproj
8686
Samples/iOS-ObjectiveC/iOS-ObjectiveC.xcodeproj
8787
Samples/iOS-Swift/iOS-Swift.xcodeproj
8888
Samples/iOS-Swift6/iOS-Swift6.xcodeproj
89-
Samples/iOS13-Swift/iOS13-Swift.xcodeproj
9089
Samples/iOS-SwiftUI/iOS-SwiftUI.xcodeproj
9190
Samples/iOS15-SwiftUI/iOS15-SwiftUI.xcodeproj
9291
Samples/macOS-Swift/macOS-Swift.xcodeproj

CHANGELOG-v9.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,3 @@ Removes `integrations` property from `SentryOptions` (#5749)
1717
Makes `SentryEventDecodable` internal (#5808)
1818
The `span` property on `SentryScope` is now readonly (#5866)
1919
Removes `enablePerformanceV2` option and makes this the default (#6008)
20-
21-
### Fixes
22-
23-
Fixes warnings about minimum OS version being lower than Xcode supported version (#5591)
24-
25-
### Improvements

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
- Add SentryDistribution as Swift Package Manager target (#6149)
88

9+
### Fixes
10+
11+
Fixes warnings about minimum OS version being lower than Xcode supported version (#5591)
12+
913
## 8.56.2
1014

1115
### Fixes

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,6 @@ xcode-ci:
189189
xcodegen --spec Samples/iOS-ObjectiveC/iOS-ObjectiveC.yml
190190
xcodegen --spec Samples/iOS-Swift/iOS-Swift.yml
191191
xcodegen --spec Samples/iOS-Swift6/iOS-Swift6.yml
192-
xcodegen --spec Samples/iOS13-Swift/iOS13-Swift.yml
193192
xcodegen --spec Samples/iOS-SwiftUI/iOS-SwiftUI.yml
194193
xcodegen --spec Samples/iOS15-SwiftUI/iOS15-SwiftUI.yml
195194
xcodegen --spec Samples/macOS-SwiftUI/macOS-SwiftUI.yml

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// swift-tools-version:5.3
2-
#if canImport(Darwin)
1+
// swift-tools-version:5.5
2+
#if canImport(Darwin)
33
import Darwin.C
44
#elseif canImport(Glibc)
55
import Glibc
@@ -120,7 +120,7 @@ if let env = env, String(cString: env, encoding: .utf8) == "1" {
120120

121121
let package = Package(
122122
name: "Sentry",
123-
platforms: [.iOS(.v11), .macOS(.v10_13), .tvOS(.v11), .watchOS(.v4)],
123+
platforms: [.iOS(.v15), .macOS(.v12), .tvOS(.v15), .watchOS(.v8)],
124124
products: products,
125125
targets: targets,
126126
cxxLanguageStandard: .cxx14

Samples/SPM-Dynamic/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
// swift-tools-version:5.3
1+
// swift-tools-version:5.5
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
55

66
let package = Package(
77
name: "SPM-Dynamic",
8-
platforms: [.macOS(.v10_13)],
8+
platforms: [.macOS(.v12)],
99
products: [
1010
.executable(name: "SPM-Dynamic", targets: ["SPM-Dynamic"])
1111
],

Samples/SessionReplay-CameraTest/SessionReplay-CameraTest.xcconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ INFOPLIST_FILE = Sources/Info.plist
55
CODE_SIGN_ENTITLEMENTS = Sources/SessionReplay-CameraTest.entitlements
66

77
SUPPORTED_PLATFORMS = iphoneos iphonesimulator
8-
IPHONEOS_DEPLOYMENT_TARGET = 13.0
8+
IPHONEOS_DEPLOYMENT_TARGET = 15.0

0 commit comments

Comments
 (0)