Skip to content

Commit

Permalink
Updated version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
matux committed Nov 14, 2022
1 parent 1701656 commit 657724e
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 11 deletions.
5 changes: 5 additions & 0 deletions rollbar_common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.1.0
- Added Result<T, E>, a class that represents either a `Success` value _or_ a `Failure` with an `Error`.
- Timestamps are now defined by the `Persistable` class.
- Added more extensions.

## 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`.
Expand Down
2 changes: 1 addition & 1 deletion rollbar_common/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: rollbar_common
description: Commons package used by the Rollbar Dart and Flutter SDKs for error reporting.
version: 1.0.0
version: 1.1.0
homepage: https://www.rollbar.com
documentation: https://docs.rollbar.com/docs/flutter#dart
repository: https://github.com/rollbar/rollbar-flutter
Expand Down
6 changes: 6 additions & 0 deletions rollbar_dart/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 1.1.0
- A more robust Persistent HTTP Sender error handling strategy allows for better outcomes and recovery in case of server and client errors.
- The Rollbar SDK will now produce more informative logs when dealing with network, HTTP client and/or server errors.
- HTTP client has been modularized in order to support mocking and noop clients.
- Fixed a bug where persisted payloads that couldn't be sent due to an incorrect endpoint or access token in the Config, would never be sent again when corrected.

## 1.0.0

- New feature: Person tracking
Expand Down
4 changes: 2 additions & 2 deletions rollbar_dart/example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: rollbar_dart_example
description: Demonstrates how to use rollbar-dart
version: 1.0.0
version: 1.1.0

publish_to: 'none'

Expand All @@ -9,7 +9,7 @@ environment:

dependencies:
logging: ^1.0.2
rollbar_dart: ^1.0.0
rollbar_dart: ^1.1.0

dependency_overrides:
rollbar_common:
Expand Down
2 changes: 1 addition & 1 deletion rollbar_dart/lib/src/notifier/notifier.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import '../event.dart';

abstract class Notifier {
// notifier version to be updated with each new release: [todo] automate
static const version = '1.0.0';
static const version = '1.1.0';
static const name = 'rollbar-dart';

Sender get sender;
Expand Down
4 changes: 2 additions & 2 deletions rollbar_dart/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: rollbar_dart
description: Connect your Dart applications to Rollbar for error reporting.
version: 1.0.0
version: 1.1.0
homepage: https://www.rollbar.com
documentation: https://docs.rollbar.com/docs/flutter#dart
repository: https://github.com/rollbar/rollbar-flutter
Expand All @@ -14,7 +14,7 @@ dependencies:
sqlite3: ^1.7.0
collection: ^1.16.0
stack_trace: ^1.10.0
rollbar_common: ^1.0.0
rollbar_common: ^1.1.0

dependency_overrides:
rollbar_common:
Expand Down
6 changes: 6 additions & 0 deletions rollbar_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 1.1.0
- A more robust Persistent HTTP Sender error handling strategy allows for better outcomes and recovery in case of server and client errors.
- The Rollbar SDK will now produce more informative logs when dealing with network, HTTP client and/or server errors.
- HTTP client has been modularized in order to support mocking and noop clients.
- Fixed a bug where persisted payloads that couldn't be sent due to an incorrect endpoint or access token in the Config, would never be sent again when corrected.

## 1.0.0
- New feature: Person tracking
- Associate reports to your currently logged in User.
Expand Down
4 changes: 2 additions & 2 deletions rollbar_flutter/example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: rollbar_flutter_example
description: Demonstrates how to use the rollbar_flutter plugin.
version: 1.0.0
version: 1.1.0

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

Expand All @@ -11,7 +11,7 @@ environment:
dependencies:
flutter:
sdk: flutter
rollbar_flutter: ^1.0.0-beta
rollbar_flutter: ^1.1.0
cupertino_icons: ^1.0.0

dependency_overrides:
Expand Down
6 changes: 3 additions & 3 deletions rollbar_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: rollbar_flutter
description: Connect your Flutter applications to Rollbar for error reporting.
version: 1.0.0
version: 1.1.0
homepage: https://www.rollbar.com
documentation: https://docs.rollbar.com/docs/flutter#flutter
repository: https://github.com/rollbar/rollbar-flutter
Expand All @@ -15,8 +15,8 @@ dependencies:
meta: ^1.7.0
connectivity_plus: ^2.3.6
sqlite3_flutter_libs: ^0.5.9
rollbar_common: ^1.0.0
rollbar_dart: ^1.0.0
rollbar_common: ^1.1.0
rollbar_dart: ^1.1.0

dependency_overrides:
rollbar_common:
Expand Down

0 comments on commit 657724e

Please sign in to comment.