Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
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
2 changes: 1 addition & 1 deletion ci/builders/linux_web_engine.json
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@
},
{
"dependency": "firefox",
"version": "version:106.0"
"version": "version:132.0"
Copy link
Contributor

Choose a reason for hiding this comment

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

We'll want to update this page then: https://docs.flutter.dev/reference/supported-platforms

}
],
"tasks": [
Expand Down
8 changes: 4 additions & 4 deletions lib/web_ui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ The available versions of Chrome for Testing available can be found [here](https
- Edit `dev/package_lock.yaml` and update the following values under `chrome`:
- Set `version` to the full four part version number of the build of Chrome
for Testing you want to roll (for example, `118.0.5993.70`)
- Run `dart dev/browser_roller.dart` and make sure it completes successfully.
- Run `dart dev/package_roller.dart` and make sure it completes successfully.
The script uploads the specified versions of Chromium (and Chromedriver) to the
right locations in CIPD: [Chrome](https://chrome-infra-packages.appspot.com/p/flutter_internal/browsers/chrome),
[Chromedriver](https://chrome-infra-packages.appspot.com/p/flutter_internal/browser-drivers/chrome).
Expand All @@ -194,7 +194,7 @@ If you have questions, contact the Flutter Web team on Flutter Discord on the

We test with Firefox on LUCI in the Linux Web Engine builder. The process for
rolling Firefox is even easier than Chromium. Simply update `package_lock.yaml`
with the latest version of Firefox, and run `browser_roller.dart`.
with the latest version of Firefox, and run `package_roller.dart`.

#### .ci.yaml

Expand All @@ -210,7 +210,7 @@ After rolling Chrome and/or Firefox, also update the CI dependencies in
]
```

##### **browser_roller.dart**
##### **package_roller.dart**

The script has the following command-line options:

Expand All @@ -220,7 +220,7 @@ The script has the following command-line options:
> Try the following!
>
> ```bash
> dart ./dev/browser_roller.dart --dry-run --verbose
> dart dev/package_roller.dart --dry-run --verbose
> ```

#### **Other browsers / manual upload**
Expand Down
2 changes: 1 addition & 1 deletion lib/web_ui/dev/package_lock.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ chrome:
version: '125.0.6422.141'

firefox:
version: '106.0'
version: '132.0'

edge:
launcher_version: '1.2.0.0'
Expand Down