Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions doc/api/vm.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
6 changes: 3 additions & 3 deletions doc/contributing/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,22 +314,22 @@ 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
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
```

<details>
Expand Down
Loading