summaryrefslogtreecommitdiff
path: root/doc/api/vm.md
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2017-02-21 23:38:50 +0100
committerAnna Henningsen <anna@addaleax.net>2017-02-24 02:06:31 +0100
commit08d5ab9aaed95f95fb9831b4e36c8c1ef4ebc7a3 (patch)
tree9e7787e075c18f555874fd28b70f10aab940b9b8 /doc/api/vm.md
parent5d462665602f9e3566e1cb62176132bd81d36e55 (diff)
downloadandroid-node-v8-08d5ab9aaed95f95fb9831b4e36c8c1ef4ebc7a3.tar.gz
android-node-v8-08d5ab9aaed95f95fb9831b4e36c8c1ef4ebc7a3.tar.bz2
android-node-v8-08d5ab9aaed95f95fb9831b4e36c8c1ef4ebc7a3.zip
doc: add changelogs for vm
PR-URL: https://github.com/nodejs/node/pull/11489 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com>
Diffstat (limited to 'doc/api/vm.md')
-rw-r--r--doc/api/vm.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/api/vm.md b/doc/api/vm.md
index ffa50be846..025e9725a9 100644
--- a/doc/api/vm.md
+++ b/doc/api/vm.md
@@ -25,6 +25,11 @@ executed in specific sandboxes (or "contexts").
### new vm.Script(code, options)
<!-- YAML
added: v0.3.1
+changes:
+ - version: v5.7.0
+ pr-url: https://github.com/nodejs/node/pull/4777
+ description: The `cachedData` and `produceCachedData` options are
+ supported now.
-->
* `code` {string} The JavaScript code to compile.
@@ -60,6 +65,10 @@ each run, just for that run.
### script.runInContext(contextifiedSandbox[, options])
<!-- YAML
added: v0.3.1
+changes:
+ - version: v6.3.0
+ pr-url: https://github.com/nodejs/node/pull/6635
+ description: The `breakOnSigint` option is supported now.
-->
* `contextifiedSandbox` {Object} A [contextified][] object as returned by the