node-abi 3.7.0 → 3.21.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/CONTRIBUTING.md +9 -0
- package/abi_registry.json +24 -0
- package/package.json +1 -1
package/CONTRIBUTING.md
CHANGED
|
@@ -51,3 +51,12 @@ feat: Add amazing new feature
|
|
|
51
51
|
|
|
52
52
|
BREAKING CHANGE: This removes support for Node 0.10 and 0.12.
|
|
53
53
|
```
|
|
54
|
+
|
|
55
|
+
## Pull request guidelines
|
|
56
|
+
|
|
57
|
+
Here are some things to keep in mind as you file pull requests to fix bugs, add new features, etc.:
|
|
58
|
+
|
|
59
|
+
- CircleCI is used to make sure that the project builds packages as expected on the supported platforms, using supported Node.js versions.
|
|
60
|
+
- Unless it's impractical, please write tests for your changes. This will help us so that we can spot regressions much easier.
|
|
61
|
+
- Squashing commits during discussion of the pull request is almost always unnecessary, and makes it more difficult for both the submitters and reviewers to understand what changed in between comments. However, rebasing is encouraged when practical, particularly when there's a merge conflict.
|
|
62
|
+
- If you are continuing the work of another person's PR and need to rebase/squash, please retain the attribution of the original author(s) and continue the work in subsequent commits.
|
package/abi_registry.json
CHANGED
|
@@ -57,6 +57,16 @@
|
|
|
57
57
|
"future": false,
|
|
58
58
|
"abi": "102"
|
|
59
59
|
},
|
|
60
|
+
{
|
|
61
|
+
"runtime": "node",
|
|
62
|
+
"target": "18.0.0",
|
|
63
|
+
"lts": [
|
|
64
|
+
"2022-10-25",
|
|
65
|
+
"2023-10-18"
|
|
66
|
+
],
|
|
67
|
+
"future": false,
|
|
68
|
+
"abi": "108"
|
|
69
|
+
},
|
|
60
70
|
{
|
|
61
71
|
"abi": "70",
|
|
62
72
|
"future": false,
|
|
@@ -175,5 +185,19 @@
|
|
|
175
185
|
"lts": false,
|
|
176
186
|
"runtime": "electron",
|
|
177
187
|
"target": "17.0.0-alpha.1"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"abi": "103",
|
|
191
|
+
"future": false,
|
|
192
|
+
"lts": false,
|
|
193
|
+
"runtime": "electron",
|
|
194
|
+
"target": "18.0.0-alpha.1"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"abi": "106",
|
|
198
|
+
"future": false,
|
|
199
|
+
"lts": false,
|
|
200
|
+
"runtime": "electron",
|
|
201
|
+
"target": "19.0.0-alpha.1"
|
|
178
202
|
}
|
|
179
203
|
]
|