node-abi 3.37.0 → 3.42.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.
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
name: "Check Semantic Commit"
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
types:
|
|
6
|
+
- opened
|
|
7
|
+
- edited
|
|
8
|
+
- synchronize
|
|
9
|
+
|
|
10
|
+
permissions:
|
|
11
|
+
contents: read
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
main:
|
|
15
|
+
permissions:
|
|
16
|
+
pull-requests: read # for amannn/action-semantic-pull-request to analyze PRs
|
|
17
|
+
statuses: write # for amannn/action-semantic-pull-request to mark status of analyzed PR
|
|
18
|
+
name: Validate PR Title
|
|
19
|
+
runs-on: ubuntu-latest
|
|
20
|
+
steps:
|
|
21
|
+
- name: semantic-pull-request
|
|
22
|
+
uses: amannn/action-semantic-pull-request@c3cd5d1ea3580753008872425915e343e351ab54 # v5.2.0
|
|
23
|
+
env:
|
|
24
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
25
|
+
with:
|
|
26
|
+
validateSingleCommit: false
|
package/abi_registry.json
CHANGED
|
@@ -74,6 +74,16 @@
|
|
|
74
74
|
"future": false,
|
|
75
75
|
"abi": "111"
|
|
76
76
|
},
|
|
77
|
+
{
|
|
78
|
+
"runtime": "node",
|
|
79
|
+
"target": "20.0.0",
|
|
80
|
+
"lts": [
|
|
81
|
+
"2023-10-24",
|
|
82
|
+
"2024-10-22"
|
|
83
|
+
],
|
|
84
|
+
"future": false,
|
|
85
|
+
"abi": "115"
|
|
86
|
+
},
|
|
77
87
|
{
|
|
78
88
|
"abi": "70",
|
|
79
89
|
"future": false,
|
|
@@ -244,7 +254,7 @@
|
|
|
244
254
|
},
|
|
245
255
|
{
|
|
246
256
|
"abi": "116",
|
|
247
|
-
"future":
|
|
257
|
+
"future": false,
|
|
248
258
|
"lts": false,
|
|
249
259
|
"runtime": "electron",
|
|
250
260
|
"target": "25.0.0-alpha.1"
|
package/package.json
CHANGED
|
@@ -14,7 +14,7 @@ async function fetchElectronReleases () {
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
async function fetchNodeVersions () {
|
|
17
|
-
const schedule = await getJSONFromCDN('nodejs/Release/schedule.json')
|
|
17
|
+
const schedule = await getJSONFromCDN('nodejs/Release@main/schedule.json')
|
|
18
18
|
const versions = {}
|
|
19
19
|
|
|
20
20
|
for (const [majorVersion, metadata] of Object.entries(schedule)) {
|
|
@@ -35,7 +35,7 @@ async function fetchNodeVersions () {
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
async function fetchAbiVersions () {
|
|
38
|
-
return (await getJSONFromCDN('nodejs/node/doc/abi_version_registry.json'))
|
|
38
|
+
return (await getJSONFromCDN('nodejs/node@main/doc/abi_version_registry.json'))
|
|
39
39
|
.NODE_MODULE_VERSION
|
|
40
40
|
.filter(({ modules }) => modules > 66)
|
|
41
41
|
}
|