File tree 9 files changed +33
-11
lines changed
9 files changed +33
-11
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.0.0
4
+ - Added ` mapFirst ` and ` mapSecond ` to ` Tuple2 ` to map over a pair's values.
5
+ - ` Persistable ` now defines the ` Comparable ` instead of using ` dynamic ` .
6
+ - Hid ` *Record ` type-safe key value paths.
7
+
3
8
## 0.4.0-beta
4
9
5
10
- New generic, functional ` TableSet ` collection that abstracts SQL declarations by allowing the management of sqlite3 tables as standard Dart ` Set ` collections over ` Serializable ` sealed immutable classes.
Original file line number Diff line number Diff line change 1
1
name : rollbar_common
2
2
description : Commons package used by the Rollbar Dart and Flutter SDKs for error reporting.
3
- version : 0.4.0-beta
3
+ version : 1.0.0
4
4
homepage : https://www.rollbar.com
5
5
documentation : https://docs.rollbar.com/docs/flutter#dart
6
6
repository : https://github.com/rollbar/rollbar-flutter
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.0.0
4
+
5
+ - New feature: Person tracking
6
+ - Associate reports to your currently logged in User.
7
+ - Users may be set freely, but don't persist in-between application runs.
8
+ - Occurrences and items reported on Rollbar will have a User associated with them, allowing to organize and track issues pertaining to specific users.
9
+ - Various bug fixes and performance improvements.
10
+
3
11
## 0.4.0-beta
4
12
5
13
- New feature: Telemetry.
Original file line number Diff line number Diff line change 1
1
name : rollbar_dart_example
2
2
description : Demonstrates how to use rollbar-dart
3
- version : 0.4 .0
3
+ version : 1.0 .0
4
4
5
5
publish_to : ' none'
6
6
@@ -9,7 +9,7 @@ environment:
9
9
10
10
dependencies :
11
11
logging : ^1.0.2
12
- rollbar_dart : ^0.3.0-beta
12
+ rollbar_dart : ^1.0.0
13
13
14
14
dependency_overrides :
15
15
rollbar_common :
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import '../event.dart';
8
8
9
9
abstract class Notifier {
10
10
// notifier version to be updated with each new release: [todo] automate
11
- static const version = '0.4.0-beta ' ;
11
+ static const version = '1.0.0 ' ;
12
12
static const name = 'rollbar-dart' ;
13
13
14
14
Sender get sender;
Original file line number Diff line number Diff line change 1
1
name : rollbar_dart
2
2
description : Connect your Dart applications to Rollbar for error reporting.
3
- version : 0.4.0-beta
3
+ version : 1.0.0
4
4
homepage : https://www.rollbar.com
5
5
documentation : https://docs.rollbar.com/docs/flutter#dart
6
6
repository : https://github.com/rollbar/rollbar-flutter
@@ -14,7 +14,7 @@ dependencies:
14
14
sqlite3 : ^1.7.0
15
15
collection : ^1.16.0
16
16
stack_trace : ^1.10.0
17
- rollbar_common : ^0.4.0-beta
17
+ rollbar_common : ^1.0.0
18
18
19
19
dependency_overrides :
20
20
rollbar_common :
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.0.0
4
+ - New feature: Person tracking
5
+ - Associate reports to your currently logged in User.
6
+ - Users may be set freely, but don't persist in-between application runs.
7
+ - Occurrences and items reported on Rollbar will have a User associated with them, allowing to organize and track issues pertaining to specific users.
8
+ - We now capture extended Flutter exception and error details which contain extra data and breadcrumbs about UI-related issues.
9
+ - Various bug fixes and performance improvements.
10
+
3
11
## 0.4.0-beta
12
+
4
13
- Updated Example to showcase the new Telemetry feature.
5
14
- Fixed an issue where occurrences weren't being persisted by sqlite3, therefore Rollbar reports could be lost after a crash.
6
15
Original file line number Diff line number Diff line change 1
1
name : rollbar_flutter_example
2
2
description : Demonstrates how to use the rollbar_flutter plugin.
3
- version : 0.4 .0
3
+ version : 1.0 .0
4
4
5
5
publish_to : ' none' # Remove this line if you wish to publish to pub.dev
6
6
@@ -11,7 +11,7 @@ environment:
11
11
dependencies :
12
12
flutter :
13
13
sdk : flutter
14
- rollbar_flutter : ^0.3 .0-beta
14
+ rollbar_flutter : ^1.0 .0-beta
15
15
cupertino_icons : ^1.0.0
16
16
17
17
dependency_overrides :
Original file line number Diff line number Diff line change 1
1
name : rollbar_flutter
2
2
description : Connect your Flutter applications to Rollbar for error reporting.
3
- version : 0.4.0-beta
3
+ version : 1.0.0
4
4
homepage : https://www.rollbar.com
5
5
documentation : https://docs.rollbar.com/docs/flutter#flutter
6
6
repository : https://github.com/rollbar/rollbar-flutter
@@ -15,8 +15,8 @@ dependencies:
15
15
meta : ^1.7.0
16
16
connectivity_plus : ^2.3.6
17
17
sqlite3_flutter_libs : ^0.5.9
18
- rollbar_common : ^0.4.0-beta
19
- rollbar_dart : ^0.4.0-beta
18
+ rollbar_common : ^1.0.0
19
+ rollbar_dart : ^1.0.0
20
20
21
21
dependency_overrides :
22
22
rollbar_common :
You can’t perform that action at this time.
0 commit comments