node-oom-heapdump 3.7.0 → 3.7.1
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/CHANGELOG.md +9 -1
- package/README.md +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -1,4 +1,12 @@
|
|
1
|
-
|
1
|
+
03-07-2025 Paul Rütter
|
2
|
+
- 3.7.1
|
3
|
+
- Fix for https://github.com/blueconic/node-oom-heapdump/security/dependabot/12 by updating dependencies
|
4
|
+
|
5
|
+
04-06-2025 Paul Rütter
|
6
|
+
- 3.7.0
|
7
|
+
- Node 24 binaries
|
8
|
+
|
9
|
+
12-05-2025 Paul Rütter
|
2
10
|
- 3.6.0
|
3
11
|
- Upgrade dependencies
|
4
12
|
|
package/README.md
CHANGED
@@ -11,6 +11,7 @@ No support for Node.js < 10.x at the moment in version 3.0.0, use version 2.2.0
|
|
11
11
|
Also comes with prebuilt binaries (hosted on Github releases), thanks to Stuart Miller (https://github.com/spmiller).
|
12
12
|
From 3.1.0, prebuilt binaries are only shipped for Node.js 16.x and upwards.
|
13
13
|
From 3.2.3, prebuilt binaries are only shipped for Node.js 18.x and upwards.
|
14
|
+
In 3.7.0, prebuilt binaries for node 24.x were added.
|
14
15
|
|
15
16
|
## Node 22.x
|
16
17
|
Since node 22.x, there is a new CLI flag for generating heapdumps. This one is supplied by V8 (not Node.js) and is more reliant and efficient in creating the heapdumps than Node.js' `--heapsnapshot-near-heap-limit`.
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "node-oom-heapdump",
|
3
|
-
"version": "3.7.
|
3
|
+
"version": "3.7.1",
|
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": {
|
@@ -46,6 +46,6 @@
|
|
46
46
|
"chrome-remote-interface": "^0.33.3",
|
47
47
|
"nan": "^2.22.2",
|
48
48
|
"require-main-filename": "^2.0.0",
|
49
|
-
"ws": "^8.18.
|
49
|
+
"ws": "^8.18.3"
|
50
50
|
}
|
51
51
|
}
|