Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
src: update NODE_MODULE_VERSION to 134
Major V8 updates are usually API/ABI incompatible with previous
versions. This commit adapts NODE_MODULE_VERSION for V8 13.0.

Refs: https://github.com/nodejs/CTC/blob/master/meetings/2016-09-28.md
  • Loading branch information
targos committed Jan 30, 2025
commit d7ea9aaa8c86f07af00aa05ac089529c9ee17fe6
1 change: 1 addition & 0 deletions doc/abi_version_registry.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"NODE_MODULE_VERSION": [
{ "modules": 134,"runtime": "node", "variant": "v8_13.0", "versions": "24.0.0-pre" },
{ "modules": 133,"runtime": "electron", "variant": "electron", "versions": "35" },
{ "modules": 132,"runtime": "electron", "variant": "electron", "versions": "34" },
{ "modules": 131,"runtime": "node", "variant": "v8_12.9", "versions": "23.0.0" },
Expand Down
2 changes: 1 addition & 1 deletion src/node_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
#if defined(NODE_EMBEDDER_MODULE_VERSION)
#define NODE_MODULE_VERSION NODE_EMBEDDER_MODULE_VERSION
#else
#define NODE_MODULE_VERSION 131
#define NODE_MODULE_VERSION 134
#endif

// The NAPI_VERSION supported by the runtime. This is the inclusive range of
Expand Down