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

Bump emscripten's internal node dependency to from v16 to v20 #23409

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 2 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ See docs/process.md for more on how version tagging works.

4.0.0 - 01/14/25
----------------
- The mimimum version of node required to run emscripten was bumped from v16.20
to v20.18. This matches the version of node that is shipped in emsdk.
- Emscripten version was bumped to 4.0.0. Happy new year, happy new major
version! While version has a few interesting changes, there is nothing huge
that makes it different from any other release. (#19053)
Expand Down
5 changes: 3 additions & 2 deletions test/test_sanity.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,9 @@ def test_node(self):
for version, succeed in (('v0.8.0', False),
('v4.1.0', False),
('v10.18.0', False),
('v16.20.0', True),
('v16.20.1-pre', True),
('v16.20.0', False),
('v20.18.0', True),
('v20.18.1-pre', True),
('cheez', False)):
print(version, succeed)
delete_file(SANITY_FILE)
Expand Down
6 changes: 3 additions & 3 deletions tools/shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
# Minimum node version required to run the emscripten compiler. This is
# distinct from the minimum version required to execute the generated code
# (settings.MIN_NODE_VERSION).
# This version currently matches the node version that we ship with emsdk
# which means that we can say for sure that this version is well supported.
MINIMUM_NODE_VERSION = (16, 20, 0)
# This version matches the node version that we ship with emsdk which means
# that we know it has good test coverage.
MINIMUM_NODE_VERSION = (20, 18, 0)
EXPECTED_LLVM_VERSION = 20

# These get set by setup_temp_dirs
Expand Down
Loading