Skip to content

Commit e108842

Browse files
authored
chore: update flutter/scripts/update-cocoa.sh to 8.17.2
1 parent 9d7e862 commit e108842

File tree

3 files changed

+17
-14
lines changed

3 files changed

+17
-14
lines changed

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414

1515
### Dependencies
1616

17-
- Bump Cocoa SDK from v8.15.2 to v8.17.1 ([#1761](https://github.com/getsentry/sentry-dart/pull/1761), [#1771](https://github.com/getsentry/sentry-dart/pull/1771))
18-
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8171)
19-
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.15.2...8.17.1)
17+
- Bump Cocoa SDK from v8.15.2 to v8.17.2 ([#1761](https://github.com/getsentry/sentry-dart/pull/1761), [#1771](https://github.com/getsentry/sentry-dart/pull/1771), [#1787](https://github.com/getsentry/sentry-dart/pull/1787))
18+
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8172)
19+
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.15.2...8.17.2)
2020

2121
## 7.13.2
2222

flutter/ios/sentry_flutter.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Sentry SDK for Flutter with support to native through sentry-cocoa.
1212
:tag => s.version.to_s }
1313
s.source_files = 'Classes/**/*'
1414
s.public_header_files = 'Classes/**/*.h'
15-
s.dependency 'Sentry/HybridSDK', '8.17.1'
15+
s.dependency 'Sentry/HybridSDK', '8.17.2'
1616
s.ios.dependency 'Flutter'
1717
s.osx.dependency 'FlutterMacOS'
1818
s.ios.deployment_target = '11.0'

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

+13-10
Original file line numberDiff line numberDiff line change
@@ -37603,7 +37603,8 @@ class ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool extends _ObjCBlockBase {
3760337603
ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool.fromFunctionPointer(
3760437604
SentryCocoa lib,
3760537605
ffi.Pointer<
37606-
ffi.NativeFunction<
37606+
ffi
37607+
.NativeFunction<
3760737608
ffi.Bool Function(ffi.Pointer<ObjCObject> arg0,
3760837609
ffi.UnsignedLong arg1, ffi.Pointer<ffi.Bool> arg2)>>
3760937610
ptr)
@@ -42031,15 +42032,17 @@ class ObjCBlock_bool_ObjCObject_bool extends _ObjCBlockBase {
4203142032
ffi.Pointer<ffi.Bool> arg1)>>
4203242033
ptr)
4203342034
: this._(
42034-
lib._newBlock1(
42035-
_cFuncTrampoline ??= ffi.Pointer.fromFunction<
42036-
ffi.Bool Function(
42037-
ffi.Pointer<_ObjCBlock> block,
42038-
ffi.Pointer<ObjCObject> arg0,
42039-
ffi.Pointer<ffi.Bool> arg1)>(
42040-
_ObjCBlock_bool_ObjCObject_bool_fnPtrTrampoline, false)
42041-
.cast(),
42042-
ptr.cast()),
42035+
lib
42036+
._newBlock1(
42037+
_cFuncTrampoline ??= ffi.Pointer.fromFunction<
42038+
ffi.Bool Function(
42039+
ffi.Pointer<_ObjCBlock> block,
42040+
ffi.Pointer<ObjCObject> arg0,
42041+
ffi.Pointer<ffi.Bool> arg1)>(
42042+
_ObjCBlock_bool_ObjCObject_bool_fnPtrTrampoline,
42043+
false)
42044+
.cast(),
42045+
ptr.cast()),
4204342046
lib);
4204442047
static ffi.Pointer<ffi.Void>? _cFuncTrampoline;
4204542048

0 commit comments

Comments
 (0)