File tree 5 files changed +16
-6
lines changed
5 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 1
1
# package: sentry changelog
2
2
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
+
3
8
## 2.1.1
4
9
5
10
- Defensively copy internal maps event attributes to
Original file line number Diff line number Diff line change 4
4
5
5
import 'package:stack_trace/stack_trace.dart' ;
6
6
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/.
9
14
typedef StackFrameFilter = List <Map <String , dynamic >> Function (
10
15
List <Map <String , dynamic >>);
11
16
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.1.1 ' ;
12
+ const String sdkVersion = '2.2.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.1.1
2
+ version : 2.2.0
3
3
description : A pure Dart Sentry.io client.
4
4
author :
Flutter Authors <[email protected] >
5
5
homepage : https://github.com/flutter/sentry
6
6
7
7
environment :
8
- sdk : " >=2.0.0-dev.28.0 <3.0.0"
8
+ sdk : " >=2.0.0 <3.0.0"
9
9
10
10
dependencies :
11
11
http : " >=0.11.0 <2.0.0"
Original file line number Diff line number Diff line change 4
4
set -x
5
5
6
6
pub get
7
- dartanalyzer --strong -- fatal-warnings ./
7
+ dartanalyzer --fatal-warnings ./
8
8
pub run test --platform vm
9
9
./tool/dart2_test.sh
10
10
dartfmt -n --set-exit-if-changed ./
You can’t perform that action at this time.
0 commit comments