Skip to content

Commit eb84150

Browse files
committed
2020-12-22, Version 15.5.0 (Current)
Notable changes: child_process: * (SEMVER-MINOR) add signal support to spawn (Benjamin Gruenbaum) #36432 doc: * add PoojaDurgad to collaborators (Pooja D P) #36511 lib: * (SEMVER-MINOR) support BigInt in querystring.stringify (raisinten) #36499 src: * (SEMVER-MINOR) add way to get IsolateData and allocator from Environment (Anna Henningsen) #36441 * (SEMVER-MINOR) allow preventing SetPrepareStackTraceCallback (Shelley Vohr) #36447 stream: * (SEMVER-MINOR) support abortsignal in constructor (Benjamin Gruenbaum) #36431 PR-URL: #36597
1 parent 036ed1f commit eb84150

File tree

5 files changed

+197
-7
lines changed

5 files changed

+197
-7
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ release.
3232
</tr>
3333
<tr>
3434
<td valign="top">
35-
<b><a href="doc/changelogs/CHANGELOG_V15.md#15.4.0">15.4.0</a></b><br/>
35+
<b><a href="doc/changelogs/CHANGELOG_V15.md#15.5.0">15.5.0</a></b><br/>
36+
<a href="doc/changelogs/CHANGELOG_V15.md#15.4.0">15.4.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V15.md#15.3.0">15.3.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V15.md#15.2.1">15.2.1</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V15.md#15.2.0">15.2.0</a><br/>

doc/api/child_process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ The `shell` option available in [`child_process.spawn()`][] is not supported by
424424
<!-- YAML
425425
added: v0.1.90
426426
changes:
427-
- version: REPLACEME
427+
- version: v15.5.0
428428
pr-url: https://github.com/nodejs/node/pull/36432
429429
description: AbortSignal support was added.
430430
- version:

doc/api/stream.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1938,7 +1938,7 @@ method.
19381938
#### `new stream.Writable([options])`
19391939
<!-- YAML
19401940
changes:
1941-
- version: REPLACEME
1941+
- version: v15.5.0
19421942
pr-url: https://github.com/nodejs/node/pull/36431
19431943
description: support passing in an AbortSignal.
19441944
- version: v14.0.0
@@ -2301,7 +2301,7 @@ constructor and implement the [`readable._read()`][] method.
23012301
#### `new stream.Readable([options])`
23022302
<!-- YAML
23032303
changes:
2304-
- version: REPLACEME
2304+
- version: v15.5.0
23052305
pr-url: https://github.com/nodejs/node/pull/36431
23062306
description: support passing in an AbortSignal.
23072307
- version: v14.0.0

0 commit comments

Comments
 (0)