Skip to content

Commit

Permalink
2018-02-13 Version 8.10.0 'Carbon' (LTS)
Browse files Browse the repository at this point in the history
PR-URL: #18336
  • Loading branch information
gibfahn committed Feb 28, 2018
1 parent 0776a43 commit d532080
Show file tree
Hide file tree
Showing 8 changed files with 287 additions and 10 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.9.4">8.9.4</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V8.md#8.10.0">8.10.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.9.4">8.9.4</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.9.3">8.9.3</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.9.2">8.9.2</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.9.1">8.9.1</a><br/>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/http.md
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ changes:
description: The default action of calling `.destroy()` on the `socket`
will no longer take place if there are listeners attached
for `clientError`.
- version: REPLACEME
- version: v8.10.0
pr-url: https://github.com/nodejs/node/pull/17672
description: The rawPacket is the current buffer that just parsed. Adding
this buffer to the error object of clientError event is to make
Expand Down
2 changes: 1 addition & 1 deletion doc/api/modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,7 @@ via `require('module')`.

### module.builtinModules
<!-- YAML
added: REPLACEME
added: v8.10.0
-->

* {string[]}
Expand Down
2 changes: 1 addition & 1 deletion doc/api/n-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -3695,7 +3695,7 @@ a specific `napi_env`.

### napi_get_uv_event_loop
<!-- YAML
added: REPLACEME
added: v8.10.0
-->
```C
NAPI_EXTERN napi_status napi_get_uv_event_loop(napi_env env,
Expand Down
2 changes: 1 addition & 1 deletion doc/api/process.md
Original file line number Diff line number Diff line change
Expand Up @@ -1398,7 +1398,7 @@ Android operating system. However, Android support in Node.js

## process.ppid
<!-- YAML
added: REPLACEME
added: v8.10.0
-->

* {integer}
Expand Down
4 changes: 2 additions & 2 deletions doc/api/stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ See also: [`writable.cork()`][].

##### writable.writableHighWaterMark
<!-- YAML
added: REPLACEME
added: v8.10.0
-->

Return the value of `highWaterMark` passed when constructing this
Expand Down Expand Up @@ -889,7 +889,7 @@ options.

##### readable.readableHighWaterMark
<!-- YAML
added: REPLACEME
added: v8.10.0
-->

Return the value of `highWaterMark` passed when constructing this
Expand Down
276 changes: 276 additions & 0 deletions doc/changelogs/CHANGELOG_V8.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 @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 8
#define NODE_MINOR_VERSION 9
#define NODE_PATCH_VERSION 5
#define NODE_MINOR_VERSION 10
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 1
#define NODE_VERSION_LTS_CODENAME "Carbon"

#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 d532080

Please sign in to comment.