Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.4.2 #111

Merged
merged 2 commits into from
Aug 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.4.2

- Updated the hooking mechanism to use `PlatformDispatcher` instead of a custom `Zone` when using Flutter 3.3 or above.
- The old mechanism will be used when using a pre-3.3 Flutter version.
- Not using a custom `Zone` should improve startup performance.

## 1.4.1

- Fixed the SDK not hooking properly to the Flutter framework `onError` callback.
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.4.1
version: 1.4.2

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.3.0
rollbar_flutter: ^1.4.0
cupertino_icons: ^1.0.0

dependency_overrides:
Expand Down
4 changes: 2 additions & 2 deletions rollbar_flutter/ios/rollbar_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'rollbar_flutter'
s.version = '1.4.1'
s.version = '1.4.2'
s.summary = 'Connect your Flutter applications to Rollbar for error reporting.'
s.description = <<-DESC
Connect your Flutter applications to Rollbar for error reporting.
Expand All @@ -16,7 +16,7 @@ Connect your Flutter applications to Rollbar for error reporting.
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
s.dependency 'RollbarNotifier', '~> 3.0.1'
s.dependency 'RollbarNotifier', '~> 3.1.0'
s.static_framework = true
s.platform = :ios, '14.0'

Expand Down
2 changes: 1 addition & 1 deletion 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.4.1
version: 1.4.2
homepage: https://www.rollbar.com
documentation: https://docs.rollbar.com/docs/flutter#flutter
repository: https://github.com/rollbar/rollbar-flutter
Expand Down
Loading