From 2cce46decf9c584e7599fe06c8df44808bdc2a99 Mon Sep 17 00:00:00 2001 From: Matias Pequeno Date: Wed, 26 Oct 2022 20:25:32 +0200 Subject: [PATCH] Updated versions to 1.0.0. --- rollbar_common/CHANGELOG.md | 5 +++++ rollbar_common/pubspec.yaml | 2 +- rollbar_dart/CHANGELOG.md | 8 ++++++++ rollbar_dart/example/pubspec.yaml | 4 ++-- rollbar_dart/lib/src/notifier/notifier.dart | 2 +- rollbar_dart/pubspec.yaml | 4 ++-- rollbar_flutter/CHANGELOG.md | 9 +++++++++ rollbar_flutter/example/pubspec.yaml | 4 ++-- rollbar_flutter/pubspec.yaml | 6 +++--- 9 files changed, 33 insertions(+), 11 deletions(-) diff --git a/rollbar_common/CHANGELOG.md b/rollbar_common/CHANGELOG.md index ae898db..0d3b635 100644 --- a/rollbar_common/CHANGELOG.md +++ b/rollbar_common/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.0.0 +- Added `mapFirst` and `mapSecond` to `Tuple2` to map over a pair's values. +- `Persistable` now defines the `Comparable` instead of using `dynamic`. +- Hid `*Record` type-safe key value paths. + ## 0.4.0-beta - 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. diff --git a/rollbar_common/pubspec.yaml b/rollbar_common/pubspec.yaml index fc1a6eb..d737358 100644 --- a/rollbar_common/pubspec.yaml +++ b/rollbar_common/pubspec.yaml @@ -1,6 +1,6 @@ name: rollbar_common description: Commons package used by the Rollbar Dart and Flutter SDKs for error reporting. -version: 0.4.0-beta +version: 1.0.0 homepage: https://www.rollbar.com documentation: https://docs.rollbar.com/docs/flutter#dart repository: https://github.com/rollbar/rollbar-flutter diff --git a/rollbar_dart/CHANGELOG.md b/rollbar_dart/CHANGELOG.md index 4988399..eef2ba1 100644 --- a/rollbar_dart/CHANGELOG.md +++ b/rollbar_dart/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.0.0 + +- New feature: Person tracking + - Associate reports to your currently logged in User. + - Users may be set freely, but don't persist in-between application runs. + - Occurrences and items reported on Rollbar will have a User associated with them, allowing to organize and track issues pertaining to specific users. +- Various bug fixes and performance improvements. + ## 0.4.0-beta - New feature: Telemetry. diff --git a/rollbar_dart/example/pubspec.yaml b/rollbar_dart/example/pubspec.yaml index 2fe7aff..f775016 100644 --- a/rollbar_dart/example/pubspec.yaml +++ b/rollbar_dart/example/pubspec.yaml @@ -1,6 +1,6 @@ name: rollbar_dart_example description: Demonstrates how to use rollbar-dart -version: 0.4.0 +version: 1.0.0 publish_to: 'none' @@ -9,7 +9,7 @@ environment: dependencies: logging: ^1.0.2 - rollbar_dart: ^0.3.0-beta + rollbar_dart: ^1.0.0 dependency_overrides: rollbar_common: diff --git a/rollbar_dart/lib/src/notifier/notifier.dart b/rollbar_dart/lib/src/notifier/notifier.dart index e62b120..1ba445e 100644 --- a/rollbar_dart/lib/src/notifier/notifier.dart +++ b/rollbar_dart/lib/src/notifier/notifier.dart @@ -8,7 +8,7 @@ import '../event.dart'; abstract class Notifier { // notifier version to be updated with each new release: [todo] automate - static const version = '0.4.0-beta'; + static const version = '1.0.0'; static const name = 'rollbar-dart'; Sender get sender; diff --git a/rollbar_dart/pubspec.yaml b/rollbar_dart/pubspec.yaml index 79c28e8..9c7037e 100644 --- a/rollbar_dart/pubspec.yaml +++ b/rollbar_dart/pubspec.yaml @@ -1,6 +1,6 @@ name: rollbar_dart description: Connect your Dart applications to Rollbar for error reporting. -version: 0.4.0-beta +version: 1.0.0 homepage: https://www.rollbar.com documentation: https://docs.rollbar.com/docs/flutter#dart repository: https://github.com/rollbar/rollbar-flutter @@ -14,7 +14,7 @@ dependencies: sqlite3: ^1.7.0 collection: ^1.16.0 stack_trace: ^1.10.0 - rollbar_common: ^0.4.0-beta + rollbar_common: ^1.0.0 dependency_overrides: rollbar_common: diff --git a/rollbar_flutter/CHANGELOG.md b/rollbar_flutter/CHANGELOG.md index a0d035b..772bdaa 100644 --- a/rollbar_flutter/CHANGELOG.md +++ b/rollbar_flutter/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog +## 1.0.0 +- New feature: Person tracking + - Associate reports to your currently logged in User. + - Users may be set freely, but don't persist in-between application runs. + - Occurrences and items reported on Rollbar will have a User associated with them, allowing to organize and track issues pertaining to specific users. +- We now capture extended Flutter exception and error details which contain extra data and breadcrumbs about UI-related issues. +- Various bug fixes and performance improvements. + ## 0.4.0-beta + - Updated Example to showcase the new Telemetry feature. - Fixed an issue where occurrences weren't being persisted by sqlite3, therefore Rollbar reports could be lost after a crash. diff --git a/rollbar_flutter/example/pubspec.yaml b/rollbar_flutter/example/pubspec.yaml index 74978f9..d60fc30 100644 --- a/rollbar_flutter/example/pubspec.yaml +++ b/rollbar_flutter/example/pubspec.yaml @@ -1,6 +1,6 @@ name: rollbar_flutter_example description: Demonstrates how to use the rollbar_flutter plugin. -version: 0.4.0 +version: 1.0.0 publish_to: 'none' # Remove this line if you wish to publish to pub.dev @@ -11,7 +11,7 @@ environment: dependencies: flutter: sdk: flutter - rollbar_flutter: ^0.3.0-beta + rollbar_flutter: ^1.0.0-beta cupertino_icons: ^1.0.0 dependency_overrides: diff --git a/rollbar_flutter/pubspec.yaml b/rollbar_flutter/pubspec.yaml index 314a3e2..83f6a91 100644 --- a/rollbar_flutter/pubspec.yaml +++ b/rollbar_flutter/pubspec.yaml @@ -1,6 +1,6 @@ name: rollbar_flutter description: Connect your Flutter applications to Rollbar for error reporting. -version: 0.4.0-beta +version: 1.0.0 homepage: https://www.rollbar.com documentation: https://docs.rollbar.com/docs/flutter#flutter repository: https://github.com/rollbar/rollbar-flutter @@ -15,8 +15,8 @@ dependencies: meta: ^1.7.0 connectivity_plus: ^2.3.6 sqlite3_flutter_libs: ^0.5.9 - rollbar_common: ^0.4.0-beta - rollbar_dart: ^0.4.0-beta + rollbar_common: ^1.0.0 + rollbar_dart: ^1.0.0 dependency_overrides: rollbar_common: