Skip to content

Commit 0091961

Browse files
committed
feat: bump default firefox version
This is now possible due to angular/dev-infra#3141
1 parent 149b80e commit 0091961

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

browsers/private/update-tool/index.mts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,7 @@ async function downloadMilestonesAndWriteVersionsFiles({
108108
}
109109

110110
const allVersions = [...Object.keys(versions)];
111-
112-
// Since 136.0 firefox in RBE causes `Protocol error (session.new): Target closed` errors
113-
// This can be tested/debugged via `pnpm bazel test //packages/core/test/acceptance/selectorless:selectorless_web_firefox --config=remote --google_default_credentials`
114-
// in the angular/angular repo.
115-
const defaultVersion =
116-
browser === 'firefox' ? '135.0' : allVersions[allVersions.length - 1];
111+
const defaultVersion = allVersions[allVersions.length - 1];
117112

118113
// Write both the JSON and the `.bzl` file. They both contain the same
119114
// versions list. The `.bzl` file just has some additional syntax.

browsers/private/versions/firefox.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
DO NOT EDIT. Generated by //browsers/private/update-tool:update-tool.
44
"""
55

6-
DEFAULT_VERSION = "135.0"
6+
DEFAULT_VERSION = "143.0"
77

88
VERSIONS = {
99
"129.0": {

0 commit comments

Comments
 (0)