node-abi 3.74.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 +30 -2
  2. package/package.json +5 -2
package/abi_registry.json CHANGED
@@ -115,8 +115,15 @@
115
115
  "2025-10-28",
116
116
  "2026-10-20"
117
117
  ],
118
+ "future": false,
119
+ "abi": "137"
120
+ },
121
+ {
122
+ "runtime": "node",
123
+ "target": "25.0.0",
124
+ "lts": false,
118
125
  "future": true,
119
- "abi": "134"
126
+ "abi": "138"
120
127
  },
121
128
  {
122
129
  "abi": "70",
@@ -365,9 +372,30 @@
365
372
  },
366
373
  {
367
374
  "abi": "133",
368
- "future": true,
375
+ "future": false,
369
376
  "lts": false,
370
377
  "runtime": "electron",
371
378
  "target": "35.0.0-alpha.1"
379
+ },
380
+ {
381
+ "abi": "135",
382
+ "future": false,
383
+ "lts": false,
384
+ "runtime": "electron",
385
+ "target": "36.0.0-alpha.1"
386
+ },
387
+ {
388
+ "abi": "136",
389
+ "future": false,
390
+ "lts": false,
391
+ "runtime": "electron",
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"
372
400
  }
373
401
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-abi",
3
- "version": "3.74.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
  }