Skip to content

Commit 4a79829

Browse files
chore(deps): update Cocoa SDK to v9.19.0 (#2732)
1 parent e38dbe3 commit 4a79829

3 files changed

Lines changed: 8 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
- Bump Native SDK from v0.15.1 to v0.15.2 ([#2728](https://github.com/getsentry/sentry-unity/pull/2728))
1313
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#0152)
1414
- [diff](https://github.com/getsentry/sentry-native/compare/0.15.1...0.15.2)
15+
- Bump Cocoa SDK from v9.18.0 to v9.19.0 ([#2732](https://github.com/getsentry/sentry-unity/pull/2732))
16+
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#9190)
17+
- [diff](https://github.com/getsentry/sentry-cocoa/compare/9.18.0...9.19.0)
1518

1619
## 4.5.0
1720

modules/sentry-cocoa

Submodule sentry-cocoa updated 258 files

scripts/build-cocoa-sdk.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ try {
4343
# Exclude arm64e from the binary. Since Xcode 26, apps without arm64e in the main binary
4444
# can't include frameworks with arm64e slices (App Store rejection). The sentry-cocoa SDK
4545
# ships separate "-WithARM64e" variants for apps that need it; Unity games don't.
46-
& ./scripts/build-xcframework-variant.sh "Sentry" "-Dynamic" "mh_dylib" "" "iOSOnly" "arm64e"
47-
& ./scripts/validate-xcframework-format.sh "Sentry-Dynamic.xcframework"
46+
& ./scripts/build-xcframework-variant.sh --scheme "Sentry" --suffix "-Dynamic" --mach-o-type "mh_dylib" --sdks "iOSOnly" --excluded-archs "arm64e"
47+
& ./scripts/validate-xcframework-format.sh --xcframework "Sentry-Dynamic.xcframework"
4848
# build-xcframework-variant.sh outputs to the working directory — move into our build cache
4949
Move-Item -Path "Sentry-Dynamic.xcframework" -Destination $iOSXcframeworkPath -Force
5050
# Clean up intermediate archives, keep the final xcframework
@@ -76,8 +76,8 @@ try {
7676

7777
if (-not (Test-Path $macOSXcframeworkPath)) {
7878
Write-Host "Building macOS xcframework..." -ForegroundColor Yellow
79-
& ./scripts/build-xcframework-variant.sh "Sentry" "-Dynamic" "mh_dylib" "" "macOSOnly" ""
80-
& ./scripts/validate-xcframework-format.sh "Sentry-Dynamic.xcframework"
79+
& ./scripts/build-xcframework-variant.sh --scheme "Sentry" --suffix "-Dynamic" --mach-o-type "mh_dylib" --sdks "macOSOnly"
80+
& ./scripts/validate-xcframework-format.sh --xcframework "Sentry-Dynamic.xcframework"
8181
Move-Item -Path "Sentry-Dynamic.xcframework" -Destination $macOSXcframeworkPath -Force
8282
# Clean up all remaining build intermediates
8383
foreach ($dir in @("archive", "DerivedData")) {

0 commit comments

Comments
 (0)