[various] Add http 1.0 compatibility (#4147)

The `http` package was updated to 1.0. There are no change that affect our usage (it just adds new class restrictions), so this extends all dependencies to include both 0.13.x and 1.x.

All changes here are tool-applied (`update-dependencies` and `update-release-info`) except for the script/tools/ pubspec update, so are identical in all packages.

Fixes https://github.com/flutter/flutter/issues/127926
This commit is contained in:
stuartmorgan
2023-06-07 17:07:10 -04:00
committed by GitHub
parent f1e628c07c
commit e37dd83c91
19 changed files with 37 additions and 22 deletions

View File

@ -1,5 +1,6 @@
## NEXT ## 2.0.10
* Adds compatibility with `http` 1.0.
* Updates minimum supported SDK version to Flutter 3.3/Dart 2.18. * Updates minimum supported SDK version to Flutter 3.3/Dart 2.18.
* Aligns Dart and Flutter SDK constraints. * Aligns Dart and Flutter SDK constraints.

View File

@ -8,7 +8,7 @@ name: extension_google_sign_in_as_googleapis_auth
description: A bridge package between google_sign_in and googleapis_auth, to create Authenticated Clients from google_sign_in user credentials. description: A bridge package between google_sign_in and googleapis_auth, to create Authenticated Clients from google_sign_in user credentials.
repository: https://github.com/flutter/packages/tree/main/packages/extension_google_sign_in_as_googleapis_auth repository: https://github.com/flutter/packages/tree/main/packages/extension_google_sign_in_as_googleapis_auth
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+extension_google_sign_in_as_googleapis_auth%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+extension_google_sign_in_as_googleapis_auth%22
version: 2.0.9 version: 2.0.10
environment: environment:
sdk: ">=2.18.0 <4.0.0" sdk: ">=2.18.0 <4.0.0"
@ -19,7 +19,7 @@ dependencies:
sdk: flutter sdk: flutter
google_sign_in: ">=5.0.0 <7.0.0" google_sign_in: ">=5.0.0 <7.0.0"
googleapis_auth: ^1.1.0 googleapis_auth: ^1.1.0
http: ^0.13.0 http: ">=0.13.0 <2.0.0"
meta: ^1.3.0 meta: ^1.3.0
dev_dependencies: dev_dependencies:

View File

@ -1,5 +1,6 @@
## NEXT ## 2.5.1
* Adds compatibility with `http` 1.0.
* Updates minimum supported SDK version to Flutter 3.3/Dart 2.18. * Updates minimum supported SDK version to Flutter 3.3/Dart 2.18.
## 2.5.0 ## 2.5.0

View File

@ -4,7 +4,7 @@ repository: https://github.com/flutter/packages/tree/main/packages/file_selector
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22
# NOTE: We strongly prefer non-breaking changes, even at the expense of a # NOTE: We strongly prefer non-breaking changes, even at the expense of a
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes # less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
version: 2.5.0 version: 2.5.1
environment: environment:
sdk: ">=2.18.0 <4.0.0" sdk: ">=2.18.0 <4.0.0"
@ -14,7 +14,7 @@ dependencies:
cross_file: ^0.3.0 cross_file: ^0.3.0
flutter: flutter:
sdk: flutter sdk: flutter
http: ^0.13.0 http: ">=0.13.0 <2.0.0"
plugin_platform_interface: ^2.1.0 plugin_platform_interface: ^2.1.0
dev_dependencies: dev_dependencies:

View File

@ -11,7 +11,7 @@ dependencies:
sdk: flutter sdk: flutter
google_identity_services_web: google_identity_services_web:
path: ../ path: ../
http: ^0.13.5 http: ">=0.13.0 <2.0.0"
js: ^0.6.4 js: ^0.6.4
dev_dependencies: dev_dependencies:

View File

@ -21,7 +21,7 @@ dev_dependencies:
sdk: flutter sdk: flutter
google_maps: ^6.1.0 google_maps: ^6.1.0
google_maps_flutter: ^2.2.0 # Needed for projection_test.dart google_maps_flutter: ^2.2.0 # Needed for projection_test.dart
http: ^1.0.0 http: ">=0.13.0 <2.0.0"
integration_test: integration_test:
sdk: flutter sdk: flutter
mockito: 5.4.1 mockito: 5.4.1

View File

@ -1,3 +1,7 @@
## 6.1.4
* Adds compatibility with `http` 1.0.
## 6.1.3 ## 6.1.3
* Clarifies `canAccessScopes` method documentation. * Clarifies `canAccessScopes` method documentation.

View File

@ -18,7 +18,7 @@ dependencies:
path: ../ path: ../
google_sign_in_platform_interface: ^2.4.0 google_sign_in_platform_interface: ^2.4.0
google_sign_in_web: ^0.12.0 google_sign_in_web: ^0.12.0
http: ^0.13.0 http: ">=0.13.0 <2.0.0"
dev_dependencies: dev_dependencies:
espresso: ^0.2.0 espresso: ^0.2.0

View File

@ -3,7 +3,7 @@ description: Flutter plugin for Google Sign-In, a secure authentication system
for signing in with a Google account on Android and iOS. for signing in with a Google account on Android and iOS.
repository: https://github.com/flutter/packages/tree/main/packages/google_sign_in/google_sign_in repository: https://github.com/flutter/packages/tree/main/packages/google_sign_in/google_sign_in
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_sign_in%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_sign_in%22
version: 6.1.3 version: 6.1.4
environment: environment:
sdk: ">=2.18.0 <4.0.0" sdk: ">=2.18.0 <4.0.0"
@ -33,7 +33,7 @@ dev_dependencies:
sdk: flutter sdk: flutter
flutter_test: flutter_test:
sdk: flutter sdk: flutter
http: ^0.13.0 http: ">=0.13.0 <2.0.0"
integration_test: integration_test:
sdk: flutter sdk: flutter
mockito: 5.4.1 mockito: 5.4.1

View File

@ -17,7 +17,7 @@ dependencies:
# the parent directory to use the current plugin's version. # the parent directory to use the current plugin's version.
path: ../ path: ../
google_sign_in_platform_interface: ^2.2.0 google_sign_in_platform_interface: ^2.2.0
http: ^0.13.0 http: ">=0.13.0 <2.0.0"
dev_dependencies: dev_dependencies:
espresso: ^0.2.0 espresso: ^0.2.0

View File

@ -17,7 +17,7 @@ dependencies:
# the parent directory to use the current plugin's version. # the parent directory to use the current plugin's version.
path: ../ path: ../
google_sign_in_platform_interface: ^2.2.0 google_sign_in_platform_interface: ^2.2.0
http: ^0.13.0 http: ">=0.13.0 <2.0.0"
dev_dependencies: dev_dependencies:
flutter_driver: flutter_driver:

View File

@ -1,3 +1,7 @@
## 0.12.0+2
* Adds compatibility with `http` 1.0.
## 0.12.0+1 ## 0.12.0+1
* Fixes unawaited_futures violations. * Fixes unawaited_futures violations.

View File

@ -20,7 +20,7 @@ dev_dependencies:
sdk: flutter sdk: flutter
flutter_test: flutter_test:
sdk: flutter sdk: flutter
http: ^0.13.0 http: ">=0.13.0 <2.0.0"
integration_test: integration_test:
sdk: flutter sdk: flutter
js: ^0.6.3 js: ^0.6.3

View File

@ -3,7 +3,7 @@ description: Flutter plugin for Google Sign-In, a secure authentication system
for signing in with a Google account on Android, iOS and Web. for signing in with a Google account on Android, iOS and Web.
repository: https://github.com/flutter/packages/tree/main/packages/google_sign_in/google_sign_in_web repository: https://github.com/flutter/packages/tree/main/packages/google_sign_in/google_sign_in_web
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_sign_in%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_sign_in%22
version: 0.12.0+1 version: 0.12.0+2
environment: environment:
sdk: ">=2.18.0 <4.0.0" sdk: ">=2.18.0 <4.0.0"
@ -24,7 +24,7 @@ dependencies:
sdk: flutter sdk: flutter
google_identity_services_web: ^0.2.1 google_identity_services_web: ^0.2.1
google_sign_in_platform_interface: ^2.4.0 google_sign_in_platform_interface: ^2.4.0
http: ^0.13.5 http: ">=0.13.0 <2.0.0"
js: ^0.6.3 js: ^0.6.3
dev_dependencies: dev_dependencies:

View File

@ -1,5 +1,6 @@
## NEXT ## 2.6.4
* Adds compatibility with `http` 1.0.
* Updates minimum supported SDK version to Flutter 3.3/Dart 2.18. * Updates minimum supported SDK version to Flutter 3.3/Dart 2.18.
* Aligns Dart and Flutter SDK constraints. * Aligns Dart and Flutter SDK constraints.

View File

@ -4,7 +4,7 @@ repository: https://github.com/flutter/packages/tree/main/packages/image_picker/
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+image_picker%22 issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+image_picker%22
# NOTE: We strongly prefer non-breaking changes, even at the expense of a # NOTE: We strongly prefer non-breaking changes, even at the expense of a
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes # less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
version: 2.6.3 version: 2.6.4
environment: environment:
sdk: ">=2.18.0 <4.0.0" sdk: ">=2.18.0 <4.0.0"
@ -14,7 +14,7 @@ dependencies:
cross_file: ^0.3.1+1 cross_file: ^0.3.1+1
flutter: flutter:
sdk: flutter sdk: flutter
http: ^0.13.0 http: ">=0.13.0 <2.0.0"
plugin_platform_interface: ^2.1.0 plugin_platform_interface: ^2.1.0
dev_dependencies: dev_dependencies:

View File

@ -1,3 +1,7 @@
## 1.0.9
* Adds compatibility with `http` 1.0.
## 1.0.8 ## 1.0.8
* Removes obsolete null checks on non-nullable values. * Removes obsolete null checks on non-nullable values.

View File

@ -1,5 +1,5 @@
name: metrics_center name: metrics_center
version: 1.0.8 version: 1.0.9
description: description:
Support multiple performance metrics sources/formats and destinations. Support multiple performance metrics sources/formats and destinations.
repository: https://github.com/flutter/packages/tree/main/packages/metrics_center repository: https://github.com/flutter/packages/tree/main/packages/metrics_center
@ -14,7 +14,7 @@ dependencies:
gcloud: ^0.8.2 gcloud: ^0.8.2
googleapis: ^3.0.0 googleapis: ^3.0.0
googleapis_auth: ^1.1.0 googleapis_auth: ^1.1.0
http: ^0.13.3 http: ">=0.13.0 <2.0.0"
dev_dependencies: dev_dependencies:
build_runner: ^2.1.1 build_runner: ^2.1.1

View File

@ -11,7 +11,7 @@ dependencies:
file: ^6.1.0 file: ^6.1.0
# Pin git to 2.0.x until dart >=2.18 is legacy # Pin git to 2.0.x until dart >=2.18 is legacy
git: '>=2.0.0 <2.1.0' git: '>=2.0.0 <2.1.0'
http: ^0.13.3 http: '>=0.13.3 <2.0.0'
http_multi_server: ^3.0.1 http_multi_server: ^3.0.1
meta: ^1.3.0 meta: ^1.3.0
path: ^1.8.0 path: ^1.8.0