Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update Cocoa SDK to v8.24.0 #3287

Closed
wants to merge 6 commits into from
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## Unreleased

### Dependencies

- Bump Cocoa SDK from v8.21.0 to v8.24.0 ([#3287](https://github.com/getsentry/sentry-dotnet/pull/3287))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8240)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.21.0...8.24.0)

## 4.4.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion modules/sentry-cocoa
Submodule sentry-cocoa updated 346 files
8 changes: 6 additions & 2 deletions scripts/generate-cocoa-bindings.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,12 @@ if (!(Test-Path '/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/
}

# Get iPhone SDK version
$iPhoneSdkVersion = sharpie xcode -sdks | grep -o -m 1 'iphoneos\S*'
Write-Output "iPhoneSdkVersion: $iPhoneSdkVersion"
Write-Output "Available iOS framework versions:"
sharpie xcode -sdks | grep -o 'iphoneos\S*'

# $iPhoneSdkVersion = sharpie xcode -sdks | grep -o -m 1 'iphoneos\S*'
$iPhoneSdkVersion = "iphoneos16.4"
Write-Output "Picking hardcoded iPhoneSdkVersion: $iPhoneSdkVersion"

# Generate bindings
Write-Output 'Generating bindings with Objective Sharpie.'
Expand Down
Loading