Skip to content

Commit

Permalink
chore(deps): update Cocoa SDK to v8.32.0 (#3499)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jul 30, 2024
1 parent 660715d commit 4c903cf
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
- Bump CLI from v2.32.1 to v2.33.0 ([#3489](https://github.com/getsentry/sentry-dotnet/pull/3489), [#3497](https://github.com/getsentry/sentry-dotnet/pull/3497))
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2330)
- [diff](https://github.com/getsentry/sentry-cli/compare/2.32.1...2.33.0)
- Bump Cocoa SDK from v8.30.0 to v8.32.0 ([#3499](https://github.com/getsentry/sentry-dotnet/pull/3499))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8320)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.30.0...8.32.0)
- Bump Native SDK from v0.7.6 to v0.7.7 ([#3502](https://github.com/getsentry/sentry-dotnet/pull/3502))
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#077)
- [diff](https://github.com/getsentry/sentry-native/compare/0.7.6...0.7.7)
Expand Down
2 changes: 1 addition & 1 deletion modules/sentry-cocoa
Submodule sentry-cocoa updated 257 files
4 changes: 4 additions & 0 deletions scripts/generate-cocoa-bindings.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ if (!(Test-Path '/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/
$iPhoneSdkVersion = sharpie xcode -sdks | grep -o -m 1 'iphoneos\S*'
Write-Output "iPhoneSdkVersion: $iPhoneSdkVersion"

# The umbrella header is provided in the "new" style of `#import <Sentry/SomeHeader.h>` instead of `#import "SomeHeader.h"` which causes sharpie to fail resolve those headers
$umbrellaHeader = "$CocoaSdkPath/Carthage/Headers/Sentry.h"
Set-Content -Path $umbrellaHeader -Value ((Get-Content -Path $umbrellaHeader -Raw) -replace '<Sentry/([^>]+)>', '"$1"')

# Generate bindings
Write-Output 'Generating bindings with Objective Sharpie.'
sharpie bind -sdk $iPhoneSdkVersion `
Expand Down
2 changes: 1 addition & 1 deletion src/Sentry.Bindings.Cocoa/ApiDefinitions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1360,7 +1360,7 @@ interface SentryOptions
[Export ("enableFileIOTracing")]
bool EnableFileIOTracing { get; set; }

// @property (nonatomic) BOOL enableTracing;
// @property (nonatomic) BOOL enableTracing __attribute__((deprecated("Use tracesSampleRate or tracesSampler instead")));
[Export ("enableTracing")]
bool EnableTracing { get; set; }

Expand Down

0 comments on commit 4c903cf

Please sign in to comment.