Skip to content

Commit ab6e938

Browse files
authored
Merge branch 'main' into enh/json-deserializer
2 parents 4ef34f0 + 824c070 commit ab6e938

64 files changed

Lines changed: 2668 additions & 883 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/flutter.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,15 +103,16 @@ jobs:
103103
with:
104104
name: sentry_flutter
105105
file: ./flutter/coverage/lcov.info
106-
functionalities: "search" # remove after https://github.com/codecov/codecov-action/issues/600
106+
functionalities: 'search' # remove after https://github.com/codecov/codecov-action/issues/600
107107
token: ${{ secrets.CODECOV_TOKEN }}
108108

109109
- uses: VeryGoodOpenSource/very_good_coverage@c953fca3e24a915e111cc6f55f03f756dcb3964c # [email protected]
110110
if: matrix.sdk == 'stable' && matrix.target == 'linux'
111111
with:
112112
path: './flutter/coverage/lcov.info'
113113
min_coverage: 90
114-
exclude: 'lib/src/native/cocoa/binding.dart'
114+
# 'native/c' for now because we run coverage on Linux where these are not tested yet.
115+
exclude: 'lib/src/native/cocoa/binding.dart lib/src/native/c/*'
115116

116117
- name: Build ${{ matrix.target }}
117118
working-directory: flutter/example

.github/workflows/update-deps.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Update Dependencies
33
on:
44
# Run every day.
55
schedule:
6-
- cron: "0 3 * * *"
6+
- cron: '0 3 * * *'
77
# And on on every PR merge so we get the updated dependencies ASAP, and to make sure the changelog doesn't conflict.
88
push:
99
branches:
@@ -27,6 +27,14 @@ jobs:
2727
secrets:
2828
api-token: ${{ secrets.CI_DEPLOY_KEY }}
2929

30+
native:
31+
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
32+
with:
33+
path: flutter/scripts/update-native.sh
34+
name: Native SDK
35+
secrets:
36+
api-token: ${{ secrets.CI_DEPLOY_KEY }}
37+
3038
metrics-flutter:
3139
uses: getsentry/github-workflows/.github/workflows/updater.yml@v2
3240
with:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@
66

77
- Emit `transaction.data` inside `contexts.trace.data` ([#2284](https://github.com/getsentry/sentry-dart/pull/2284))
88
- Blocking app starts if "appLaunchedInForeground" is false. (Android only) ([#2291](https://github.com/getsentry/sentry-dart/pull/2291))
9+
- Windows native error & obfuscation support ([#2286](https://github.com/getsentry/sentry-dart/pull/2286))
910

1011
### Enhancements
1112

1213
- Use native spotlight integrations on Flutter Android, iOS, macOS ([#2285](https://github.com/getsentry/sentry-dart/pull/2285))
1314
- Improve app start integration ([#2266](https://github.com/getsentry/sentry-dart/pull/2266))
1415
- Fixes ([#2103](https://github.com/getsentry/sentry-dart/issues/2103))
1516
- Fixes ([#2233](https://github.com/getsentry/sentry-dart/issues/2233))
17+
- Only store slow and frozen frames for frame delay calculation ([#2337](https://github.com/getsentry/sentry-dart/pull/2337))
1618

1719
### Fixes
1820

@@ -22,6 +24,7 @@
2224
- iOS replay integration when only `onErrorSampleRate` is specified ([#2306](https://github.com/getsentry/sentry-dart/pull/2306))
2325
- Fix TTID timing issue ([#2326](https://github.com/getsentry/sentry-dart/pull/2326))
2426
- Accessing invalid json fields from `fetchNativeAppStart` should return null ([#2340](https://github.com/getsentry/sentry-dart/pull/2340))
27+
- Error when calling `SentryFlutter.reportFullyDisplayed()` twice ([#2339](https://github.com/getsentry/sentry-dart/pull/2339))
2528

2629
### Deprecate
2730

@@ -33,6 +36,9 @@
3336
- Bump Cocoa SDK from v8.36.0 to v8.37.0 ([#2334](https://github.com/getsentry/sentry-dart/pull/2334))
3437
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8370)
3538
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.36.0...8.37.0)
39+
- Bump Android SDK from v7.14.0 to v7.15.0 ([#2342](https://github.com/getsentry/sentry-dart/pull/2342))
40+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#7150)
41+
- [diff](https://github.com/getsentry/sentry-java/compare/7.14.0...7.15.0)
3642

3743
## 8.9.0
3844

dart/lib/src/debug_image_extractor.dart

Lines changed: 0 additions & 195 deletions
This file was deleted.

0 commit comments

Comments
 (0)