File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed
Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 11# package: sentry changelog
22
3+ ## 2.1.0
4+
5+ - Support DNS format without secret key.
6+ - Remove dependency on ` package:quiver ` .
7+ - The ` clock ` argument to ` SentryClient ` constructor _ should_ now be
8+ ` ClockProvider ` (but still accepts ` Clock ` for backwards compatibility).
9+
310## 2.0.2
411
512- Add support for user context in Sentry events.
Original file line number Diff line number Diff line change @@ -48,9 +48,10 @@ class SentryClient {
4848 /// make HTTP calls to Sentry.io. This is useful in tests.
4949 ///
5050 /// If [clock] is provided, it is used to get time instead of the system
51- /// clock. This is useful in tests. Should be an implementation of ClockProvider.
51+ /// clock. This is useful in tests. Should be an implementation of [ ClockProvider] .
5252 /// This parameter is dynamic to maintain backwards compatibility with
53- /// previous use of Clock from the Quiver library.
53+ /// previous use of [Clock] (https://pub.dartlang.org/documentation/quiver/latest/quiver.time/Clock-class.html)
54+ /// from [`package:quiver`] (https://pub.dartlang.org/packages/quiver).
5455 ///
5556 /// If [uuidGenerator] is provided, it is used to generate the "event_id"
5657 /// field instead of the built-in random UUID v4 generator. This is useful in
Original file line number Diff line number Diff line change 99library version;
1010
1111/// The SDK version reported to Sentry.io in the submitted events.
12- const String sdkVersion = '2.0.2 ' ;
12+ const String sdkVersion = '2.1.0 ' ;
1313
1414/// The SDK name reported to Sentry.io in the submitted events.
1515const String sdkName = 'dart' ;
Original file line number Diff line number Diff line change 11name : sentry
2- version : 2.0.2
2+ version : 2.1.0
33description : A pure Dart Sentry.io client.
44author :
Flutter Authors <[email protected] > 55homepage : https://github.com/flutter/sentry
You can’t perform that action at this time.
0 commit comments