Skip to content

Commit

Permalink
chore: update flutter/scripts/update-cocoa.sh to 8.18.0 (#1803)
Browse files Browse the repository at this point in the history
Co-authored-by: GitHub <noreply@github.com>
  • Loading branch information
github-actions[bot] and web-flow committed Jan 8, 2024
1 parent f12d09d commit 1cdcacf
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 14 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -17,6 +17,9 @@
- Bump Android SDK from v7.0.0 to v7.1.0 ([#1788](https://github.com/getsentry/sentry-dart/pull/1788))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#710)
- [diff](https://github.com/getsentry/sentry-java/compare/7.0.0...7.1.0)
- Bump Cocoa SDK from v8.17.2 to v8.18.0 ([#1803](https://github.com/getsentry/sentry-dart/pull/1803))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8180)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.17.2...8.18.0)

## 7.14.0

Expand Down
2 changes: 1 addition & 1 deletion flutter/ios/sentry_flutter.podspec
Expand Up @@ -12,7 +12,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.17.2'
s.dependency 'Sentry/HybridSDK', '8.18.0'
s.ios.dependency 'Flutter'
s.osx.dependency 'FlutterMacOS'
s.ios.deployment_target = '11.0'
Expand Down
32 changes: 19 additions & 13 deletions flutter/lib/src/native/cocoa/binding.dart
Expand Up @@ -37603,7 +37603,8 @@ class ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool extends _ObjCBlockBase {
ObjCBlock_bool_ObjCObject_ffiUnsignedLong_bool.fromFunctionPointer(
SentryCocoa lib,
ffi.Pointer<
ffi.NativeFunction<
ffi
.NativeFunction<
ffi.Bool Function(ffi.Pointer<ObjCObject> arg0,
ffi.UnsignedLong arg1, ffi.Pointer<ffi.Bool> arg2)>>
ptr)
Expand Down Expand Up @@ -42031,15 +42032,17 @@ class ObjCBlock_bool_ObjCObject_bool extends _ObjCBlockBase {
ffi.Pointer<ffi.Bool> arg1)>>
ptr)
: this._(
lib._newBlock1(
_cFuncTrampoline ??= ffi.Pointer.fromFunction<
ffi.Bool Function(
ffi.Pointer<_ObjCBlock> block,
ffi.Pointer<ObjCObject> arg0,
ffi.Pointer<ffi.Bool> arg1)>(
_ObjCBlock_bool_ObjCObject_bool_fnPtrTrampoline, false)
.cast(),
ptr.cast()),
lib
._newBlock1(
_cFuncTrampoline ??= ffi.Pointer.fromFunction<
ffi.Bool Function(
ffi.Pointer<_ObjCBlock> block,
ffi.Pointer<ObjCObject> arg0,
ffi.Pointer<ffi.Bool> arg1)>(
_ObjCBlock_bool_ObjCObject_bool_fnPtrTrampoline,
false)
.cast(),
ptr.cast()),
lib);
static ffi.Pointer<ffi.Void>? _cFuncTrampoline;

Expand Down Expand Up @@ -70495,15 +70498,18 @@ class PrivateSentrySDKOnly extends NSObject {

/// Collect a profiler session data associated with the given @c SentryId.
/// This also discards the profiler.
static NSDictionary collectProfileBetween_and_forTrace_(SentryCocoa _lib,
int startSystemTime, int endSystemTime, SentryId? traceId) {
static NSMutableDictionary collectProfileBetween_and_forTrace_(
SentryCocoa _lib,
int startSystemTime,
int endSystemTime,
SentryId? traceId) {
final _ret = _lib._objc_msgSend_1059(
_lib._class_PrivateSentrySDKOnly1,
_lib._sel_collectProfileBetween_and_forTrace_1,
startSystemTime,
endSystemTime,
traceId?._id ?? ffi.nullptr);
return NSDictionary._(_ret, _lib, retain: true, release: true);
return NSMutableDictionary._(_ret, _lib, retain: true, release: true);
}

/// Discard profiler session data associated with the given @c SentryId.
Expand Down

0 comments on commit 1cdcacf

Please sign in to comment.