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

packages upgraded #1947

Closed
wants to merge 11 commits into from
2 changes: 1 addition & 1 deletion dart/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ dependencies:
path: ../../dart

dev_dependencies:
lints: ^2.0.0
lints: '>=2.0.0 <4.0.0'
4 changes: 2 additions & 2 deletions e2e_test/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies:
sentry:
path:
./../dart
http: ^0.13.0
http: '>=0.13.0 <=1.2.1'

dev_dependencies:
lints: ^2.0.0
lints: '>=2.0.0 <4.0.0'
6 changes: 3 additions & 3 deletions flutter/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ dependencies:
sentry_drift:
sentry_isar:
universal_platform: ^1.0.0
feedback: ^2.0.0
feedback: '>=2.0.0 <4.0.0'
provider: ^6.0.0
dio: any # This gets constrained by `sentry_dio`
sqflite: any # This gets constrained by `sentry_sqflite`
logging: any # This gets constrained by `sentry_logging`
drift: any # This gets constrained by `sentry_drift`
isar: any # This gets constrained by `sentry_isar`
package_info_plus: ^4.0.0
package_info_plus: '>=1.0.0 <7.0.0'
path_provider: ^2.0.0
#sqflite_common_ffi: ^2.0.0
#sqflite_common_ffi_web: ^0.3.0
Expand All @@ -37,7 +37,7 @@ dependencies:
sqlite3_flutter_libs: ^0.5.0

dev_dependencies:
flutter_lints: ^2.0.0
flutter_lints: '>=2.0.0 <4.0.0'
sentry_dart_plugin: ^1.1.0
integration_test:
sdk: flutter
Expand Down
2 changes: 1 addition & 1 deletion hive/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies:
meta: ^1.3.0

dev_dependencies:
lints: ^2.0.0
lints: '>=2.0.0 <4.0.0'
test: ^1.21.0
yaml: ^3.1.0 # needed for version match (code and pubspec)
mockito: ^5.1.0
Expand Down
2 changes: 1 addition & 1 deletion min_version_test/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
version: 1.0.0+1

environment:
sdk: '2.17.0'
sdk: '>=2.17.1 <4.0.0'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The min_version_test project is specifically created to test against the lowest supported SDK version (2.17.0), so this change doesn't seem right. Why is it necessary?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed

flutter: '3.0.0'

# Dependencies specify other packages that your package needs in order to work.
Expand Down
4 changes: 2 additions & 2 deletions scripts/flutter_symbol_collector/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ dependencies:
meta: ^1.11.0
path: ^1.8.3
platform: ^3.1.3
posix: ^5.0.0
posix: '>=5.0.0 <7.0.0'


dev_dependencies:
lints: ^2.0.0
lints: '>=2.0.0 <4.0.0'
test: ^1.21.0
Loading