Skip to content

Commit dd78eba

Browse files
committed
Bump min supported chrome version from 71 -> 73
This means we no longer need to worry about engines without mutable global support. Followup to #25375.
1 parent 24fcd26 commit dd78eba

File tree

3 files changed

+3
-10
lines changed

3 files changed

+3
-10
lines changed

site/source/docs/tools_reference/settings_reference.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2897,7 +2897,7 @@ This setting also applies to modern Chromium-based Edge, which shares version
28972897
numbers with Chrome.
28982898
Chrome 85 was released on 2020-08-25.
28992899
MAX_INT (0x7FFFFFFF, or -1) specifies that target is not supported.
2900-
Minimum supported value is 71, which was released on 2018-12-04 (see
2900+
Minimum supported value is 74, which was released on 2019-04-23 (see
29012901
feature_matrix.py).
29022902

29032903
Default value: 85

src/settings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1901,7 +1901,7 @@ var MIN_SAFARI_VERSION = 150000;
19011901
// numbers with Chrome.
19021902
// Chrome 85 was released on 2020-08-25.
19031903
// MAX_INT (0x7FFFFFFF, or -1) specifies that target is not supported.
1904-
// Minimum supported value is 71, which was released on 2018-12-04 (see
1904+
// Minimum supported value is 74, which was released on 2019-04-23 (see
19051905
// feature_matrix.py).
19061906
// [link]
19071907
var MIN_CHROME_VERSION = 85;

tools/feature_matrix.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# N.b. when modifying these values, update comments in src/settings.js on
2424
# MIN_x_VERSION fields to match accordingly.
25-
OLDEST_SUPPORTED_CHROME = 71 # Released on 2018-12-04
25+
OLDEST_SUPPORTED_CHROME = 74 # Released on 2019-04-23
2626
OLDEST_SUPPORTED_FIREFOX = 65 # Released on 2019-01-29
2727
OLDEST_SUPPORTED_SAFARI = 120200 # Released on 2019-03-25
2828
# 12.22.09 is the oldest version of node that we do any testing with.
@@ -34,7 +34,6 @@ class Feature(IntEnum):
3434
NON_TRAPPING_FPTOINT = auto()
3535
SIGN_EXT = auto()
3636
BULK_MEMORY = auto()
37-
MUTABLE_GLOBALS = auto()
3837
JS_BIGINT_INTEGRATION = auto()
3938
THREADS = auto()
4039
PROMISE_ANY = auto()
@@ -63,12 +62,6 @@ class Feature(IntEnum):
6362
'safari': 150000,
6463
'node': 130000,
6564
},
66-
Feature.MUTABLE_GLOBALS: {
67-
'chrome': 74,
68-
'firefox': 61,
69-
'safari': 120000,
70-
'node': 120000,
71-
},
7265
Feature.JS_BIGINT_INTEGRATION: {
7366
'chrome': 67,
7467
'firefox': 68,

0 commit comments

Comments
 (0)