Skip to content

Commit e6a8ac1

Browse files
committed
2019-07-03, Version 12.6.0 (Current)
Notable changes: * build: * Experimental support for building Node.js on MIPS architecture is back. #27992 * child_process: * The promisified versions of `child_process.exec` and `child_process.execFile` now both return a `Promise` which has the child instance attached to their `child` property. #28325 * deps: * Updated libuv to 1.30.0. #28449 * Support for the Haiku platform has been added. * The maximum `UV_THREADPOOL_SIZE` has been increased from 128 to 1024. * `uv_fs_copyfile()` now works properly when the source and destination files are the same. * process: * A new method, `process.resourceUsage()` was added. It returns resource usage for the current process, such as CPU time. #28018 * src: * Fixed an issue related to stdio that could lead to a crash of the process in some circumstances. #28490 * stream: * Added a `writableFinished` property to writable streams. It indicates that all the data has been flushed to the underlying system. #28007 * worker: * Fixed an issue that prevented worker threads to listen for data on stdin. #28153 * meta: * Added Jiawen Geng (https://github.com/gengjiawen) to collaborators. #28322 PR-URL: #28508
1 parent cd71aad commit e6a8ac1

File tree

6 files changed

+184
-7
lines changed

6 files changed

+184
-7
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.5.0">12.5.0</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.6.0">12.6.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V12.md#12.5.0">12.5.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V12.md#12.4.0">12.4.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V12.md#12.3.1">12.3.1</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V12.md#12.3.0">12.3.0</a><br/>

doc/api/n-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4655,7 +4655,7 @@ prevent the event loop from exiting. The APIs `napi_ref_threadsafe_function` and
46554655
added: v10.6.0
46564656
napiVersion: 4
46574657
changes:
4658-
- version: REPLACEME
4658+
- version: v12.6.0
46594659
pr-url: https://github.com/nodejs/node/pull/27791
46604660
description: Made `func` parameter optional with custom `call_js_cb`.
46614661
-->

doc/api/process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1818,7 +1818,7 @@ Additional documentation is available in the [report documentation][].
18181818

18191819
## process.resourceUsage()
18201820
<!-- YAML
1821-
added: REPLACEME
1821+
added: v12.6.0
18221822
-->
18231823

18241824
* Returns: {Object}

doc/api/stream.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ the status of the `highWaterMark`.
505505

506506
##### writable.writableFinished
507507
<!-- YAML
508-
added: REPLACEME
508+
added: v12.6.0
509509
-->
510510

511511
* {boolean}

0 commit comments

Comments
 (0)