Skip to content

Commit

Permalink
2018-12-06, Version 11.4.0 (Current), @BridgeAR
Browse files Browse the repository at this point in the history
Notable Changes:

* util:
  The inspection `depth` default is now back at 2.
  #24326
* Added new collaborator:
  [antsmartian](https://github.com/antsmartian) - Anto Aravinth.
  #24655

PR-URL: #24854
  • Loading branch information
BridgeAR committed Dec 6, 2018
1 parent 565448b commit 2e6e799
Show file tree
Hide file tree
Showing 10 changed files with 333 additions and 16 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Expand Up @@ -28,7 +28,9 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V11.md#11.3.0">11.3.0</a></b><br/>
<b>
<a href="doc/changelogs/CHANGELOG_V11.md#11.4.0">11.4.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.3.0">11.3.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.2.0">11.2.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.1.0">11.1.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V11.md#11.0.0">11.0.0</a><br/>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/dgram.md
Expand Up @@ -601,7 +601,7 @@ changes:
pr-url: https://github.com/nodejs/node/pull/13623
description: The `recvBufferSize` and `sendBufferSize` options are
supported now.
- version: REPLACEME
- version: v11.4.0
pr-url: https://github.com/nodejs/node/pull/23798
description: The `ipv6Only` option is supported.
-->
Expand Down
6 changes: 3 additions & 3 deletions doc/api/errors.md
Expand Up @@ -1868,7 +1868,7 @@ Creation of a [`zlib`][] object failed due to incorrect configuration.
### HPE_HEADER_OVERFLOW
<!-- YAML
changes:
- version: REPLACEME
- version: v11.4.0
pr-url: https://github.com/nodejs/node/commit/186035243fad247e3955f
description: Max header size in `http_parser` was set to 8KB.
-->
Expand Down Expand Up @@ -2049,7 +2049,7 @@ binary itself.
### ERR_UNKNOWN_STDIN_TYPE
<!-- YAML
added: v8.0.0
removed: REPLACEME
removed: v11.4.0
-->

An attempt was made to launch a Node.js process with an unknown `stdin` file
Expand All @@ -2060,7 +2060,7 @@ although it is possible for user code to trigger it.
### ERR_UNKNOWN_STREAM_TYPE
<!-- YAML
added: v8.0.0
removed: REPLACEME
removed: v11.4.0
-->

An attempt was made to launch a Node.js process with an unknown `stdout` or
Expand Down
2 changes: 1 addition & 1 deletion doc/api/net.md
Expand Up @@ -253,7 +253,7 @@ Listening on a file descriptor is not supported on Windows.
<!-- YAML
added: v0.11.14
changes:
- version: REPLACEME
- version: v11.4.0
pr-url: https://github.com/nodejs/node/pull/23798
description: The `ipv6Only` option is supported.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/readline.md
Expand Up @@ -311,7 +311,7 @@ The `rl.write()` method will write the data to the `readline` `Interface`'s

### rl\[Symbol.asyncIterator\]()
<!-- YAML
added: REPLACEME
added: v11.4.0
-->

> Stability: 1 - Experimental
Expand Down
4 changes: 2 additions & 2 deletions doc/api/stream.md
Expand Up @@ -465,7 +465,7 @@ See also: [`writable.cork()`][].

##### writable.writable
<!-- YAML
added: REPLACEME
added: v11.4.0
-->

* {boolean}
Expand Down Expand Up @@ -1024,7 +1024,7 @@ been emitted will return `null`. No runtime error will be raised.

##### readable.readable
<!-- YAML
added: REPLACEME
added: v11.4.0
-->

* {boolean}
Expand Down
4 changes: 2 additions & 2 deletions doc/api/tls.md
Expand Up @@ -651,7 +651,7 @@ certificate.
#### Certificate Object
<!-- YAML
changes:
- version: REPLACEME
- version: v11.4.0
pr-url: https://github.com/nodejs/node/pull/24358
description: Support Elliptic Curve public key info.
-->
Expand Down Expand Up @@ -1054,7 +1054,7 @@ argument.
<!-- YAML
added: v0.11.13
changes:
- version: REPLACEME
- version: v11.4.0
pr-url: https://github.com/nodejs/node/pull/24405
description: The `minVersion` and `maxVersion` can be used to restrict
the allowed TLS protocol versions.
Expand Down
6 changes: 3 additions & 3 deletions doc/api/util.md
Expand Up @@ -183,12 +183,12 @@ property take precedence over `--trace-deprecation` and
<!-- YAML
added: v0.5.3
changes:
- version: REPLACEME
- version: v11.4.0
pr-url: https://github.com/nodejs/node/pull/23708
description: The `%d`, `%f` and `%i` specifiers now support Symbols
properly.
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/REPLACEME
- version: v11.4.0
pr-url: https://github.com/nodejs/node/pull/24806
description: The `%o` specifier's `depth` has default depth of 4 again.
- version: v11.0.0
pr-url: https://github.com/nodejs/node/pull/17907
Expand Down
315 changes: 315 additions & 0 deletions doc/changelogs/CHANGELOG_V11.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/node_version.h
Expand Up @@ -23,8 +23,8 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 11
#define NODE_MINOR_VERSION 3
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 4
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""
Expand Down

0 comments on commit 2e6e799

Please sign in to comment.