-
-
Notifications
You must be signed in to change notification settings - Fork 237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pin sentry version #1020
Pin sentry version #1020
Conversation
Codecov ReportBase: 90.05% // Head: 90.12% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #1020 +/- ##
==========================================
+ Coverage 90.05% 90.12% +0.07%
==========================================
Files 105 114 +9
Lines 3357 3554 +197
==========================================
+ Hits 3023 3203 +180
- Misses 334 351 +17
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
I think this may reduce the pana score, may need some adaptions as well there. |
Do you think so? I ran pana locally, and it returned the max score. |
@timekone please add a changelog entry, so we can merge it, thanks for doing this. |
Ah nice, that is good. I thought pub and pana once had a warning for pinned versions in libraries. |
Resolves #1021
flutter_sentry
andsentry
packages versions should be in sync. Using caret symbol^
may cause mismatch of versions and a build fail.Example:
sentry_flutter 6.7.0
depends onsentry: ^6.7.0
A user has
sentry_flutter: 6.7.0
(without caret symbol) in their pubspec.yaml.sentry_flutter: 6.7.0
depends onSentryTracer.addMeasurements()
.SentryTracer.addMeasurements()
was removed insentry 6.11.0
.This means that
sentry_flutter 6.7.0
is incompatible withsentry 6.11.0
.