node-oom-heapdump 3.0.4 → 3.1.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.
@@ -11,7 +11,7 @@ jobs:
11
11
  runs-on: ${{ matrix.os }}
12
12
  strategy:
13
13
  matrix:
14
- node-version: [10.x, 11.x, 12.x, 14.x, 15.x, 16.x, 17.x, 18.x]
14
+ node-version: [16.x, 17.x, 18.x, 20.x]
15
15
  os: [ubuntu-latest, macos-latest, windows-latest]
16
16
  steps:
17
17
  - uses: actions/checkout@v2
package/.travis.yml CHANGED
@@ -12,4 +12,5 @@ node_js:
12
12
  - "16"
13
13
  - "17"
14
14
  - "18"
15
+ - "20"
15
16
  script: npm run dummy
package/CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
- 19-10-2023 Paul Rütter
1
+ 26-10-2023 Paul Rütter
2
+ - 3.1.0
3
+ - https://github.com/blueconic/node-oom-heapdump/issues/28: only build prebuilt binaries for > 16.x, as Github Actions no longer supports older versions.
4
+
5
+ 19-10-2023 Paul Rütter
2
6
  - 3.0.4
3
7
  - Update dependencies
4
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-oom-heapdump",
3
- "version": "3.0.4",
3
+ "version": "3.1.0",
4
4
  "description": "Create a V8 heap snapshot when an \"Out of Memory\" error occurs, or create a heap snapshot or CPU profile on request.",
5
5
  "main": "index.js",
6
6
  "scripts": {