node-abi 3.75.0 → 3.76.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/abi_registry.json +16 -2
  2. package/package.json +5 -2
package/abi_registry.json CHANGED
@@ -116,7 +116,14 @@
116
116
  "2026-10-20"
117
117
  ],
118
118
  "future": false,
119
- "abi": "134"
119
+ "abi": "137"
120
+ },
121
+ {
122
+ "runtime": "node",
123
+ "target": "25.0.0",
124
+ "lts": false,
125
+ "future": true,
126
+ "abi": "138"
120
127
  },
121
128
  {
122
129
  "abi": "70",
@@ -379,9 +386,16 @@
379
386
  },
380
387
  {
381
388
  "abi": "136",
382
- "future": true,
389
+ "future": false,
383
390
  "lts": false,
384
391
  "runtime": "electron",
385
392
  "target": "37.0.0-alpha.1"
393
+ },
394
+ {
395
+ "abi": "139",
396
+ "future": false,
397
+ "lts": false,
398
+ "runtime": "electron",
399
+ "target": "38.0.0-alpha.1"
386
400
  }
387
401
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-abi",
3
- "version": "3.75.0",
3
+ "version": "3.76.0",
4
4
  "description": "Get the Node ABI for a given target and runtime, and vice versa.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -28,6 +28,8 @@
28
28
  },
29
29
  "homepage": "https://github.com/electron/node-abi#readme",
30
30
  "devDependencies": {
31
+ "@semantic-release/npm": "13.0.0-alpha.15",
32
+ "semantic-release": "^24.2.7",
31
33
  "tape": "^5.3.1"
32
34
  },
33
35
  "dependencies": {
@@ -38,5 +40,6 @@
38
40
  },
39
41
  "publishConfig": {
40
42
  "provenance": true
41
- }
43
+ },
44
+ "packageManager": "yarn@1.22.22"
42
45
  }