Skip to content

Commit 464f666

Browse files
authored
Merge pull request #82 from rollbar/publish-1.0.0
2 parents 647ca33 + 2cce46d commit 464f666

File tree

9 files changed

+33
-11
lines changed

9 files changed

+33
-11
lines changed

rollbar_common/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

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+
38
## 0.4.0-beta
49

510
- 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.

rollbar_common/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: rollbar_common
22
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
44
homepage: https://www.rollbar.com
55
documentation: https://docs.rollbar.com/docs/flutter#dart
66
repository: https://github.com/rollbar/rollbar-flutter

rollbar_dart/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

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+
311
## 0.4.0-beta
412

513
- New feature: Telemetry.

rollbar_dart/example/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: rollbar_dart_example
22
description: Demonstrates how to use rollbar-dart
3-
version: 0.4.0
3+
version: 1.0.0
44

55
publish_to: 'none'
66

@@ -9,7 +9,7 @@ environment:
99

1010
dependencies:
1111
logging: ^1.0.2
12-
rollbar_dart: ^0.3.0-beta
12+
rollbar_dart: ^1.0.0
1313

1414
dependency_overrides:
1515
rollbar_common:

rollbar_dart/lib/src/notifier/notifier.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import '../event.dart';
88

99
abstract class Notifier {
1010
// 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';
1212
static const name = 'rollbar-dart';
1313

1414
Sender get sender;

rollbar_dart/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: rollbar_dart
22
description: Connect your Dart applications to Rollbar for error reporting.
3-
version: 0.4.0-beta
3+
version: 1.0.0
44
homepage: https://www.rollbar.com
55
documentation: https://docs.rollbar.com/docs/flutter#dart
66
repository: https://github.com/rollbar/rollbar-flutter
@@ -14,7 +14,7 @@ dependencies:
1414
sqlite3: ^1.7.0
1515
collection: ^1.16.0
1616
stack_trace: ^1.10.0
17-
rollbar_common: ^0.4.0-beta
17+
rollbar_common: ^1.0.0
1818

1919
dependency_overrides:
2020
rollbar_common:

rollbar_flutter/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Changelog
22

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+
311
## 0.4.0-beta
12+
413
- Updated Example to showcase the new Telemetry feature.
514
- Fixed an issue where occurrences weren't being persisted by sqlite3, therefore Rollbar reports could be lost after a crash.
615

rollbar_flutter/example/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: rollbar_flutter_example
22
description: Demonstrates how to use the rollbar_flutter plugin.
3-
version: 0.4.0
3+
version: 1.0.0
44

55
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
66

@@ -11,7 +11,7 @@ environment:
1111
dependencies:
1212
flutter:
1313
sdk: flutter
14-
rollbar_flutter: ^0.3.0-beta
14+
rollbar_flutter: ^1.0.0-beta
1515
cupertino_icons: ^1.0.0
1616

1717
dependency_overrides:

rollbar_flutter/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: rollbar_flutter
22
description: Connect your Flutter applications to Rollbar for error reporting.
3-
version: 0.4.0-beta
3+
version: 1.0.0
44
homepage: https://www.rollbar.com
55
documentation: https://docs.rollbar.com/docs/flutter#flutter
66
repository: https://github.com/rollbar/rollbar-flutter
@@ -15,8 +15,8 @@ dependencies:
1515
meta: ^1.7.0
1616
connectivity_plus: ^2.3.6
1717
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
2020

2121
dependency_overrides:
2222
rollbar_common:

0 commit comments

Comments
 (0)