node-abi 3.28.0 → 3.31.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.
- package/.circleci/config.yml +5 -23
- package/CONTRIBUTING.md +1 -1
- package/abi_registry.json +15 -1
- package/package.json +2 -3
package/.circleci/config.yml
CHANGED
|
@@ -16,15 +16,9 @@ steps-test: &steps-test
|
|
|
16
16
|
- run: yarn test
|
|
17
17
|
|
|
18
18
|
version: 2.1
|
|
19
|
+
orbs:
|
|
20
|
+
cfa: continuousauth/npm@1.0.2
|
|
19
21
|
jobs:
|
|
20
|
-
test-linux-10:
|
|
21
|
-
docker:
|
|
22
|
-
- image: circleci/node:10
|
|
23
|
-
<<: *steps-test
|
|
24
|
-
test-linux-12:
|
|
25
|
-
docker:
|
|
26
|
-
- image: circleci/node:12
|
|
27
|
-
<<: *steps-test
|
|
28
22
|
test-linux-14:
|
|
29
23
|
docker:
|
|
30
24
|
- image: circleci/node:14
|
|
@@ -34,30 +28,18 @@ jobs:
|
|
|
34
28
|
- image: circleci/node:16
|
|
35
29
|
<<: *steps-test
|
|
36
30
|
|
|
37
|
-
release:
|
|
38
|
-
docker:
|
|
39
|
-
- image: circleci/node:14.15
|
|
40
|
-
steps:
|
|
41
|
-
- checkout
|
|
42
|
-
- *step-restore-cache
|
|
43
|
-
- run: yarn --frozen-lockfile
|
|
44
|
-
- run: npx semantic-release@17.4.5
|
|
45
31
|
workflows:
|
|
46
|
-
version: 2
|
|
47
32
|
test_and_release:
|
|
48
33
|
# Run test jobs first, release only when all the test jobs are successful
|
|
49
34
|
jobs:
|
|
50
|
-
- test-linux-10
|
|
51
|
-
- test-linux-12
|
|
52
35
|
- test-linux-14
|
|
53
36
|
- test-linux-16
|
|
54
|
-
- release:
|
|
37
|
+
- cfa/release:
|
|
55
38
|
requires:
|
|
56
|
-
- test-linux-10
|
|
57
|
-
- test-linux-12
|
|
58
39
|
- test-linux-14
|
|
59
40
|
- test-linux-16
|
|
60
41
|
filters:
|
|
61
42
|
branches:
|
|
62
43
|
only:
|
|
63
|
-
- main
|
|
44
|
+
- main
|
|
45
|
+
context: cfa-release
|
package/CONTRIBUTING.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
## Commit Message Guidelines
|
|
6
6
|
|
|
7
|
-
This module uses [`semantic-release`](https://github.com/semantic-release/semantic-release) to automatically release new versions via
|
|
7
|
+
This module uses [`semantic-release`](https://github.com/semantic-release/semantic-release) to automatically release new versions via [Continuous Auth](https://continuousauth.dev/).
|
|
8
8
|
Therefor we have very precise rules over how our git commit messages can be formatted.
|
|
9
9
|
|
|
10
10
|
Each commit message consists of a **header**, a **body** and a **footer**. The header has a special
|
package/abi_registry.json
CHANGED
|
@@ -67,6 +67,13 @@
|
|
|
67
67
|
"future": false,
|
|
68
68
|
"abi": "108"
|
|
69
69
|
},
|
|
70
|
+
{
|
|
71
|
+
"runtime": "node",
|
|
72
|
+
"target": "19.0.0",
|
|
73
|
+
"lts": false,
|
|
74
|
+
"future": false,
|
|
75
|
+
"abi": "111"
|
|
76
|
+
},
|
|
70
77
|
{
|
|
71
78
|
"abi": "70",
|
|
72
79
|
"future": false,
|
|
@@ -216,9 +223,16 @@
|
|
|
216
223
|
},
|
|
217
224
|
{
|
|
218
225
|
"abi": "110",
|
|
219
|
-
"future":
|
|
226
|
+
"future": false,
|
|
220
227
|
"lts": false,
|
|
221
228
|
"runtime": "electron",
|
|
222
229
|
"target": "22.0.0-alpha.1"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"abi": "113",
|
|
233
|
+
"future": true,
|
|
234
|
+
"lts": false,
|
|
235
|
+
"runtime": "electron",
|
|
236
|
+
"target": "23.0.0-alpha.1"
|
|
223
237
|
}
|
|
224
238
|
]
|
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-abi",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.31.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": {
|
|
7
|
-
"semantic-release": "semantic-release",
|
|
8
7
|
"test": "tape test/index.js",
|
|
9
8
|
"update-abi-registry": "node --unhandled-rejections=strict scripts/update-abi-registry.js"
|
|
10
9
|
},
|
|
@@ -26,7 +25,7 @@
|
|
|
26
25
|
},
|
|
27
26
|
"homepage": "https://github.com/lgeiger/node-abi#readme",
|
|
28
27
|
"devDependencies": {
|
|
29
|
-
"@continuous-auth/semantic-release-npm": "^
|
|
28
|
+
"@continuous-auth/semantic-release-npm": "^3.0.0",
|
|
30
29
|
"got": "^11.8.2",
|
|
31
30
|
"tape": "^5.3.1"
|
|
32
31
|
},
|