node-abi 3.31.0 → 3.33.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.
@@ -21,11 +21,11 @@ orbs:
21
21
  jobs:
22
22
  test-linux-14:
23
23
  docker:
24
- - image: circleci/node:14
24
+ - image: cimg/node:14.21
25
25
  <<: *steps-test
26
26
  test-linux-16:
27
27
  docker:
28
- - image: circleci/node:16
28
+ - image: cimg/node:16.19
29
29
  <<: *steps-test
30
30
 
31
31
  workflows:
@@ -0,0 +1 @@
1
+ * @electron/wg-ecosystem @electron/wg-releases @electron/wg-upgrades
@@ -1,20 +1,21 @@
1
1
  name: Auto-update ABI JSON file
2
2
  on:
3
+ workflow_dispatch:
3
4
  schedule:
4
5
  - cron: '0 * * * *'
5
6
  jobs:
6
7
  autoupdate:
7
8
  runs-on: ubuntu-latest
8
9
  steps:
9
- - uses: actions/checkout@v2
10
- - uses: actions/setup-node@v1
10
+ - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # tag: v3.3.0
11
+ - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # tag: v3.6.0
11
12
  with:
12
13
  node-version: '12.x'
13
14
  - name: Get npm cache directory
14
15
  id: npm-cache
15
16
  run: |
16
- echo "::set-output name=dir::$(npm config get cache)"
17
- - uses: actions/cache@v1
17
+ echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
18
+ - uses: actions/cache@627f0f41f6904a5b1efbaed9f96d9eb58e92e920 # tag: v3.2.4
18
19
  with:
19
20
  path: ${{ steps.npm-cache.outputs.dir }}
20
21
  key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
package/README.md CHANGED
@@ -1,9 +1,11 @@
1
1
  # Node.js ABI
2
2
 
3
- [![Build Status](https://travis-ci.org/lgeiger/node-abi.svg?branch=v1.0.0)](https://travis-ci.org/lgeiger/node-abi) [![Greenkeeper badge](https://badges.greenkeeper.io/lgeiger/node-abi.svg)](https://greenkeeper.io/)
3
+ [![Build Status](https://circleci.com/gh/electron/node-abi/tree/main.svg?style=shield)](https://circleci.com/gh/electron/node-abi/tree/main)
4
+ [![Auto-update ABI JSON file](https://github.com/electron/node-abi/actions/workflows/update-abi.yml/badge.svg)](https://github.com/electron/node-abi/actions/workflows/update-abi.yml)
5
+ [![Snyk badge](https://snyk.io/test/github/electron/node-abi/badge.svg)](https://snyk.io/test/github/electron/node-abi)
6
+ [![npm version](http://img.shields.io/npm/v/node-abi.svg)](https://npmjs.org/package/node-abi)
4
7
 
5
-
6
- Get the Node ABI for a given target and runtime, and vice versa.
8
+ Get the Node ABI (application binary interface) for a given target and runtime, and vice versa.
7
9
 
8
10
  ## Installation
9
11
  ```
package/abi_registry.json CHANGED
@@ -230,9 +230,16 @@
230
230
  },
231
231
  {
232
232
  "abi": "113",
233
- "future": true,
233
+ "future": false,
234
234
  "lts": false,
235
235
  "runtime": "electron",
236
236
  "target": "23.0.0-alpha.1"
237
+ },
238
+ {
239
+ "abi": "114",
240
+ "future": true,
241
+ "lts": false,
242
+ "runtime": "electron",
243
+ "target": "24.0.0-alpha.1"
237
244
  }
238
245
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-abi",
3
- "version": "3.31.0",
3
+ "version": "3.33.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": {
@@ -9,7 +9,7 @@
9
9
  },
10
10
  "repository": {
11
11
  "type": "git",
12
- "url": "https://github.com/lgeiger/node-abi.git"
12
+ "url": "https://github.com/electron/node-abi.git"
13
13
  },
14
14
  "keywords": [
15
15
  "node",
@@ -21,9 +21,9 @@
21
21
  "author": "Lukas Geiger",
22
22
  "license": "MIT",
23
23
  "bugs": {
24
- "url": "https://github.com/lgeiger/node-abi/issues"
24
+ "url": "https://github.com/electron/node-abi/issues"
25
25
  },
26
- "homepage": "https://github.com/lgeiger/node-abi#readme",
26
+ "homepage": "https://github.com/electron/node-abi#readme",
27
27
  "devDependencies": {
28
28
  "@continuous-auth/semantic-release-npm": "^3.0.0",
29
29
  "got": "^11.8.2",