Skip to content

Commit

Permalink
chore(deps): update Cocoa SDK to v8.25.2 (#2042)
Browse files Browse the repository at this point in the history
* chore: update flutter/scripts/update-cocoa.sh to 8.25.2

* Format

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>
  • Loading branch information
3 people committed May 10, 2024
1 parent 40e30e1 commit c57d3b7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@

- Fix `PlatformException` title parsing ([#2033](https://github.com/getsentry/sentry-dart/pull/2033))

### Dependencies

- Bump Cocoa SDK from v8.25.0 to v8.25.2 ([#2042](https://github.com/getsentry/sentry-dart/pull/2042))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8252)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.25.0...8.25.2)

## 8.1.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion flutter/ios/sentry_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Sentry SDK for Flutter with support to native through sentry-cocoa.
:tag => s.version.to_s }
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Sentry/HybridSDK', '8.25.0'
s.dependency 'Sentry/HybridSDK', '8.25.2'
s.ios.dependency 'Flutter'
s.osx.dependency 'FlutterMacOS'
s.ios.deployment_target = '12.0'
Expand Down
7 changes: 7 additions & 0 deletions flutter/lib/src/native/cocoa/binding.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22996,6 +22996,8 @@ class SentryCocoa {
_registerName1("prefersIncrementalDelivery");
late final _sel_setPrefersIncrementalDelivery_1 =
_registerName1("setPrefersIncrementalDelivery:");
late final _sel_getGraphQLOperationName1 =
_registerName1("getGraphQLOperationName");
late final _sel_storeCookies_forTask_1 =
_registerName1("storeCookies:forTask:");
void _objc_msgSend_804(
Expand Down Expand Up @@ -58358,6 +58360,11 @@ class NSURLSessionTask extends NSObject {
return NSURLSessionTask._(_ret, _lib, retain: false, release: true);
}

NSString getGraphQLOperationName() {
final _ret = _lib._objc_msgSend_20(_id, _lib._sel_getGraphQLOperationName1);
return NSString._(_ret, _lib, retain: true, release: true);
}

static NSURLSessionTask allocWithZone_(
SentryCocoa _lib, ffi.Pointer<_NSZone> zone) {
final _ret = _lib._objc_msgSend_3(
Expand Down

0 comments on commit c57d3b7

Please sign in to comment.