Skip to content

Update docs on oldest supported browser versions. NFC #23264

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 30, 2024
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
12 changes: 8 additions & 4 deletions site/source/docs/tools_reference/settings_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2905,7 +2905,8 @@ are desired to work. Pass -sMIN_FIREFOX_VERSION=majorVersion to drop support
for Firefox versions older than < majorVersion.
Firefox 79 was released on 2020-07-28.
MAX_INT (0x7FFFFFFF, or -1) specifies that target is not supported.
Minimum supported value is 34 which was released on 2014-12-01.
Minimum supported value is 40 which was released on 2015-09-11 (see
feature_matrix.py)

Default value: 79

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

Default value: 140100

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

Default value: 85

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

Default value: 160000

Expand Down
12 changes: 8 additions & 4 deletions src/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -1895,7 +1895,8 @@ var AUTO_NATIVE_LIBRARIES = true;
// for Firefox versions older than < majorVersion.
// Firefox 79 was released on 2020-07-28.
// MAX_INT (0x7FFFFFFF, or -1) specifies that target is not supported.
// Minimum supported value is 34 which was released on 2014-12-01.
// Minimum supported value is 40 which was released on 2015-09-11 (see
// feature_matrix.py)
// [link]
var MIN_FIREFOX_VERSION = 79;

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

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

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

// Whether we support setting errno from JS library code.
Expand Down
Loading