diff --git a/CHANGELOG.md b/CHANGELOG.md index b2144faaa7..2f0efe8e9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/modules/sentry-cocoa b/modules/sentry-cocoa index 38f4f70d07..ef4fec9dfb 160000 --- a/modules/sentry-cocoa +++ b/modules/sentry-cocoa @@ -1 +1 @@ -Subproject commit 38f4f70d07117b9f958a76b1bff278c2f29ffe0e +Subproject commit ef4fec9dfb8dd5027b09a4a5c9362feafd118e1a diff --git a/scripts/generate-cocoa-bindings.ps1 b/scripts/generate-cocoa-bindings.ps1 index 2e37a8926c..df20c9a6f4 100644 --- a/scripts/generate-cocoa-bindings.ps1 +++ b/scripts/generate-cocoa-bindings.ps1 @@ -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.'