Skip to content

[ci] Fix deprecated package:web usages. #5875

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

Closed
wants to merge 6 commits into from
Closed
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
4 changes: 4 additions & 0 deletions packages/cross_file/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.3.3+9

* Pins `package:web` to `>=0.3.0 <0.4.1`.

## 0.3.3+8

* Now supports `dart2wasm` compilation.
Expand Down
4 changes: 2 additions & 2 deletions packages/cross_file/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name: cross_file
description: An abstraction to allow working with files across multiple platforms.
repository: https://github.com/flutter/packages/tree/main/packages/cross_file
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+cross_file%22
version: 0.3.3+8
version: 0.3.3+9

environment:
sdk: ^3.2.0

dependencies:
meta: ^1.3.0
web: '>=0.3.0 <0.5.0'
web: '>=0.3.0 <0.4.1' # 0.4.1 is not compatible with stable

dev_dependencies:
path: ^1.8.1
Expand Down
3 changes: 2 additions & 1 deletion packages/file_selector/file_selector_web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## NEXT
## 0.9.3+1

* Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
* Pins `package:web` to `>=0.3.0 <0.4.1`.

## 0.9.3

Expand Down
4 changes: 2 additions & 2 deletions packages/file_selector/file_selector_web/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: file_selector_web
description: Web platform implementation of file_selector
repository: https://github.com/flutter/packages/tree/main/packages/file_selector/file_selector_web
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22
version: 0.9.3
version: 0.9.3+1

environment:
sdk: ^3.2.0
Expand All @@ -22,7 +22,7 @@ dependencies:
sdk: flutter
flutter_web_plugins:
sdk: flutter
web: '>=0.3.0 <0.5.0'
web: '>=0.3.0 <0.4.1' # 0.4.1 is not compatible with stable

dev_dependencies:
flutter_test:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.2.3

* Pins `package:web` to `>=0.3.0 <0.4.1`.

## 2.2.2

* Updates minimum supported SDK version to Dart 3.2.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: shared_preferences_web
description: Web platform implementation of shared_preferences
repository: https://github.com/flutter/packages/tree/main/packages/shared_preferences/shared_preferences_web
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+shared_preferences%22
version: 2.2.2
version: 2.2.3

environment:
sdk: ">=3.2.0 <4.0.0"
sdk: ^3.2.0
flutter: ">=3.16.0"

flutter:
Expand All @@ -22,7 +22,7 @@ dependencies:
flutter_web_plugins:
sdk: flutter
shared_preferences_platform_interface: ^2.3.0
web: '>=0.3.0 <0.5.0'
web: '>=0.3.0 <0.4.1' # 0.4.1 is not compatible with stable

dev_dependencies:
flutter_test:
Expand Down
4 changes: 4 additions & 0 deletions packages/url_launcher/url_launcher_web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.2.4

* Pins `package:web` to `>=0.3.0 <0.4.1`.

## 2.2.3

* Fixes new lint warnings.
Expand Down
4 changes: 2 additions & 2 deletions packages/url_launcher/url_launcher_web/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: url_launcher_web
description: Web platform implementation of url_launcher
repository: https://github.com/flutter/packages/tree/main/packages/url_launcher/url_launcher_web
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+url_launcher%22
version: 2.2.3
version: 2.2.4

environment:
sdk: ^3.2.0
Expand All @@ -22,7 +22,7 @@ dependencies:
flutter_web_plugins:
sdk: flutter
url_launcher_platform_interface: ^2.2.0
web: '>=0.3.0 <0.5.0'
web: '>=0.3.0 <0.4.1' # 0.4.1 is not compatible with stable

dev_dependencies:
flutter_test:
Expand Down
4 changes: 4 additions & 0 deletions packages/web_benchmarks/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.2

* Pins `package:web` to `>=0.3.0 <0.4.1`.

## 1.1.1

* Fixes new lint warnings.
Expand Down
6 changes: 3 additions & 3 deletions packages/web_benchmarks/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: web_benchmarks
description: A benchmark harness for performance-testing Flutter apps in Chrome.
repository: https://github.com/flutter/packages/tree/main/packages/web_benchmarks
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+web_benchmarks%22
version: 1.1.1
version: 1.1.2

environment:
sdk: ">=3.2.0 <4.0.0"
sdk: ^3.2.0
flutter: ">=3.16.0"

dependencies:
Expand All @@ -21,7 +21,7 @@ dependencies:
shelf: ^1.2.0
shelf_static: ^1.1.0
test: ^1.19.5
web: '>=0.3.0 <0.5.0'
web: '>=0.3.0 <0.4.1' # 0.4.1 is not compatible with stable
webkit_inspection_protocol: ^1.0.0

topics:
Expand Down