Skip to content

Commit acd29b1

Browse files
authored
Merge pull request #114 from rollbar/sdk150
Updated internal Rollbar SDK to 3.2.0
2 parents 3da9fb4 + 3689ff3 commit acd29b1

File tree

7 files changed

+15
-9
lines changed

7 files changed

+15
-9
lines changed

rollbar_flutter/CHANGELOG.md

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

3+
## 1.5.0
4+
5+
- Updated internal Rollbar Apple SDK to 3.2.0
6+
- The Flutter SDK now supports all Apple OS versions currently supported by Apple:
7+
- The minimum OS requirements are now: iOS 11, iPadOS 11, macOS 10.13 and watchOS 4.0.
8+
39
## 1.4.3
410

511
- Bumped version of `connectivity_plus` dependency to `^4.0.0`.

rollbar_flutter/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ See the [`example` directory](./example/) for a complete example.
3232

3333
## Compatibility
3434

35-
- Flutter 2: version **2.8.1** and above
35+
- Flutter 3: version **3.0.0** and above
3636

3737
Logging version-specific issues, even outside of the supported versions, is welcome and they will be fixed whenever possible.
3838

rollbar_flutter/example/ios/Podfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
platform :ios, '14.0'
1+
platform :ios, '11.0'
22

33
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
44
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

rollbar_flutter/example/ios/Runner.xcodeproj/project.pbxproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@
353353
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
354354
GCC_WARN_UNUSED_FUNCTION = YES;
355355
GCC_WARN_UNUSED_VARIABLE = YES;
356-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
356+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
357357
MTL_ENABLE_DEBUG_INFO = NO;
358358
SDKROOT = iphoneos;
359359
SUPPORTED_PLATFORMS = iphoneos;
@@ -429,7 +429,7 @@
429429
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
430430
GCC_WARN_UNUSED_FUNCTION = YES;
431431
GCC_WARN_UNUSED_VARIABLE = YES;
432-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
432+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
433433
MTL_ENABLE_DEBUG_INFO = YES;
434434
ONLY_ACTIVE_ARCH = YES;
435435
SDKROOT = iphoneos;
@@ -478,7 +478,7 @@
478478
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
479479
GCC_WARN_UNUSED_FUNCTION = YES;
480480
GCC_WARN_UNUSED_VARIABLE = YES;
481-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
481+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
482482
MTL_ENABLE_DEBUG_INFO = NO;
483483
SDKROOT = iphoneos;
484484
SUPPORTED_PLATFORMS = iphoneos;

rollbar_flutter/example/pubspec.yaml

+1-1
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: 1.4.3
3+
version: 1.5.0
44

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

rollbar_flutter/ios/rollbar_flutter.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Connect your Flutter applications to Rollbar for error reporting.
1616
s.source_files = 'Classes/**/*'
1717
s.public_header_files = 'Classes/**/*.h'
1818
s.dependency 'Flutter'
19-
s.dependency 'RollbarNotifier', '~> 3.1.0'
19+
s.dependency 'RollbarNotifier', '~> 3.2.0'
2020
s.static_framework = true
21-
s.platform = :ios, '14.0'
21+
s.platform = :ios, '11.0'
2222

2323
# Flutter.framework does not contain a i386 slice.
2424
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES',

rollbar_flutter/pubspec.yaml

+1-1
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: 1.4.3
3+
version: 1.5.0
44
homepage: https://www.rollbar.com
55
documentation: https://docs.rollbar.com/docs/flutter#flutter
66
repository: https://github.com/rollbar/rollbar-flutter

0 commit comments

Comments
 (0)