Skip to content
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

Update default minimum Node.js version to 16.0.0 #19192

Merged
merged 13 commits into from
Jun 21, 2023
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ to browse the changes between the tags.

See docs/process.md for more on how version tagging works.

Future
-----
- Bump the default minimum Node version from 10.19 to 15.0. To target the
previous minimum version (10.19.0), use `-sMIN_NODE_VERSION=101900`.

3.1.36 (in development)
-----------------------
- The `USES_DYNAMIC_ALLOC` setting has been deprecated. You can get the same
Expand Down
2 changes: 1 addition & 1 deletion src/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -1796,7 +1796,7 @@ var MIN_CHROME_VERSION = 75;
// 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. 1814101 denotes Node 18.14.01.
var MIN_NODE_VERSION = 101900;
var MIN_NODE_VERSION = 150000;

// Tracks whether we are building with errno support enabled. Set to 0
// to disable compiling errno support in altogether. This saves a little
Expand Down