Skip to content

Commit 7673ae3

Browse files
web-flowgithub-actions[bot]
authored andcommitted
chore: update flutter/scripts/update-cocoa.sh to 8.25.2
1 parent 4656f10 commit 7673ae3

File tree

3 files changed

+27
-11
lines changed

3 files changed

+27
-11
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@
1515

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

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

2026
### 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

+20-10
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(
@@ -37671,7 +37673,8 @@ class ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool extends _ObjCBlockBase {
3767137673
ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool.fromFunctionPointer(
3767237674
SentryCocoa lib,
3767337675
ffi.Pointer<
37674-
ffi.NativeFunction<
37676+
ffi
37677+
.NativeFunction<
3767537678
ffi.Bool Function(ffi.Pointer<ObjCObject> arg0,
3767637679
ffi.UnsignedLong arg1, ffi.Pointer<ffi.Bool> arg2)>>
3767737680
ptr)
@@ -42115,15 +42118,17 @@ class ObjCBlock_bool_ObjCObject_bool extends _ObjCBlockBase {
4211542118
ffi.Pointer<ffi.Bool> arg1)>>
4211642119
ptr)
4211742120
: this._(
42118-
lib._newBlock1(
42119-
_cFuncTrampoline ??= ffi.Pointer.fromFunction<
42120-
ffi.Bool Function(
42121-
ffi.Pointer<_ObjCBlock> block,
42122-
ffi.Pointer<ObjCObject> arg0,
42123-
ffi.Pointer<ffi.Bool> arg1)>(
42124-
_ObjCBlock_bool_ObjCObject_bool_fnPtrTrampoline, false)
42125-
.cast(),
42126-
ptr.cast()),
42121+
lib
42122+
._newBlock1(
42123+
_cFuncTrampoline ??= ffi.Pointer.fromFunction<
42124+
ffi.Bool Function(
42125+
ffi.Pointer<_ObjCBlock> block,
42126+
ffi.Pointer<ObjCObject> arg0,
42127+
ffi.Pointer<ffi.Bool> arg1)>(
42128+
_ObjCBlock_bool_ObjCObject_bool_fnPtrTrampoline,
42129+
false)
42130+
.cast(),
42131+
ptr.cast()),
4212742132
lib);
4212842133
static ffi.Pointer<ffi.Void>? _cFuncTrampoline;
4212942134

@@ -58358,6 +58363,11 @@ class NSURLSessionTask extends NSObject {
5835858363
return NSURLSessionTask._(_ret, _lib, retain: false, release: true);
5835958364
}
5836058365

58366+
NSString getGraphQLOperationName() {
58367+
final _ret = _lib._objc_msgSend_20(_id, _lib._sel_getGraphQLOperationName1);
58368+
return NSString._(_ret, _lib, retain: true, release: true);
58369+
}
58370+
5836158371
static NSURLSessionTask allocWithZone_(
5836258372
SentryCocoa _lib, ffi.Pointer<_NSZone> zone) {
5836358373
final _ret = _lib._objc_msgSend_3(

0 commit comments

Comments
 (0)