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 1
1
# package: sentry changelog
2
2
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
+
3
10
## 2.0.2
4
11
5
12
- Add support for user context in Sentry events.
Original file line number Diff line number Diff line change @@ -48,9 +48,10 @@ class SentryClient {
48
48
/// make HTTP calls to Sentry.io. This is useful in tests.
49
49
///
50
50
/// 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] .
52
52
/// 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).
54
55
///
55
56
/// If [uuidGenerator] is provided, it is used to generate the "event_id"
56
57
/// field instead of the built-in random UUID v4 generator. This is useful in
Original file line number Diff line number Diff line change 9
9
library version;
10
10
11
11
/// 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 ' ;
13
13
14
14
/// The SDK name reported to Sentry.io in the submitted events.
15
15
const String sdkName = 'dart' ;
Original file line number Diff line number Diff line change 1
1
name : sentry
2
- version : 2.0.2
2
+ version : 2.1.0
3
3
description : A pure Dart Sentry.io client.
4
4
author : Flutter Authors <flutter-dev@googlegroups.com>
5
5
homepage : https://github.com/flutter/sentry
You can’t perform that action at this time.
0 commit comments