Skip to content

Commit

Permalink
2018-09-19, Version 10.11.0 (Current)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
targos committed Sep 18, 2018
1 parent 8d5ab42 commit 4958ee3
Show file tree
Hide file tree
Showing 7 changed files with 138 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -31,7 +31,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.10.0">10.10.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.11.0">10.11.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V10.md#10.10.0">10.10.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V10.md#10.9.0">10.9.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V10.md#10.8.0">10.8.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V10.md#10.7.0">10.7.0</a><br/>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/fs.md
Expand Up @@ -4192,7 +4192,7 @@ a colon, Node.js will open a file system stream, as described by
<!-- YAML
added: v10.0.0
changes:
- version: REPLACEME
- version: v10.11.0
pr-url: https://github.com/nodejs/node/pull/22020
description: New option `withFileTypes` was added.
-->
Expand Down
2 changes: 1 addition & 1 deletion doc/api/http2.md
Expand Up @@ -960,7 +960,7 @@ usable.

#### http2stream.endAfterHeaders
<!-- YAML
added: REPLACEME
added: v10.11.0
-->

* {boolean}
Expand Down
2 changes: 1 addition & 1 deletion doc/api/modules.md
Expand Up @@ -890,7 +890,7 @@ const builtin = require('module').builtinModules;

### module.createRequireFromPath(filename)
<!-- YAML
added: REPLACEME
added: v10.11.0
-->

* `filename` {string} Filename to be used to construct the relative require
Expand Down
2 changes: 1 addition & 1 deletion doc/api/util.md
Expand Up @@ -1062,7 +1062,7 @@ util.types.isBooleanObject(Boolean(true)); // Returns false

### util.types.isBoxedPrimitive(value)
<!-- YAML
added: REPLACEME
added: v10.11.0
-->

* `value` {any}
Expand Down
129 changes: 129 additions & 0 deletions doc/changelogs/CHANGELOG_V10.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/node_version.h
Expand Up @@ -23,13 +23,13 @@
#define SRC_NODE_VERSION_H_

#define NODE_MAJOR_VERSION 10
#define NODE_MINOR_VERSION 10
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 11
#define NODE_PATCH_VERSION 0

#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""

#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 4958ee3

Please sign in to comment.