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 to libuv 1.34.1 (cjihrig) #31332
  * upgrade npm to 6.13.6 (Ruy Adorno) #31304
* module
  * add API for interacting with source maps (bcoe) #31132
  * loader getSource, getFormat, transform hooks (Geoffrey Booth) #30986
  * logical conditional exports ordering (Guy Bedford) #31008
  * unflag conditional exports (Guy Bedford) #31001
* process:
  * allow monitoring uncaughtException (Gerhard Stoebich) #31257
* Added new collaborators:
  * [GeoffreyBooth](https://github.com/GeoffreyBooth) - Geoffrey Booth. #31306

PR-URL: #31382
  • Loading branch information
codebytere committed Jan 21, 2020
1 parent 3203feb commit a484f1a
Show file tree
Hide file tree
Showing 6 changed files with 142 additions and 10 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -29,7 +29,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

0 comments on commit a484f1a

Please sign in to comment.