node-abi 3.8.0 → 3.22.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 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,
@@ -178,9 +188,23 @@
178
188
  },
179
189
  {
180
190
  "abi": "103",
181
- "future": true,
191
+ "future": false,
182
192
  "lts": false,
183
193
  "runtime": "electron",
184
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"
202
+ },
203
+ {
204
+ "abi": "107",
205
+ "future": true,
206
+ "lts": false,
207
+ "runtime": "electron",
208
+ "target": "20.0.0-alpha.1"
185
209
  }
186
210
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-abi",
3
- "version": "3.8.0",
3
+ "version": "3.22.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": {