Skip to content

Commit 06f6d66

Browse files
committed
2019-10-11, Version 12.12.0 (Current)
Notable changes: * build: * Add `--force-context-aware` flag to prevent usage of native node addons that aren't context aware #29631 * deprecations: * Add documentation-only deprecation for `process._tickCallback()` #29781 * esm: * Using JSON modules is experimental again #29754 * fs: * Introduce `opendir()` and `fs.Dir` to iterate through directories #29349 * process: * Add source-map support to stack traces by using `--source-map-support` #29564 * tls: * Honor `pauseOnConnect` option #29635 * Add option for private keys for OpenSSL engines #28973 PR-URL: #29919
1 parent 5909532 commit 06f6d66

File tree

9 files changed

+110
-22
lines changed

9 files changed

+110
-22
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ release.
2828
</tr>
2929
<tr>
3030
<td valign="top">
31-
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.11.1">12.11.1</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.12.0">12.12.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V12.md#12.11.1">12.11.1</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V12.md#12.11.0">12.11.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V12.md#12.10.0">12.10.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V12.md#12.9.1">12.9.1</a><br/>

doc/api/cli.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Enable FIPS-compliant crypto at startup. (Requires Node.js to be built with
137137

138138
### `--enable-source-maps`
139139
<!-- YAML
140-
added: REPLACEME
140+
added: v12.12.0
141141
-->
142142

143143
> Stability: 1 - Experimental
@@ -423,7 +423,7 @@ Silence all process warnings (including deprecations).
423423

424424
### `--force-context-aware`
425425
<!-- YAML
426-
added: REPLACEME
426+
added: v12.12.0
427427
-->
428428

429429
Disable loading native addons that are not [context-aware][].

doc/api/deprecations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2509,7 +2509,7 @@ Passing a callback to [`worker.terminate()`][] is deprecated. Use the returned
25092509
### DEP0133: http connection
25102510
<!-- YAML
25112511
changes:
2512-
- version: REPLACEME
2512+
- version: v12.12.0
25132513
pr-url: https://github.com/nodejs/node/pull/29015
25142514
description: Documentation-only deprecation.
25152515
-->
@@ -2523,7 +2523,7 @@ Prefer [`response.socket`][] over [`response.connection`][] and
25232523
### DEP0134: process._tickCallback
25242524
<!-- YAML
25252525
changes:
2526-
- version: REPLACEME
2526+
- version: v12.12.0
25272527
pr-url: https://github.com/nodejs/node/pull/29781
25282528
description: Documentation-only deprecation.
25292529
-->

doc/api/errors.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2079,7 +2079,7 @@ state, usually after `.close()` has been called.
20792079
### ERR_CRYPTO_HASH_DIGEST_NO_UTF16
20802080
<!-- YAML
20812081
added: v9.0.0
2082-
removed: REPLACEME
2082+
removed: v12.12.0
20832083
-->
20842084

20852085
The UTF-16 encoding was used with [`hash.digest()`][]. While the

doc/api/fs.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ performance implications for some applications. See the
286286

287287
## Class fs.Dir
288288
<!-- YAML
289-
added: REPLACEME
289+
added: v12.12.0
290290
-->
291291

292292
A class representing a directory stream.
@@ -307,7 +307,7 @@ print('./').catch(console.error);
307307

308308
### dir.path
309309
<!-- YAML
310-
added: REPLACEME
310+
added: v12.12.0
311311
-->
312312

313313
* {string}
@@ -317,7 +317,7 @@ The read-only path of this directory as was provided to [`fs.opendir()`][],
317317

318318
### dir.close()
319319
<!-- YAML
320-
added: REPLACEME
320+
added: v12.12.0
321321
-->
322322

323323
* Returns: {Promise}
@@ -330,7 +330,7 @@ closed.
330330

331331
### dir.close(callback)
332332
<!-- YAML
333-
added: REPLACEME
333+
added: v12.12.0
334334
-->
335335

336336
* `callback` {Function}
@@ -343,15 +343,15 @@ The `callback` will be called after the resource handle has been closed.
343343

344344
### dir.closeSync()
345345
<!-- YAML
346-
added: REPLACEME
346+
added: v12.12.0
347347
-->
348348

349349
Synchronously close the directory's underlying resource handle.
350350
Subsequent reads will result in errors.
351351

352352
### dir.read()
353353
<!-- YAML
354-
added: REPLACEME
354+
added: v12.12.0
355355
-->
356356

357357
* Returns: {Promise} containing {fs.Dirent|null}
@@ -367,7 +367,7 @@ provided by the operating system's underlying directory mechanisms._
367367

368368
### dir.read(callback)
369369
<!-- YAML
370-
added: REPLACEME
370+
added: v12.12.0
371371
-->
372372

373373
* `callback` {Function}
@@ -385,7 +385,7 @@ provided by the operating system's underlying directory mechanisms._
385385

386386
### dir.readSync()
387387
<!-- YAML
388-
added: REPLACEME
388+
added: v12.12.0
389389
-->
390390

391391
* Returns: {fs.Dirent|null}
@@ -400,7 +400,7 @@ provided by the operating system's underlying directory mechanisms._
400400

401401
### dir\[Symbol.asyncIterator\]()
402402
<!-- YAML
403-
added: REPLACEME
403+
added: v12.12.0
404404
-->
405405

406406
* Returns: {AsyncIterator} of {fs.Dirent}
@@ -2641,7 +2641,7 @@ this API: [`fs.open()`][].
26412641

26422642
## fs.opendir(path\[, options\], callback)
26432643
<!-- YAML
2644-
added: REPLACEME
2644+
added: v12.12.0
26452645
-->
26462646

26472647
* `path` {string|Buffer|URL}
@@ -2661,7 +2661,7 @@ directory and subsequent read operations.
26612661

26622662
## fs.opendirSync(path\[, options\])
26632663
<!-- YAML
2664-
added: REPLACEME
2664+
added: v12.12.0
26652665
-->
26662666

26672667
* `path` {string|Buffer|URL}
@@ -4818,7 +4818,7 @@ a colon, Node.js will open a file system stream, as described by
48184818

48194819
## fsPromises.opendir(path\[, options\])
48204820
<!-- YAML
4821-
added: REPLACEME
4821+
added: v12.12.0
48224822
-->
48234823

48244824
* `path` {string|Buffer|URL}

doc/api/http2.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1439,7 +1439,7 @@ server.on('stream', (stream) => {
14391439
<!-- YAML
14401440
added: v8.4.0
14411441
changes:
1442-
- version: REPLACEME
1442+
- version: v12.12.0
14431443
pr-url: https://github.com/nodejs/node/pull/29876
14441444
description: The `fd` option may now be a `FileHandle`.
14451445
- version: v10.0.0
@@ -2359,7 +2359,7 @@ server.on('stream', (stream, headers) => {
23592359
<!-- YAML
23602360
added: v8.4.0
23612361
changes:
2362-
- version: REPLACEME
2362+
- version: v12.12.0
23632363
pr-url: https://github.com/nodejs/node/pull/29833
23642364
description: The `maxConcurrentStreams` setting is stricter.
23652365
- version: v8.9.3

doc/api/modules.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,7 @@ requireUtil('./some-tool');
986986
987987
### module.syncBuiltinESMExports()
988988
<!-- YAML
989-
added: REPLACEME
989+
added: v12.12.0
990990
-->
991991
992992
The `module.syncBuiltinESMExports()` method updates all the live bindings for

doc/api/tls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1358,7 +1358,7 @@ argument.
13581358
<!-- YAML
13591359
added: v0.11.13
13601360
changes:
1361-
- version: REPLACEME
1361+
- version: v12.12.0
13621362
pr-url: https://github.com/nodejs/node/pull/28973
13631363
description: Added `privateKeyIdentifier` and `privateKeyEngine` options
13641364
to get private key from an OpenSSL engine.

doc/changelogs/CHANGELOG_V12.md

+87
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
</tr>
1010
<tr>
1111
<td>
12+
<a href="#12.12.0">12.12.0</a><br/>
1213
<a href="#12.11.1">12.11.1</a><br/>
1314
<a href="#12.11.0">12.11.0</a><br/>
1415
<a href="#12.10.0">12.10.0</a><br/>
@@ -43,6 +44,92 @@
4344
* [io.js](CHANGELOG_IOJS.md)
4445
* [Archive](CHANGELOG_ARCHIVE.md)
4546

47+
<a id="12.12.0"></a>
48+
## 2019-10-11, Version 12.12.0 (Current), @BridgeAR
49+
50+
### Notable changes
51+
52+
* **build**:
53+
* Add `--force-context-aware` flag to prevent usage of native node addons that aren't context aware [#29631](https://github.com/nodejs/node/pull/29631)
54+
* **deprecations**:
55+
* Add documentation-only deprecation for `process._tickCallback()` [#29781](https://github.com/nodejs/node/pull/29781)
56+
* **esm**:
57+
* Using JSON modules is experimental again [#29754](https://github.com/nodejs/node/pull/29754)
58+
* **fs**:
59+
* Introduce `opendir()` and `fs.Dir` to iterate through directories [#29349](https://github.com/nodejs/node/pull/29349)
60+
* **process**:
61+
* Add source-map support to stack traces by using `--source-map-support`[#29564](https://github.com/nodejs/node/pull/29564)
62+
* **tls**:
63+
* Honor `pauseOnConnect` option [#29635](https://github.com/nodejs/node/pull/29635)
64+
* Add option for private keys for OpenSSL engines [#28973](https://github.com/nodejs/node/pull/28973)
65+
66+
### Commits
67+
68+
* [[`d09f2b4170`](https://github.com/nodejs/node/commit/d09f2b4170)] - **build**: build docs on Travis (Richard Lau) [#29783](https://github.com/nodejs/node/pull/29783)
69+
* [[`03ec4cea30`](https://github.com/nodejs/node/commit/03ec4cea30)] - **build**: do not link against librt on linux (Sam Roberts) [#29727](https://github.com/nodejs/node/pull/29727)
70+
* [[`f91778d2c7`](https://github.com/nodejs/node/commit/f91778d2c7)] - **build**: remove unused libatomic on ppc64, s390x (Sam Roberts) [#29727](https://github.com/nodejs/node/pull/29727)
71+
* [[`ab4c53e0ef`](https://github.com/nodejs/node/commit/ab4c53e0ef)] - **crypto**: remove arbitrary UTF16 restriction (Anna Henningsen) [#29795](https://github.com/nodejs/node/pull/29795)
72+
* [[`75f3b28d67`](https://github.com/nodejs/node/commit/75f3b28d67)] - **crypto**: refactor array buffer view validation (Ruben Bridgewater) [#29683](https://github.com/nodejs/node/pull/29683)
73+
* [[`5eb013b854`](https://github.com/nodejs/node/commit/5eb013b854)] - **deps**: update archs files for OpenSSL-1.1.1 (Sam Roberts) [#29550](https://github.com/nodejs/node/pull/29550)
74+
* [[`1766cfcb9e`](https://github.com/nodejs/node/commit/1766cfcb9e)] - **deps**: upgrade openssl sources to 1.1.1d (Sam Roberts) [#29550](https://github.com/nodejs/node/pull/29550)
75+
* [[`3d88b76680`](https://github.com/nodejs/node/commit/3d88b76680)] - **deps**: patch V8 to 7.7.299.13 (Michaël Zasso) [#29869](https://github.com/nodejs/node/pull/29869)
76+
* [[`600478ac13`](https://github.com/nodejs/node/commit/600478ac13)] - **dgram**: use `uv_udp_try_send()` (Anna Henningsen) [#29832](https://github.com/nodejs/node/pull/29832)
77+
* [[`ea6b6abb91`](https://github.com/nodejs/node/commit/ea6b6abb91)] - **doc**: remove spaces inside code span elements (Nick Schonning) [#29329](https://github.com/nodejs/node/pull/29329)
78+
* [[`20b9ef92d1`](https://github.com/nodejs/node/commit/20b9ef92d1)] - **doc**: add more info to fs.Dir and fix typos (Jeremiah Senkpiel) [#29890](https://github.com/nodejs/node/pull/29890)
79+
* [[`f566cd5801`](https://github.com/nodejs/node/commit/f566cd5801)] - **doc**: remove misleading paragraph about the Legacy URL API (Jakob Krigovsky) [#29844](https://github.com/nodejs/node/pull/29844)
80+
* [[`a5c2154534`](https://github.com/nodejs/node/commit/a5c2154534)] - **doc**: add explicit bracket for markdown reference links (Nick Schonning) [#29808](https://github.com/nodejs/node/pull/29808)
81+
* [[`ea9bf4a666`](https://github.com/nodejs/node/commit/ea9bf4a666)] - **doc**: implement minor CSS improvements (XhmikosR) [#29669](https://github.com/nodejs/node/pull/29669)
82+
* [[`a0498606a0`](https://github.com/nodejs/node/commit/a0498606a0)] - **doc**: fix return type for crypto.createDiffieHellmanGroup() (exoego) [#29696](https://github.com/nodejs/node/pull/29696)
83+
* [[`a00cd17b9e`](https://github.com/nodejs/node/commit/a00cd17b9e)] - **doc**: reuse link indexes for n-api.md (legendecas) [#29787](https://github.com/nodejs/node/pull/29787)
84+
* [[`aea0253697`](https://github.com/nodejs/node/commit/aea0253697)] - **doc**: unify place of stability notes (Vse Mozhet Byt) [#29799](https://github.com/nodejs/node/pull/29799)
85+
* [[`8b4f210bf5`](https://github.com/nodejs/node/commit/8b4f210bf5)] - **doc**: add missing deprecation code (cjihrig) [#29820](https://github.com/nodejs/node/pull/29820)
86+
* [[`bede98128f`](https://github.com/nodejs/node/commit/bede98128f)] - **doc**: remove reference to stale CITGM job (Michael Dawson) [#29774](https://github.com/nodejs/node/pull/29774)
87+
* [[`014eb67117`](https://github.com/nodejs/node/commit/014eb67117)] - **(SEMVER-MINOR)** **doc**: add documentation deprecation for process.\_tickCallback (Lucas Holmquist) [#29781](https://github.com/nodejs/node/pull/29781)
88+
* [[`62370efe7e`](https://github.com/nodejs/node/commit/62370efe7e)] - **doc**: add dash between SHA and PR in changelog (Nick Schonning) [#29558](https://github.com/nodejs/node/pull/29558)
89+
* [[`d1a4aa3ca2`](https://github.com/nodejs/node/commit/d1a4aa3ca2)] - **doc**: add missing reference link values (Nick Schonning) [#29558](https://github.com/nodejs/node/pull/29558)
90+
* [[`de4652f55e`](https://github.com/nodejs/node/commit/de4652f55e)] - **doc**: convert old changlogs SHA links to match newer format (Nick Schonning) [#29558](https://github.com/nodejs/node/pull/29558)
91+
* [[`60b1f6f303`](https://github.com/nodejs/node/commit/60b1f6f303)] - **doc**: complete cut off links in old changelog (Nick Schonning) [#29558](https://github.com/nodejs/node/pull/29558)
92+
* [[`906245e1a4`](https://github.com/nodejs/node/commit/906245e1a4)] - **doc**: clarify --pending-deprecation effects on Buffer() usage (Rich Trott) [#29769](https://github.com/nodejs/node/pull/29769)
93+
* [[`401f3e7235`](https://github.com/nodejs/node/commit/401f3e7235)] - **doc**: fix nits in dgram.md (Vse Mozhet Byt) [#29761](https://github.com/nodejs/node/pull/29761)
94+
* [[`bc48646206`](https://github.com/nodejs/node/commit/bc48646206)] - **doc**: improve process.ppid 'added in' info (Thomas Watson) [#29772](https://github.com/nodejs/node/pull/29772)
95+
* [[`0b46bcaaa5`](https://github.com/nodejs/node/commit/0b46bcaaa5)] - **doc**: security maintenance processes (Sam Roberts) [#29685](https://github.com/nodejs/node/pull/29685)
96+
* [[`f39259c079`](https://github.com/nodejs/node/commit/f39259c079)] - **doc**: remove redundant escape (XhmikosR) [#29716](https://github.com/nodejs/node/pull/29716)
97+
* [[`87fb1c297a`](https://github.com/nodejs/node/commit/87fb1c297a)] - **errors**: make sure all Node.js errors show their properties (Ruben Bridgewater) [#29677](https://github.com/nodejs/node/pull/29677)
98+
* [[`df218ce066`](https://github.com/nodejs/node/commit/df218ce066)] - ***Revert*** "**esm**: remove experimental status from JSON modules" (Guy Bedford) [#29754](https://github.com/nodejs/node/pull/29754)
99+
* [[`e7f604f495`](https://github.com/nodejs/node/commit/e7f604f495)] - **esm**: remove proxy for builtin exports (Bradley Farias) [#29737](https://github.com/nodejs/node/pull/29737)
100+
* [[`c56f765cf6`](https://github.com/nodejs/node/commit/c56f765cf6)] - **fs**: remove options.encoding from Dir.read\*() (Jeremiah Senkpiel) [#29908](https://github.com/nodejs/node/pull/29908)
101+
* [[`b76a2e502c`](https://github.com/nodejs/node/commit/b76a2e502c)] - **(SEMVER-MINOR)** **fs**: introduce `opendir()` and `fs.Dir` (Jeremiah Senkpiel) [#29349](https://github.com/nodejs/node/pull/29349)
102+
* [[`2bcde8309c`](https://github.com/nodejs/node/commit/2bcde8309c)] - **(SEMVER-MINOR)** **http2**: allow passing FileHandle to respondWithFD (Anna Henningsen) [#29876](https://github.com/nodejs/node/pull/29876)
103+
* [[`a240d45d1a`](https://github.com/nodejs/node/commit/a240d45d1a)] - **http2**: support passing options of http2.connect to net.connect (ZYSzys) [#29816](https://github.com/nodejs/node/pull/29816)
104+
* [[`3f153789b5`](https://github.com/nodejs/node/commit/3f153789b5)] - **http2**: set default maxConcurrentStreams (ZYSzys) [#29833](https://github.com/nodejs/node/pull/29833)
105+
* [[`6a989da6a0`](https://github.com/nodejs/node/commit/6a989da6a0)] - **http2**: use the latest settings (ZYSzys) [#29780](https://github.com/nodejs/node/pull/29780)
106+
* [[`b2cce13235`](https://github.com/nodejs/node/commit/b2cce13235)] - **inspector**: update faviconUrl (dokugo) [#29562](https://github.com/nodejs/node/pull/29562)
107+
* [[`60296a3612`](https://github.com/nodejs/node/commit/60296a3612)] - **lib**: make tick processor detect xcodebuild errors (Ben Noordhuis) [#29830](https://github.com/nodejs/node/pull/29830)
108+
* [[`9e5d691ee4`](https://github.com/nodejs/node/commit/9e5d691ee4)] - **lib**: introduce no-mixed-operators eslint rule to lib (ZYSzys) [#29834](https://github.com/nodejs/node/pull/29834)
109+
* [[`74a69abd12`](https://github.com/nodejs/node/commit/74a69abd12)] - **lib**: stop using prepareStackTrace (Gus Caplan) [#29777](https://github.com/nodejs/node/pull/29777)
110+
* [[`90562ae356`](https://github.com/nodejs/node/commit/90562ae356)] - **module**: use v8 synthetic modules (Guy Bedford) [#29846](https://github.com/nodejs/node/pull/29846)
111+
* [[`20896f74d6`](https://github.com/nodejs/node/commit/20896f74d6)] - **n-api,doc**: clarify napi\_finalize related APIs (legendecas) [#29797](https://github.com/nodejs/node/pull/29797)
112+
* [[`65c475269e`](https://github.com/nodejs/node/commit/65c475269e)] - **net**: emit close on unconnected socket (Robert Nagy) [#29803](https://github.com/nodejs/node/pull/29803)
113+
* [[`ae8b2b4ab7`](https://github.com/nodejs/node/commit/ae8b2b4ab7)] - **(SEMVER-MINOR)** **process**: add source-map support to stack traces (bcoe) [#29564](https://github.com/nodejs/node/pull/29564)
114+
* [[`3f6ce39acf`](https://github.com/nodejs/node/commit/3f6ce39acf)] - **src**: fix ESM path resolution on Windows (Thomas) [#29574](https://github.com/nodejs/node/pull/29574)
115+
* [[`6bfe8f47fa`](https://github.com/nodejs/node/commit/6bfe8f47fa)] - **(SEMVER-MINOR)** **src**: add buildflag to force context-aware addons (Shelley Vohr) [#29631](https://github.com/nodejs/node/pull/29631)
116+
* [[`6c75cc1b11`](https://github.com/nodejs/node/commit/6c75cc1b11)] - **stream**: do not deadlock duplexpair (Robert Nagy) [#29836](https://github.com/nodejs/node/pull/29836)
117+
* [[`320f649539`](https://github.com/nodejs/node/commit/320f649539)] - **stream**: add comment about undocumented API (Robert Nagy) [#29805](https://github.com/nodejs/node/pull/29805)
118+
* [[`5fdf4a474f`](https://github.com/nodejs/node/commit/5fdf4a474f)] - **test**: remove extra process.exit() (cjihrig) [#29873](https://github.com/nodejs/node/pull/29873)
119+
* [[`6a5d401f30`](https://github.com/nodejs/node/commit/6a5d401f30)] - **test**: remove spaces inside code span elements (Nick Schonning) [#29329](https://github.com/nodejs/node/pull/29329)
120+
* [[`adee99883a`](https://github.com/nodejs/node/commit/adee99883a)] - **test**: debug output for dlopen-ping-pong test (Sam Roberts) [#29818](https://github.com/nodejs/node/pull/29818)
121+
* [[`b309e20661`](https://github.com/nodejs/node/commit/b309e20661)] - **test**: add test for HTTP server response with Connection: close (Austin Wright) [#29836](https://github.com/nodejs/node/pull/29836)
122+
* [[`bf1727a3f3`](https://github.com/nodejs/node/commit/bf1727a3f3)] - **test**: add test for writable.write() argument types (Robert Nagy) [#29746](https://github.com/nodejs/node/pull/29746)
123+
* [[`3153dd6766`](https://github.com/nodejs/node/commit/3153dd6766)] - **test**: well-defined DH groups now verify clean (Sam Roberts) [#29550](https://github.com/nodejs/node/pull/29550)
124+
* [[`690a863aaa`](https://github.com/nodejs/node/commit/690a863aaa)] - **test**: simplify force-context-aware test (cjihrig) [#29705](https://github.com/nodejs/node/pull/29705)
125+
* [[`54ef0fd010`](https://github.com/nodejs/node/commit/54ef0fd010)] - **(SEMVER-MINOR)** **test**: --force-context-aware cli flag (Shelley Vohr) [#29631](https://github.com/nodejs/node/pull/29631)
126+
* [[`a7b56a5b01`](https://github.com/nodejs/node/commit/a7b56a5b01)] - **(SEMVER-MINOR)** **tls**: honor pauseOnConnect option (Robert Jensen) [#29635](https://github.com/nodejs/node/pull/29635)
127+
* [[`cf7b4056ca`](https://github.com/nodejs/node/commit/cf7b4056ca)] - **(SEMVER-MINOR)** **tls**: add option for private keys for OpenSSL engines (Anton Gerasimov) [#28973](https://github.com/nodejs/node/pull/28973)
128+
* [[`ba4946a520`](https://github.com/nodejs/node/commit/ba4946a520)] - **tools**: prohibit Error.prepareStackTrace() usage (Ruben Bridgewater) [#29827](https://github.com/nodejs/node/pull/29827)
129+
* [[`79f6cd3606`](https://github.com/nodejs/node/commit/79f6cd3606)] - **tools**: update ESLint to v6.5.1 (Rich Trott) [#29785](https://github.com/nodejs/node/pull/29785)
130+
* [[`6d88f0fef7`](https://github.com/nodejs/node/commit/6d88f0fef7)] - **vm**: refactor SourceTextModule (Gus Caplan) [#29776](https://github.com/nodejs/node/pull/29776)
131+
* [[`a7113048e3`](https://github.com/nodejs/node/commit/a7113048e3)] - **worker**: do not use two-arg NewIsolate (Shelley Vohr) [#29850](https://github.com/nodejs/node/pull/29850)
132+
46133
<a id="12.11.1"></a>
47134
## 2019-10-01, Version 12.11.1 (Current), @targos
48135

0 commit comments

Comments
 (0)