Skip to content

Commit

Permalink
2016-07-11, Version 7.1.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

* buffer: add buffer.transcode to transcode a buffer's content from one
  encoding to another primarily using ICU (James M Snell)
* child_process: add public API for IPC channel (cjihrig)
* icu
  * Upgraded to ICU 58 - small icu (Steven R. Loomis)
  * Add `cldr`, `tz`, and `unicode` to `process.versions` (Steven R. Loomis)
* lib: make `String(global) === '[object global]'` (Anna Henningsen)
* libuv: Upgraded to 1.10.0 (cjihrig)
* readline: use icu based string width calculation (James M Snell)
* src: add NODE_PRESERVE_SYMLINKS environment variable that has the same
  effect as the `--preserve-symlinks` flag (Marc Udoff)

PR-URL: #9438
  • Loading branch information
evanlucas committed Nov 3, 2016
1 parent c2fab3c commit 4bec0c2
Show file tree
Hide file tree
Showing 7 changed files with 122 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V7.md#7.0.0">7.0.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V7.md#7.1.0">7.1.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V7.md#7.0.0">7.0.0</a><br/>
</td>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.7.0">6.7.0</a></b><br/>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/buffer.md
Original file line number Diff line number Diff line change
Expand Up @@ -2308,7 +2308,7 @@ On 64-bit architectures, this value is `(2^31)-1` (~2GB).

## buffer.transcode(source, fromEnc, toEnc)
<!-- YAML
added: REPLACEME
added: v7.1.0
-->

* `source` {Buffer} A `Buffer` instance
Expand Down
2 changes: 1 addition & 1 deletion doc/api/child_process.md
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ to send messages.

### child.channel
<!-- YAML
added: REPLACEME
added: v7.1.0
-->

* {Object} A pipe representing the IPC channel to the child process.
Expand Down
2 changes: 1 addition & 1 deletion doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ with small-icu support.

### `NODE_PRESERVE_SYMLINKS=1`
<!-- YAML
added: REPLACEME
added: v7.1.0
-->

When set to `1`, instructs the module loader to preserve symbolic links when
Expand Down
2 changes: 1 addition & 1 deletion doc/api/process.md
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ $ bash -c 'exec -a customArgv0 ./node'

## process.channel
<!-- YAML
added: REPLACEME
added: v7.1.0
-->

If the Node.js process was spawned with an IPC channel (see the
Expand Down
113 changes: 113 additions & 0 deletions doc/changelogs/CHANGELOG_V7.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 7
#define NODE_MINOR_VERSION 0
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 1
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit 4bec0c2

Please sign in to comment.