Skip to content

Commit c57d3b7

Browse files
github-actions[bot]web-flowbuenaflor
authored
chore(deps): update Cocoa SDK to v8.25.2 (#2042)
* chore: update flutter/scripts/update-cocoa.sh to 8.25.2 * Format --------- Co-authored-by: GitHub <[email protected]> Co-authored-by: GIancarlo Buenaflor <[email protected]>
1 parent 40e30e1 commit c57d3b7

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@
1616

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

19+
### Dependencies
20+
21+
- Bump Cocoa SDK from v8.25.0 to v8.25.2 ([#2042](https://github.com/getsentry/sentry-dart/pull/2042))
22+
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8252)
23+
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.25.0...8.25.2)
24+
1925
## 8.1.0
2026

2127
### Features

flutter/ios/sentry_flutter.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Sentry SDK for Flutter with support to native through sentry-cocoa.
1616
:tag => s.version.to_s }
1717
s.source_files = 'Classes/**/*'
1818
s.public_header_files = 'Classes/**/*.h'
19-
s.dependency 'Sentry/HybridSDK', '8.25.0'
19+
s.dependency 'Sentry/HybridSDK', '8.25.2'
2020
s.ios.dependency 'Flutter'
2121
s.osx.dependency 'FlutterMacOS'
2222
s.ios.deployment_target = '12.0'

flutter/lib/src/native/cocoa/binding.dart

+7
Original file line numberDiff line numberDiff line change
@@ -22996,6 +22996,8 @@ class SentryCocoa {
2299622996
_registerName1("prefersIncrementalDelivery");
2299722997
late final _sel_setPrefersIncrementalDelivery_1 =
2299822998
_registerName1("setPrefersIncrementalDelivery:");
22999+
late final _sel_getGraphQLOperationName1 =
23000+
_registerName1("getGraphQLOperationName");
2299923001
late final _sel_storeCookies_forTask_1 =
2300023002
_registerName1("storeCookies:forTask:");
2300123003
void _objc_msgSend_804(
@@ -58358,6 +58360,11 @@ class NSURLSessionTask extends NSObject {
5835858360
return NSURLSessionTask._(_ret, _lib, retain: false, release: true);
5835958361
}
5836058362

58363+
NSString getGraphQLOperationName() {
58364+
final _ret = _lib._objc_msgSend_20(_id, _lib._sel_getGraphQLOperationName1);
58365+
return NSString._(_ret, _lib, retain: true, release: true);
58366+
}
58367+
5836158368
static NSURLSessionTask allocWithZone_(
5836258369
SentryCocoa _lib, ffi.Pointer<_NSZone> zone) {
5836358370
final _ret = _lib._objc_msgSend_3(

0 commit comments

Comments
 (0)