From b9dde5d3e5e83953e6cd1343e2d2101aeab546ad Mon Sep 17 00:00:00 2001 From: "Node.js GitHub Bot" Date: Fri, 13 Dec 2024 06:03:35 +0000 Subject: [PATCH] src: update NODE_MODULE_VERSION to 133 Major V8 updates are usually API/ABI incompatible with previous versions. This commit adapts NODE_MODULE_VERSION for V8 13.3. Refs: https://github.com/nodejs/CTC/blob/master/meetings/2016-09-28.md --- doc/abi_version_registry.json | 1 + src/node_version.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/abi_version_registry.json b/doc/abi_version_registry.json index 203f64354d0..494b61a1579 100644 --- a/doc/abi_version_registry.json +++ b/doc/abi_version_registry.json @@ -1,5 +1,6 @@ { "NODE_MODULE_VERSION": [ + { "modules": 133, "runtime": "node", "variant": "v8_13.3", "versions": "24.0.0-pre" }, { "modules": 132,"runtime": "electron", "variant": "electron", "versions": "34" }, { "modules": 131,"runtime": "node", "variant": "v8_12.9", "versions": "23.0.0" }, { "modules": 130,"runtime": "electron", "variant": "electron", "versions": "33" }, diff --git a/src/node_version.h b/src/node_version.h index dc4c9f3b07f..0b13f5881c6 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -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 133 #endif // The NAPI_VERSION supported by the runtime. This is the inclusive range of