node-abi 2.19.0 → 2.19.1

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.
@@ -20,10 +20,10 @@ jobs:
20
20
  key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
21
21
  restore-keys: |
22
22
  ${{ runner.os }}-node-
23
- - run: npm install
24
- - name: Update Releases JSON
25
- run: npm run electron-releases
26
- - name: Commit Changes to Releases JSON
23
+ - run: npm install --no-package-lock
24
+ - name: Update ABI registry
25
+ run: npm run update-abi-registry
26
+ - name: Commit Changes to ABI registry
27
27
  env:
28
28
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29
29
  run: |
@@ -31,10 +31,10 @@ jobs:
31
31
  chmod 600 ~/.netrc
32
32
  git add abi_registry.json
33
33
  if test -n "$(git status -s)"; then
34
- git config user.name "$GITHUB_ACTOR"
35
- git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
34
+ git config user.name "GitHub Actions"
35
+ git config user.email "github-actions@users.noreply.github.com"
36
36
  git diff --cached
37
- git commit -m "build: update Electron releases JSON"
37
+ git commit -m "feat: update ABI registry"
38
38
  git push origin HEAD:$GITHUB_REF
39
39
  else
40
40
  echo No update needed
package/abi_registry.json CHANGED
@@ -53,19 +53,19 @@
53
53
  },
54
54
  {
55
55
  "runtime": "electron",
56
- "target": "9.0.0-beta.1",
56
+ "target": "9.0.0",
57
57
  "lts": false,
58
- "future": true,
58
+ "future": false,
59
59
  "abi": "80"
60
60
  },
61
61
  {
62
62
  "runtime": "node",
63
63
  "target": "14.0.0",
64
64
  "lts": [
65
- "2020-10-20",
65
+ "2020-10-27",
66
66
  "2021-10-19"
67
67
  ],
68
- "future": true,
68
+ "future": false,
69
69
  "abi": "81"
70
70
  },
71
71
  {
@@ -74,5 +74,19 @@
74
74
  "lts": false,
75
75
  "future": true,
76
76
  "abi": "82"
77
+ },
78
+ {
79
+ "runtime": "node",
80
+ "target": "15.0.0",
81
+ "lts": false,
82
+ "future": true,
83
+ "abi": "84"
84
+ },
85
+ {
86
+ "runtime": "electron",
87
+ "target": "11.0.0-beta.1",
88
+ "lts": false,
89
+ "future": true,
90
+ "abi": "85"
77
91
  }
78
92
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-abi",
3
- "version": "2.19.0",
3
+ "version": "2.19.1",
4
4
  "description": "Get the Node ABI for a given target and runtime, and vice versa.",
5
5
  "main": "index.js",
6
6
  "scripts": {