Skip to content
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
7 changes: 1 addition & 6 deletions browsers/private/update-tool/index.mts
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,7 @@ async function downloadMilestonesAndWriteVersionsFiles({
}

const allVersions = [...Object.keys(versions)];

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

// Write both the JSON and the `.bzl` file. They both contain the same
// versions list. The `.bzl` file just has some additional syntax.
Expand Down
2 changes: 1 addition & 1 deletion browsers/private/versions/firefox.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
DO NOT EDIT. Generated by //browsers/private/update-tool:update-tool.
"""

DEFAULT_VERSION = "135.0"
DEFAULT_VERSION = "143.0"

VERSIONS = {
"129.0": {
Expand Down
Loading