Skip to content

Commit

Permalink
2016-08-15, Version 6.4.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

* build: zlib symbols and additional OpenSSL symbols are now exposed on Windows platforms. (Alex Hultman) #7983 and #7576
* child_process, cluster: Forked child processes and cluster workers now support stdio configuration. (Colin Ihrig) #7811 and #7838
* child_process: argv[0] can now be set to arbitrary values in spawned processes. (Pat Pannuto) #7696
* fs: fs.ReadStream now exposes the number of bytes it has read so far. (Linus Unnebäck) #7942
* repl: The REPL now supports editor mode. (Prince J Wesley) #7275
* util: inspect() can now be configured globally using util.inspect.defaultOptions. (Roman Reiss) #8013

Refs: #8020
PR-URL: #8070
  • Loading branch information
cjihrig committed Aug 15, 2016
1 parent e611c29 commit b7eba5e
Show file tree
Hide file tree
Showing 6 changed files with 182 additions and 7 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.3.1">6.3.1</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.4.0">6.4.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V6.md#6.3.1">6.3.1</a><br/>
<a href="doc/changelogs/CHANGELOG_V6.md#6.3.0">6.3.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V6.md#6.2.2">6.2.2</a><br/>
<a href="doc/changelogs/CHANGELOG_V6.md#6.2.1">6.2.1</a><br/>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ to an empty string (`""` or `" "`) disables persistent REPL history.

### `NODE_TTY_UNSAFE_ASYNC=1`
<!-- YAML
added: REPLACEME
added: 6.4.0
-->

When set to `1`, writes to `stdout` and `stderr` will be non-blocking and
Expand Down
2 changes: 1 addition & 1 deletion doc/api/fs.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ using the `fs.close()` method.

### readStream.bytesRead
<!-- YAML
added: REPLACEME
added: 6.4.0
-->

The number of bytes read so far.
Expand Down
2 changes: 1 addition & 1 deletion doc/api/process.md
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ Would generate the output:

## process.argv0
<!-- YAML
added: REPLACEME
added: 6.4.0
-->

The `process.argv0` property stores a read-only copy of the original value of
Expand Down
Loading

0 comments on commit b7eba5e

Please sign in to comment.