Skip to content

Commit

Permalink
2020-01-21, Version 13.7.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

* **deps**:
  * upgrade npm to 6.13.6 (Ruy Adorno) [#31304](#31304)
* **doc**:
  * add GeoffreyBooth to collaborators (Geoffrey Booth) [#31306](#31306)
* **process**:
  * allow monitoring uncaughtException (Gerhard Stoebich) [#31257](#31257)
  • Loading branch information
codebytere committed Jan 17, 2020
1 parent 6e978f7 commit a283d37
Show file tree
Hide file tree
Showing 7 changed files with 143 additions and 13 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -30,7 +30,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.6.0">13.6.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.7.0">13.7.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V13.md#13.6.0">13.6.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V13.md#13.5.0">13.5.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V13.md#13.4.0">13.4.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V13.md#13.3.0">13.3.0</a><br/>
Expand Down
6 changes: 3 additions & 3 deletions doc/api/modules.md
Expand Up @@ -1035,7 +1035,7 @@ import('fs').then((esmFS) => {
## Source Map V3 Support
<!-- YAML
added: REPLACEME
added: v13.7.0
-->
> Stability: 1 - Experimental
Expand All @@ -1054,7 +1054,7 @@ const { findSourceMap, SourceMap } = require('module');
### `module.findSourceMap(path[, error])`
<!-- YAML
added: REPLACEME
added: v13.7.0
-->
* `path` {string}
Expand All @@ -1072,7 +1072,7 @@ will be associated with the `error` instance along with the `path`.
### Class: `module.SourceMap`
<!-- YAML
added: REPLACEME
added: v13.7.0
-->
#### `new SourceMap(payload)`
Expand Down
8 changes: 4 additions & 4 deletions doc/api/n-api.md
Expand Up @@ -1662,7 +1662,7 @@ the `napi_value` in question is of the JavaScript type expected by the API.
### Enum types
#### napi_key_collection_mode
<!-- YAML
added: REPLACEME
added: v13.7.0
-->

> Stability: 1 - Experimental
Expand All @@ -1684,7 +1684,7 @@ of the objects's prototype chain as well.

#### napi_key_filter
<!-- YAML
added: REPLACEME
added: v13.7.0
-->

> Stability: 1 - Experimental
Expand All @@ -1704,7 +1704,7 @@ Property filter bits. They can be or'ed to build a composite filter.

#### napi_key_conversion
<!-- YAML
added: REPLACEME
added: v13.7.0
-->

> Stability: 1 - Experimental
Expand Down Expand Up @@ -3594,7 +3594,7 @@ included.
#### napi_get_all_property_names
<!-- YAML
added: REPLACEME
added: v13.7.0
-->
> Stability: 1 - Experimental
Expand Down
2 changes: 1 addition & 1 deletion doc/api/process.md
Expand Up @@ -295,7 +295,7 @@ needed.

### Event: `'uncaughtExceptionMonitor'`
<!-- YAML
added: REPLACEME
added: v13.7.0
-->

* `err` {Error} The uncaught exception.
Expand Down
2 changes: 1 addition & 1 deletion doc/api/vm.md
Expand Up @@ -627,7 +627,7 @@ const contextifiedObject = vm.createContext({ secret: 42 });

### `sourceTextModule.createCachedData()`
<!-- YAML
added: REPLACEME
added: v13.7.0
-->

* Returns: {Buffer}
Expand Down
129 changes: 129 additions & 0 deletions doc/changelogs/CHANGELOG_V13.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 13
#define NODE_MINOR_VERSION 6
#define NODE_PATCH_VERSION 1
#define NODE_MINOR_VERSION 7
#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 a283d37

Please sign in to comment.