File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# package: sentry changelog
22
3+ ## 2.2.0
4+
5+ - Add a ` stackFrameFilter ` argument to ` SentryClient ` 's ` capture ` method (96be842).
6+ - Clean-up code using pre-Dart 2 API (91c7706, b01ebf8).
7+
38## 2.1.1
49
510- Defensively copy internal maps event attributes to
Original file line number Diff line number Diff line change 44
55import 'package:stack_trace/stack_trace.dart' ;
66
7- /// Used to filter or modify stack frames before sending stack trace. The stack
8- /// frames are in the Sentry.io format.
7+ /// Used to filter or modify stack frames before sending the stack trace.
8+ ///
9+ /// The input stack frames are in the Sentry.io JSON format. The output
10+ /// stack frames must follow the same format.
11+ ///
12+ /// Detailed documentation about the stack trace format is on Sentry.io's
13+ /// web-site: https://docs.sentry.io/development/sdk-dev/overview/.
914typedef StackFrameFilter = List <Map <String , dynamic >> Function (
1015 List <Map <String , dynamic >>);
1116
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.1.1 ' ;
12+ const String sdkVersion = '2.2.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.1.1
2+ version : 2.2.0
33description : A pure Dart Sentry.io client.
44author : Flutter Authors <flutter-dev@googlegroups.com>
55homepage : https://github.com/flutter/sentry
66
77environment :
8- sdk : " >=2.0.0-dev.28.0 <3.0.0"
8+ sdk : " >=2.0.0 <3.0.0"
99
1010dependencies :
1111 http : " >=0.11.0 <2.0.0"
Original file line number Diff line number Diff line change 44set -x
55
66pub get
7- dartanalyzer --strong -- fatal-warnings ./
7+ dartanalyzer --fatal-warnings ./
88pub run test --platform vm
99./tool/dart2_test.sh
1010dartfmt -n --set-exit-if-changed ./
You can’t perform that action at this time.
0 commit comments