Skip to content

Commit 9d209e9

Browse files
authored
Update docs on oldest supported browser versions. NFC (#23264)
These were changed in #23077 and #23118 but the docs were not updated.
1 parent 8a98ea5 commit 9d209e9

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

site/source/docs/tools_reference/settings_reference.rst

+8-4
Original file line numberDiff line numberDiff line change
@@ -2905,7 +2905,8 @@ are desired to work. Pass -sMIN_FIREFOX_VERSION=majorVersion to drop support
29052905
for Firefox versions older than < majorVersion.
29062906
Firefox 79 was released on 2020-07-28.
29072907
MAX_INT (0x7FFFFFFF, or -1) specifies that target is not supported.
2908-
Minimum supported value is 34 which was released on 2014-12-01.
2908+
Minimum supported value is 40 which was released on 2015-09-11 (see
2909+
feature_matrix.py)
29092910

29102911
Default value: 79
29112912

@@ -2924,7 +2925,8 @@ NOTE: Emscripten is unable to produce code that would work in iOS 9.3.5 and
29242925
older, i.e. iPhone 4s, iPad 2, iPad 3, iPad Mini 1, Pod Touch 5 and older,
29252926
see https://github.com/emscripten-core/emscripten/pull/7191.
29262927
MAX_INT (0x7FFFFFFF, or -1) specifies that target is not supported.
2927-
Minimum supported value is 90000 which was released in 2015.
2928+
Minimum supported value is 101000 which was released in 2016-09 (see
2929+
feature_matrix.py).
29282930

29292931
Default value: 140100
29302932

@@ -2939,7 +2941,8 @@ This setting also applies to modern Chromium-based Edge, which shares version
29392941
numbers with Chrome.
29402942
Chrome 85 was released on 2020-08-25.
29412943
MAX_INT (0x7FFFFFFF, or -1) specifies that target is not supported.
2942-
Minimum supported value is 33, which was released on 2014-02-18.
2944+
Minimum supported value is 45, which was released on 2015-09-01 (see
2945+
feature_matrix.py).
29432946

29442947
Default value: 85
29452948

@@ -2952,7 +2955,8 @@ Specifies minimum node version to target for the generated code. This is
29522955
distinct from the minimum version required run the emscripten compiler.
29532956
This version aligns with the current Ubuuntu TLS 20.04 (Focal).
29542957
Version is encoded in MMmmVV, e.g. 181401 denotes Node 18.14.01.
2955-
Minimum supported value is 101900, which was released 2020-02-05.
2958+
Minimum supported value is 101900, which was released 2020-02-05 (see
2959+
feature_matrix.py).
29562960

29572961
Default value: 160000
29582962

src/settings.js

+8-4
Original file line numberDiff line numberDiff line change
@@ -1895,7 +1895,8 @@ var AUTO_NATIVE_LIBRARIES = true;
18951895
// for Firefox versions older than < majorVersion.
18961896
// Firefox 79 was released on 2020-07-28.
18971897
// MAX_INT (0x7FFFFFFF, or -1) specifies that target is not supported.
1898-
// Minimum supported value is 34 which was released on 2014-12-01.
1898+
// Minimum supported value is 40 which was released on 2015-09-11 (see
1899+
// feature_matrix.py)
18991900
// [link]
19001901
var MIN_FIREFOX_VERSION = 79;
19011902

@@ -1909,7 +1910,8 @@ var MIN_FIREFOX_VERSION = 79;
19091910
// older, i.e. iPhone 4s, iPad 2, iPad 3, iPad Mini 1, Pod Touch 5 and older,
19101911
// see https://github.com/emscripten-core/emscripten/pull/7191.
19111912
// MAX_INT (0x7FFFFFFF, or -1) specifies that target is not supported.
1912-
// Minimum supported value is 90000 which was released in 2015.
1913+
// Minimum supported value is 101000 which was released in 2016-09 (see
1914+
// feature_matrix.py).
19131915
// [link]
19141916
var MIN_SAFARI_VERSION = 140100;
19151917

@@ -1919,15 +1921,17 @@ var MIN_SAFARI_VERSION = 140100;
19191921
// numbers with Chrome.
19201922
// Chrome 85 was released on 2020-08-25.
19211923
// MAX_INT (0x7FFFFFFF, or -1) specifies that target is not supported.
1922-
// Minimum supported value is 33, which was released on 2014-02-18.
1924+
// Minimum supported value is 45, which was released on 2015-09-01 (see
1925+
// feature_matrix.py).
19231926
// [link]
19241927
var MIN_CHROME_VERSION = 85;
19251928

19261929
// Specifies minimum node version to target for the generated code. This is
19271930
// distinct from the minimum version required run the emscripten compiler.
19281931
// This version aligns with the current Ubuuntu TLS 20.04 (Focal).
19291932
// Version is encoded in MMmmVV, e.g. 181401 denotes Node 18.14.01.
1930-
// Minimum supported value is 101900, which was released 2020-02-05.
1933+
// Minimum supported value is 101900, which was released 2020-02-05 (see
1934+
// feature_matrix.py).
19311935
var MIN_NODE_VERSION = 160000;
19321936

19331937
// Whether we support setting errno from JS library code.

0 commit comments

Comments
 (0)