forked from openfoodfacts/smooth-app
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): bump sentry_flutter from 7.18.0 to 8.3.0 in /packages/sm…
…ooth_app (openfoodfacts#5477) * chore(deps): bump sentry_flutter in /packages/smooth_app Bumps [sentry_flutter](https://github.com/getsentry/sentry-dart) from 7.18.0 to 8.3.0. - [Release notes](https://github.com/getsentry/sentry-dart/releases) - [Changelog](https://github.com/getsentry/sentry-dart/blob/main/CHANGELOG.md) - [Commits](getsentry/sentry-dart@7.18.0...8.3.0) --- updated-dependencies: - dependency-name: sentry_flutter dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * minor fix --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: monsieurtanuki <[email protected]> Co-authored-by: Cirrus CI <[email protected]>
- Loading branch information
1 parent
087b21c
commit 5136e9d
Showing
3 changed files
with
12 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -221,9 +221,9 @@ class AnalyticsHelper { | |
..dsn = | ||
'https://[email protected]/5376745' | ||
..beforeSend = ( | ||
SentryEvent event, { | ||
Hint? hint, | ||
}) async { | ||
SentryEvent event, | ||
Hint hint, | ||
) async { | ||
return event.copyWith( | ||
tags: <String, String>{ | ||
'store': GlobalVars.storeLabel.name, | ||
|
@@ -265,8 +265,10 @@ class AnalyticsHelper { | |
static bool get isEnabled => | ||
_analyticsReporting == _AnalyticsTrackingMode.enabled; | ||
|
||
static FutureOr<SentryEvent?> _beforeSend(SentryEvent event, | ||
{dynamic hint}) async { | ||
static FutureOr<SentryEvent?> _beforeSend( | ||
SentryEvent event, | ||
dynamic hint, | ||
) async { | ||
if (!_crashReports) { | ||
return null; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters