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

Updated version to 1.2.0 and libraries, and updated changelog. #87

Merged
merged 3 commits into from
Dec 8, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Updated version to 1.2.0 and libraries, and updated changelog.
  • Loading branch information
matux committed Dec 8, 2022
commit dc4e052ac7cb5ecc667305f3fe0288a6e5633a2b
5 changes: 5 additions & 0 deletions rollbar_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.2.0
- Updated internal Rollbar Apple SDK from 1.x to 2.3.4.
- Using the newest version of the Rollbar Apple SDK will improve the ability for users to catch _native_ errors and fix them while using the Flutter SDK.
- Fixed compilation issue when running on iOS Simulator with Apple Silicon `arm64`.

## 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.
Expand Down
7 changes: 5 additions & 2 deletions rollbar_flutter/example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,17 @@ PODS:
- sqlite3/common (3.39.3)
- sqlite3/fts5 (3.39.3):
- sqlite3/common
- sqlite3/json1 (3.39.3):
- sqlite3/common
- sqlite3/perf-threadsafe (3.39.3):
- sqlite3/common
- sqlite3/rtree (3.39.3):
- sqlite3/common
- sqlite3_flutter_libs (0.0.1):
- Flutter
- sqlite3 (~> 3.39.3)
- sqlite3 (~> 3.39.2)
- sqlite3/fts5
- sqlite3/json1
- sqlite3/perf-threadsafe
- sqlite3/rtree

Expand Down Expand Up @@ -66,7 +69,7 @@ SPEC CHECKSUMS:
RollbarNotifier: 97b177c3493571f74cef5f793801c4a191f4d918
RollbarPLCrashReporter: bf0e742bd2d799d4c79a83108e4e7bfd6107db87
sqlite3: 50117e9e063a9ef2b865f7bdf2f2601e5d368e9a
sqlite3_flutter_libs: c6ab7f23670a98fef45a137159452004bc552168
sqlite3_flutter_libs: 1641350489d5c2bcb9d0773ade9693624111b24c

PODFILE CHECKSUM: d2243213672c3c48aae53c36642ba411a6be7309

Expand Down
6 changes: 3 additions & 3 deletions rollbar_flutter/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ name: rollbar_flutter_example
description: Demonstrates how to use the rollbar_flutter plugin.
version: 1.1.0

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

environment:
sdk: ">=2.17.0 <3.0.0"
flutter: '>=3.0.0'
flutter: ">=3.0.0"

dependencies:
flutter:
sdk: flutter
rollbar_flutter: ^1.1.0
rollbar_flutter: ^1.2.0
cupertino_icons: ^1.0.0

dependency_overrides:
Expand Down
8 changes: 4 additions & 4 deletions rollbar_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
name: rollbar_flutter
description: Connect your Flutter applications to Rollbar for error reporting.
version: 1.1.0
version: 1.2.0
homepage: https://www.rollbar.com
documentation: https://docs.rollbar.com/docs/flutter#flutter
repository: https://github.com/rollbar/rollbar-flutter

environment:
sdk: '>=2.17.0 <3.0.0'
flutter: '>=3.0.0'
sdk: ">=2.17.0 <3.0.0"
flutter: ">=3.0.0"

dependencies:
flutter:
sdk: flutter
meta: ^1.7.0
connectivity_plus: ^2.3.6
connectivity_plus: ^3.0.0
sqlite3_flutter_libs: ^0.5.9
rollbar_common: ^1.1.0
rollbar_dart: ^1.1.0
Expand Down