From 5d900bed775e29d94336206eee1139e6f2de55c3 Mon Sep 17 00:00:00 2001 From: Rafael Gonzaga Date: Sun, 22 Mar 2026 14:41:22 -0300 Subject: [PATCH 1/2] doc: add path to vulnerabilities.json mention Refs: https://github.com/nodejs/node-core-utils/commit/89df0538426b32826db9f8e39a3d1f687d42abaa PR-URL: https://github.com/nodejs/node/pull/62355 Reviewed-By: Filip Skokan Reviewed-By: Luigi Pinca Reviewed-By: Aviv Keller --- doc/contributing/releases.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/contributing/releases.md b/doc/contributing/releases.md index 48a9a0bb2e9759..439af1fa9e924b 100644 --- a/doc/contributing/releases.md +++ b/doc/contributing/releases.md @@ -314,14 +314,14 @@ git checkout -b v1.2.3-proposal upstream/v1.x-staging You can also run: ```bash -git node release -S --prepare --security --filterLabel vX.x +git node release -S --prepare --security=../vulnerabilities.json --filterLabel vX.x ``` Example: ```bash git checkout v20.x -git node release -S --prepare --security --filterLabel v20.x +git node release -S --prepare --security=../vulnerabilities.json --filterLabel v20.x ``` to automate the remaining steps until step 6 or you can perform it manually @@ -329,7 +329,7 @@ following the below steps. For semver-minors, you can pass the new version explicitly with `--newVersion` arg: ```bash -git node release -S --prepare --security --filterLabel v20.x --newVersion 20.20.0 +git node release -S --prepare --security=../vulnerabilities.json --filterLabel v20.x --newVersion 20.20.0 ```
From 61102cdbb3d59155ad5bb4fc9419627a31e63f7a Mon Sep 17 00:00:00 2001 From: Jeff Matson <6805601+JeffMatson@users.noreply.github.com> Date: Sun, 22 Mar 2026 17:48:57 -0400 Subject: [PATCH 2/2] doc: minor typo fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/62358 Reviewed-By: Zeyu "Alex" Yang Reviewed-By: René Reviewed-By: Minwoo Jung Reviewed-By: Luigi Pinca Reviewed-By: Ulises Gascón --- doc/api/vm.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/vm.md b/doc/api/vm.md index 6b1f86b1ef95e3..1b7394928065db 100644 --- a/doc/api/vm.md +++ b/doc/api/vm.md @@ -1835,10 +1835,10 @@ It does several things at once: 1. Creates a new context. 2. If `contextObject` is an object, [contextifies][contextified] it with the new context. - If `contextObject` is undefined, creates a new object and [contextifies][contextified] it. + If `contextObject` is undefined, creates a new object and [contextifies][contextified] it. If `contextObject` is [`vm.constants.DONT_CONTEXTIFY`][], don't [contextify][contextified] anything. -3. Compiles the code as a`vm.Script` -4. Runs the compield code within the created context. The code does not have access to the scope in +3. Compiles the code as a `vm.Script` +4. Runs the compiled code within the created context. The code does not have access to the scope in which this method is called. 5. Returns the result.