Skip to content

Commit 0e8b9a1

Browse files
github-actions[bot]web-flowlimbonaut
authored
chore(deps): update Cocoa SDK to v8.55.0 (#318)
Co-authored-by: GitHub <[email protected]> Co-authored-by: Serhii Snitsaruk <[email protected]>
1 parent f8396ae commit 0e8b9a1

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
### Dependencies
6+
7+
- Bump Cocoa SDK from v8.54.0 to v8.55.0 ([#318](https://github.com/getsentry/sentry-godot/pull/318))
8+
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8550)
9+
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.54.0...8.55.0)
10+
311
## 1.0.0-beta.0
412

513
### Breaking changes

modules/sentry-cocoa.SConscript

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def update_cocoa_framework():
185185
extract_zip_with_symlinks(zip_path, cocoa_dir)
186186

187187
# NOTE: We need to flatten macOS slice due to issues with symlinks on Windows.
188-
flatten_framework(cocoa_dir / "Sentry-Dynamic.xcframework" / "macos-arm64_arm64e_x86_64" / "Sentry.framework")
188+
flatten_framework(cocoa_dir / "Sentry-Dynamic.xcframework" / "macos-arm64_x86_64" / "Sentry.framework")
189189

190190
zip_path.unlink() # delete file
191191
version_file.write_text(cocoa_version)
@@ -223,12 +223,12 @@ if platform in ["macos", "ios"]:
223223
# Add Sentry Cocoa framework to compilation.
224224

225225
if platform == "macos":
226-
framework_dir = xcframework_path / "macos-arm64_arm64e_x86_64/Sentry.framework"
226+
framework_dir = xcframework_path / "macos-arm64_x86_64/Sentry.framework"
227227
else:
228228
if ios_simulator:
229229
framework_dir = xcframework_path / "ios-arm64_x86_64-simulator/Sentry.framework"
230230
else:
231-
framework_dir = xcframework_path / "ios-arm64_arm64e/Sentry.framework"
231+
framework_dir = xcframework_path / "ios-arm64/Sentry.framework"
232232

233233
if not framework_dir.exists():
234234
print(f"ERROR: Sentry.framework is missing at {framework_dir}.")
@@ -370,7 +370,7 @@ def DeploySentryCocoa(self, target_dir):
370370

371371
if platform == "ios":
372372
slice_dirs = [
373-
source_xcframework / "ios-arm64_arm64e",
373+
source_xcframework / "ios-arm64",
374374
source_xcframework / "ios-arm64_x86_64-simulator"
375375
]
376376
target_path = Path(target_dir_path) / "Sentry.xcframework"
@@ -381,7 +381,7 @@ def DeploySentryCocoa(self, target_dir):
381381
)
382382

383383
elif platform == "macos":
384-
source_framework = source_xcframework / "macos-arm64_arm64e_x86_64/Sentry.framework"
384+
source_framework = source_xcframework / "macos-arm64_x86_64/Sentry.framework"
385385
target_path = Path(target_dir_path) / "Sentry.framework"
386386

387387
# Copy only the binary and "Resources" dir -- we don't need to export headers or modules.

modules/sentry-cocoa.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=8.54.0
1+
version=8.55.0
22
repo=https://github.com/getsentry/sentry-cocoa

0 commit comments

Comments
 (0)