Skip to content

Commit f19a7f8

Browse files
web-flowgithub-actions[bot]
authored andcommitted
chore: update packages/flutter/scripts/update-native.sh to 0.10.0
1 parent 7169a96 commit f19a7f8

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@
3232
- Bump JavaScript SDK from v9.40.0 to v10.6.0 ([#3167](https://github.com/getsentry/sentry-dart/pull/3167), [#3201](https://github.com/getsentry/sentry-dart/pull/3201))
3333
- [changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md#1060)
3434
- [diff](https://github.com/getsentry/sentry-javascript/compare/9.40.0...10.6.0)
35+
- Bump Native SDK from v0.9.1 to v0.10.0 ([#3223](https://github.com/getsentry/sentry-dart/pull/3223))
36+
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#0100)
37+
- [diff](https://github.com/getsentry/sentry-native/compare/0.9.1...0.10.0)
3538

3639
## 9.7.0-beta.1
3740

packages/flutter/lib/src/native/c/binding.dart

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// ignore_for_file: unused_field
1+
// ignore_for_file: unused_field
22

33
// AUTO GENERATED FILE, DO NOT EDIT.
44
//
@@ -844,7 +844,6 @@ class SentryNative {
844844
_sdk_versionPtr.asFunction<ffi.Pointer<ffi.Char> Function()>();
845845

846846
/// Sentry SDK name set during build time.
847-
/// Deprecated: Please use sentry_options_get_sdk_name instead.
848847
ffi.Pointer<ffi.Char> sdk_name() {
849848
return _sdk_name();
850849
}
@@ -861,10 +860,12 @@ enum sentry_value_type_t {
861860
SENTRY_VALUE_TYPE_NULL(0),
862861
SENTRY_VALUE_TYPE_BOOL(1),
863862
SENTRY_VALUE_TYPE_INT32(2),
864-
SENTRY_VALUE_TYPE_DOUBLE(3),
865-
SENTRY_VALUE_TYPE_STRING(4),
866-
SENTRY_VALUE_TYPE_LIST(5),
867-
SENTRY_VALUE_TYPE_OBJECT(6);
863+
SENTRY_VALUE_TYPE_INT64(3),
864+
SENTRY_VALUE_TYPE_UINT64(4),
865+
SENTRY_VALUE_TYPE_DOUBLE(5),
866+
SENTRY_VALUE_TYPE_STRING(6),
867+
SENTRY_VALUE_TYPE_LIST(7),
868+
SENTRY_VALUE_TYPE_OBJECT(8);
868869

869870
final int value;
870871
const sentry_value_type_t(this.value);
@@ -873,10 +874,12 @@ enum sentry_value_type_t {
873874
0 => SENTRY_VALUE_TYPE_NULL,
874875
1 => SENTRY_VALUE_TYPE_BOOL,
875876
2 => SENTRY_VALUE_TYPE_INT32,
876-
3 => SENTRY_VALUE_TYPE_DOUBLE,
877-
4 => SENTRY_VALUE_TYPE_STRING,
878-
5 => SENTRY_VALUE_TYPE_LIST,
879-
6 => SENTRY_VALUE_TYPE_OBJECT,
877+
3 => SENTRY_VALUE_TYPE_INT64,
878+
4 => SENTRY_VALUE_TYPE_UINT64,
879+
5 => SENTRY_VALUE_TYPE_DOUBLE,
880+
6 => SENTRY_VALUE_TYPE_STRING,
881+
7 => SENTRY_VALUE_TYPE_LIST,
882+
8 => SENTRY_VALUE_TYPE_OBJECT,
880883
_ =>
881884
throw ArgumentError('Unknown value for sentry_value_type_t: $value'),
882885
};

packages/flutter/sentry-native/CMakeCache.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Basically, this is a properties file we use both in CMake and update-deps.yml to update dependencies.
33

44
repo=https://github.com/getsentry/sentry-native
5-
version=0.9.1
5+
version=0.10.0

0 commit comments

Comments
 (0)