File tree Expand file tree Collapse file tree 5 files changed +7
-8
lines changed
site/source/docs/tools_reference Expand file tree Collapse file tree 5 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -774,10 +774,10 @@ jobs:
774
774
# support in the generated code.
775
775
# Keep this in sync with `OLDEST_SUPPORTED_NODE` in `feature_matrix.py`
776
776
- install-node-version :
777
- node_version : " 10.19 .0"
777
+ node_version : " 12.20 .0"
778
778
- run-tests :
779
- title : " node (oldest / 10.19 .0)"
780
- extra-cflags : " -sMIN_NODE_VERSION=101900 "
779
+ title : " node (oldest / 12.20 .0)"
780
+ extra-cflags : " -sMIN_NODE_VERSION=122000 "
781
781
# We include most but not all of the nodefs and node rawfs tests here.
782
782
# test_fs_nodefs_rw, test_fs_nodefs_statvfs, and test_unistd_io_nodefs_bigint fail.
783
783
test_targets : "
Original file line number Diff line number Diff line change @@ -2955,7 +2955,7 @@ Specifies minimum node version to target for the generated code. This is
2955
2955
distinct from the minimum version required run the emscripten compiler.
2956
2956
This version aligns with the current Ubuuntu TLS 20.04 (Focal).
2957
2957
Version is encoded in MMmmVV, e.g. 181401 denotes Node 18.14.01.
2958
- Minimum supported value is 101900 , which was released 2020-02-05 (see
2958
+ Minimum supported value is 122000 , which was released 2020-11-25 (see
2959
2959
feature_matrix.py).
2960
2960
2961
2961
Default value: 160000
Original file line number Diff line number Diff line change @@ -1929,7 +1929,7 @@ var MIN_CHROME_VERSION = 85;
1929
1929
// distinct from the minimum version required run the emscripten compiler.
1930
1930
// This version aligns with the current Ubuuntu TLS 20.04 (Focal).
1931
1931
// Version is encoded in MMmmVV, e.g. 181401 denotes Node 18.14.01.
1932
- // Minimum supported value is 101900 , which was released 2020-02-05 (see
1932
+ // Minimum supported value is 122000 , which was released 2020-11-25 (see
1933
1933
// feature_matrix.py).
1934
1934
var MIN_NODE_VERSION = 160000 ;
1935
1935
Original file line number Diff line number Diff line change @@ -1188,7 +1188,7 @@ def setUp(self):
1188
1188
nodejs = self .get_nodejs ()
1189
1189
if nodejs :
1190
1190
node_version = shared .get_node_version (nodejs )
1191
- if node_version < (11 , 0 , 0 ):
1191
+ if node_version < (13 , 1 , 0 ):
1192
1192
self .node_args .append ('--unhandled-rejections=strict' )
1193
1193
self .node_args .append ('--experimental-wasm-se' )
1194
1194
else :
Original file line number Diff line number Diff line change 21
21
OLDEST_SUPPORTED_CHROME = 45 # September 1, 2015
22
22
OLDEST_SUPPORTED_FIREFOX = 40 # August 11, 2015
23
23
OLDEST_SUPPORTED_SAFARI = 101000 # September 20, 2016
24
- # 10.19.0 is the oldest version of node that we do any testing with.
25
24
# Keep this in sync with the test-node-compat in .circleci/config.yml.
26
- OLDEST_SUPPORTED_NODE = 101900
25
+ OLDEST_SUPPORTED_NODE = 122000
27
26
28
27
29
28
class Feature (IntEnum ):
You can’t perform that action at this time.
0 commit comments