Skip to content

Commit 4958ee3

Browse files
committed
2018-09-19, Version 10.11.0 (Current)
Notable changes: * fs * Added a `recursive` option to `fs.mkdir` and `fs.mkdirSync`. If this option is set to `true`, non-existing parent folders will be automatically created. #21875 * Fixed fsPromises.readdir `withFileTypes`. #22832 * http2 * Added `http2stream.endAfterHeaders` property. #22843 * module * Added `module.createRequireFromPath(filename)`. This new method can be used to create a custom `require` function that will resolve modules relative to the `filename` path. #19360 * url * Added `url.fileURLToPath(url)` and `url.pathToFileURL(path)`. These methods can be used to correctly convert between `file:` URLs and absolute paths. #22506 * util * Added `util.types.isBoxedPrimitive(value)`. #22620 * Windows * The Windows msi installer now provides an option to automatically install the tools required to build native modules. #22645 * Added new collaborators: * boneskull (https://github.com/boneskull) - Christopher Hiller * The Technical Steering Committee has new members: * apapirovski (https://github.com/apapirovski) - Anatoli Papirovski * gabrielschulhof (https://github.com/gabrielschulhof) - Gabriel Schulhof PR-URL: #22932
1 parent 8d5ab42 commit 4958ee3

File tree

7 files changed

+138
-8
lines changed

7 files changed

+138
-8
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ release.
3131
</tr>
3232
<tr>
3333
<td valign="top">
34-
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.10.0">10.10.0</a></b><br/>
34+
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.11.0">10.11.0</a></b><br/>
35+
<a href="doc/changelogs/CHANGELOG_V10.md#10.10.0">10.10.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V10.md#10.9.0">10.9.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V10.md#10.8.0">10.8.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V10.md#10.7.0">10.7.0</a><br/>

doc/api/fs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4192,7 +4192,7 @@ a colon, Node.js will open a file system stream, as described by
41924192
<!-- YAML
41934193
added: v10.0.0
41944194
changes:
4195-
- version: REPLACEME
4195+
- version: v10.11.0
41964196
pr-url: https://github.com/nodejs/node/pull/22020
41974197
description: New option `withFileTypes` was added.
41984198
-->

doc/api/http2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -960,7 +960,7 @@ usable.
960960

961961
#### http2stream.endAfterHeaders
962962
<!-- YAML
963-
added: REPLACEME
963+
added: v10.11.0
964964
-->
965965

966966
* {boolean}

doc/api/modules.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -890,7 +890,7 @@ const builtin = require('module').builtinModules;
890890

891891
### module.createRequireFromPath(filename)
892892
<!-- YAML
893-
added: REPLACEME
893+
added: v10.11.0
894894
-->
895895

896896
* `filename` {string} Filename to be used to construct the relative require

doc/api/util.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1062,7 +1062,7 @@ util.types.isBooleanObject(Boolean(true)); // Returns false
10621062

10631063
### util.types.isBoxedPrimitive(value)
10641064
<!-- YAML
1065-
added: REPLACEME
1065+
added: v10.11.0
10661066
-->
10671067

10681068
* `value` {any}

doc/changelogs/CHANGELOG_V10.md

+129
Large diffs are not rendered by default.

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 10
26-
#define NODE_MINOR_VERSION 10
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 11
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)