Skip to content

Commit 295b2f3

Browse files
targosnodejs-github-bot
authored andcommittedMar 31, 2023
src: update NODE_MODULE_VERSION to 115
Major V8 updates are usually API/ABI incompatible with previous versions. This commit adapts NODE_MODULE_VERSION for V8 11.3. Refs: https://github.com/nodejs/CTC/blob/master/meetings/2016-09-28.md PR-URL: #47251 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]> Reviewed-By: Richard Lau <[email protected]>
1 parent ab1614d commit 295b2f3

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed
 

‎doc/abi_version_registry.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"NODE_MODULE_VERSION": [
3-
{ "modules": 114,"runtime": "electron", "variant": "electron", "versions": "24" },
4-
{ "modules": 113,"runtime": "electron", "variant": "electron", "versions": "23" },
5-
{ "modules": 112, "runtime": "node", "variant": "v8_10.9", "versions": "20.0.0-pre" },
3+
{ "modules": 115,"runtime": "node", "variant": "v8_11.2", "versions": "20.0.0-pre" },
4+
{ "modules": 114,"runtime": "electron", "variant": "electron", "versions": "24" },
5+
{ "modules": 113,"runtime": "electron", "variant": "electron", "versions": "23" },
6+
{ "modules": 112,"runtime": "node", "variant": "v8_10.9", "versions": "20.0.0-pre" },
67
{ "modules": 111,"runtime": "node", "variant": "v8_10.7", "versions": "19.0.0" },
78
{ "modules": 110,"runtime": "electron", "variant": "electron", "versions": "22" },
89
{ "modules": 109,"runtime": "electron", "variant": "electron", "versions": "21" },

‎src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
* version matching should open a pull request to reserve a number in this
9090
* registry.
9191
*/
92-
#define NODE_MODULE_VERSION 112
92+
#define NODE_MODULE_VERSION 115
9393

9494
// The NAPI_VERSION provided by this version of the runtime. This is the version
9595
// which the Node binary being built supports.

0 commit comments

Comments
 (0)
Please sign in to comment.