File tree Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,9 @@ See docs/process.md for more on how version tagging works.
20
20
21
21
3.1.48 (in development)
22
22
-----------------------
23
+ - The minimum version of node required run the compiler was updated from
24
+ 10.19 to 16.20. This does not effect the node requirements of the generated
25
+ JavaScript code. (#20551 )
23
26
- A new top-level ` bootstrap ` script was added. This script is for emscripten
24
27
developers and helps take a care of post-checkout tasks such as ` npm install ` .
25
28
If this script needs to be run (e.g. becuase package.json was changed, emcc
Original file line number Diff line number Diff line change @@ -281,8 +281,8 @@ def test_node(self):
281
281
for version , succeed in [('v0.8.0' , False ),
282
282
('v4.1.0' , False ),
283
283
('v10.18.0' , False ),
284
- ('v10.19 .0' , True ),
285
- ('v10.19 .1-pre' , True ),
284
+ ('v16.20 .0' , True ),
285
+ ('v16.20 .1-pre' , True ),
286
286
('cheez' , False )]:
287
287
print (version , succeed )
288
288
delete_file (SANITY_FILE )
Original file line number Diff line number Diff line change 52
52
PRINT_SUBPROCS = int (os .getenv ('EMCC_VERBOSE' , '0' ))
53
53
SKIP_SUBPROCS = False
54
54
55
- # Minimum node version required to run the emscripten compiler. This is distinct
56
- # from the minimum version required to execute the generated code. This is not an
57
- # exact requirement, but is the oldest version of node that we do any testing with.
58
- # This version aligns with the current Ubuuntu TLS 20.04 (Focal).
59
- MINIMUM_NODE_VERSION = (10 , 19 , 0 )
55
+ # Minimum node version required to run the emscripten compiler. This is
56
+ # distinct from the minimum version required to execute the generated code
57
+ # (settings.MIN_NODE_VERSION).
58
+ # This version currently matches the node version that we ship with emsdk
59
+ # which means that we can say for sure that this version is well supported.
60
+ MINIMUM_NODE_VERSION = (16 , 20 , 0 )
60
61
EXPECTED_LLVM_VERSION = 18
61
62
62
63
# These get set by setup_temp_dirs
You can’t perform that action at this time.
0 commit comments