From 245596d2dde92a1854c95259948eb3c7d298c67a Mon Sep 17 00:00:00 2001 From: Joyee Cheung Date: Tue, 26 Sep 2023 13:30:36 +0200 Subject: [PATCH] src: bump NODE_MODULE_VERSION for extraorinary ABI breakage Bumping NODE_MODULE_VERSION for v20.x from 115 to 119 for extraordinary ABI breakage in order to fix the long-standing memory issues surrounding vm.Script/vm.*Module blocking users from upgrading from v16.x. --- 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 2208ef07d148a2..d4c8bca8cc95a2 100644 --- a/doc/abi_version_registry.json +++ b/doc/abi_version_registry.json @@ -1,5 +1,6 @@ { "NODE_MODULE_VERSION": [ + { "modules": 119,"runtime": "node", "variant": "v8_11.3", "versions": "20.REPLACEME" }, { "modules": 118,"runtime": "electron", "variant": "electron", "versions": "27" }, { "modules": 117,"runtime": "electron", "variant": "electron", "versions": "26" }, { "modules": 116,"runtime": "electron", "variant": "electron", "versions": "25" }, diff --git a/src/node_version.h b/src/node_version.h index 4164eef7cc0241..8d3967f491189e 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -89,7 +89,7 @@ * version matching should open a pull request to reserve a number in this * registry. */ -#define NODE_MODULE_VERSION 115 +#define NODE_MODULE_VERSION 119 // The NAPI_VERSION provided by this version of the runtime. This is the version // which the Node binary being built supports.