Skip to content

Commit bbab963

Browse files
committed
2020-01-21, Version 13.7.0 (Current)
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
1 parent cbd84c5 commit bbab963

File tree

7 files changed

+145
-13
lines changed

7 files changed

+145
-13
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ release.
3030
</tr>
3131
<tr>
3232
<td valign="top">
33-
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.6.0">13.6.0</a></b><br/>
33+
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.7.0">13.7.0</a></b><br/>
34+
<a href="doc/changelogs/CHANGELOG_V13.md#13.6.0">13.6.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V13.md#13.5.0">13.5.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V13.md#13.4.0">13.4.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V13.md#13.3.0">13.3.0</a><br/>

doc/api/modules.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1035,7 +1035,7 @@ import('fs').then((esmFS) => {
10351035
10361036
## Source Map V3 Support
10371037
<!-- YAML
1038-
added: REPLACEME
1038+
added: v13.7.0
10391039
-->
10401040
10411041
> Stability: 1 - Experimental
@@ -1054,7 +1054,7 @@ const { findSourceMap, SourceMap } = require('module');
10541054
10551055
### `module.findSourceMap(path[, error])`
10561056
<!-- YAML
1057-
added: REPLACEME
1057+
added: v13.7.0
10581058
-->
10591059
10601060
* `path` {string}
@@ -1072,7 +1072,7 @@ will be associated with the `error` instance along with the `path`.
10721072
10731073
### Class: `module.SourceMap`
10741074
<!-- YAML
1075-
added: REPLACEME
1075+
added: v13.7.0
10761076
-->
10771077
10781078
#### `new SourceMap(payload)`

doc/api/n-api.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1662,7 +1662,7 @@ the `napi_value` in question is of the JavaScript type expected by the API.
16621662
### Enum types
16631663
#### napi_key_collection_mode
16641664
<!-- YAML
1665-
added: REPLACEME
1665+
added: v13.7.0
16661666
-->
16671667

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

16851685
#### napi_key_filter
16861686
<!-- YAML
1687-
added: REPLACEME
1687+
added: v13.7.0
16881688
-->
16891689

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

17051705
#### napi_key_conversion
17061706
<!-- YAML
1707-
added: REPLACEME
1707+
added: v13.7.0
17081708
-->
17091709

17101710
> Stability: 1 - Experimental
@@ -3594,7 +3594,7 @@ included.
35943594

35953595
#### napi_get_all_property_names
35963596
<!-- YAML
3597-
added: REPLACEME
3597+
added: v13.7.0
35983598
-->
35993599

36003600
> Stability: 1 - Experimental

doc/api/process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ needed.
295295

296296
### Event: `'uncaughtExceptionMonitor'`
297297
<!-- YAML
298-
added: REPLACEME
298+
added: v13.7.0
299299
-->
300300

301301
* `err` {Error} The uncaught exception.

doc/api/vm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ const contextifiedObject = vm.createContext({ secret: 42 });
627627
628628
### `sourceTextModule.createCachedData()`
629629
<!-- YAML
630-
added: REPLACEME
630+
added: v13.7.0
631631
-->
632632
633633
* Returns: {Buffer}

doc/changelogs/CHANGELOG_V13.md

+131
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 13
26-
#define NODE_MINOR_VERSION 6
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 7
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)