Skip to content

Commit 3c42f73

Browse files
committed
2017-12-12 Version 9.3.0 (Current)
Notable changes: * async\_hooks: - add trace events to async_hooks (Andreas Madsen) #15538 - add provider types for net server (Andreas Madsen) #17157 * console: - console.debug can now be used outside of the inspector (Benjamin Zaslavsky) #17033 * deps: - upgrade libuv to 1.18.0 (cjihrig) #17282 - patch V8 to 6.2.414.46 (Myles Borins) #17206 * module: - module.builtinModules will return a list of built in modules (Jon Moss) #16386 * n-api: - add helper for addons to get the event loop (Anna Henningsen) #17109 * process: - process.setUncaughtExceptionCaptureCallback can now be used to customize behavior for `--abort-on-uncaught-exception` (Anna Henningsen) #17159 - A signal handler is now able to receive the signal code that triggered the handler. (Robert Rossmann) #15606 * src: - embedders can now use Node::CreatePlatform to create an instance of NodePlatform (Cheng Zhao) #16981 * stream: - writable.writableHighWaterMark and readable.readableHighWaterMark will return the values the stream object was instantiated with (Calvin Metcalf) #12860 * **Added new collaborators** * [maclover7](https://github.com/maclover7) Jon Moss * [guybedford](https://github.com/guybedford) Guy Bedford * [hashseed](https://github.com/hashseed) Yang Guo PR-URL: Coming Soon
1 parent e7ae8eb commit 3c42f73

10 files changed

+427
-15
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ release.
2929
</tr>
3030
<tr>
3131
<td valign="top">
32-
<b><a href="doc/changelogs/CHANGELOG_V9.md#9.2.1">9.2.1</a></b><br/>
32+
<b><a href="doc/changelogs/CHANGELOG_V9.md#9.3.0">9.3.0</a></b><br/>
33+
<a href="doc/changelogs/CHANGELOG_V9.md#9.2.1">9.2.1</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V9.md#9.2.0">9.2.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V9.md#9.1.0">9.1.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V9.md#9.0.0">9.0.0</a><br/>

doc/api/console.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ undefined
241241
<!-- YAML
242242
added: v8.0.0
243243
changes:
244-
- version: REPLACEME
244+
- version: 9.3.0
245245
pr-url: https://github.com/nodejs/node/pull/17033
246246
description: "`console.debug` is now an alias for `console.log`."
247247
-->
@@ -280,7 +280,7 @@ Defaults to `false`. Colors are customizable; see
280280
<!-- YAML
281281
added: v8.0.0
282282
changes:
283-
- version: REPLACEME
283+
- version: 9.3.0
284284
pr-url: https://github.com/nodejs/node/pull/17152
285285
description: "`console.dirxml` now calls `console.log` for its arguments."
286286
-->

doc/api/https.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ Global instance of [`https.Agent`][] for all HTTPS client requests.
150150
<!-- YAML
151151
added: v0.3.6
152152
changes:
153-
- version: REPLACEME
153+
- version: v9.3.0
154154
pr-url: https://github.com/nodejs/node/pull/6569
155155
description: The `options` parameter can now include `clientCertEngine`.
156156
- version: v7.5.0

doc/api/modules.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@ via `require('module')`.
833833

834834
### module.builtinModules
835835
<!-- YAML
836-
added: REPLACEME
836+
added: v9.3.0
837837
-->
838838

839839
* {string[]}

doc/api/n-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3695,7 +3695,7 @@ a specific `napi_env`.
36953695

36963696
### napi_get_uv_event_loop
36973697
<!-- YAML
3698-
added: REPLACEME
3698+
added: v9.3.0
36993699
-->
37003700
```C
37013701
NAPI_EXTERN napi_status napi_get_uv_event_loop(napi_env env,

doc/api/process.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1137,7 +1137,7 @@ or Android).
11371137

11381138
## process.hasUncaughtExceptionCaptureCallback()
11391139
<!-- YAML
1140-
added: REPLACEME
1140+
added: v9.3.0
11411141
-->
11421142

11431143
* Returns: {boolean}
@@ -1647,7 +1647,7 @@ or Android).
16471647

16481648
## process.setUncaughtExceptionCaptureCallback(fn)
16491649
<!-- YAML
1650-
added: REPLACEME
1650+
added: v9.3.0
16511651
-->
16521652

16531653
* `fn` {Function|null}

doc/api/stream.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ See also: [`writable.cork()`][].
439439

440440
##### writable.writableHighWaterMark
441441
<!-- YAML
442-
added: REPLACEME
442+
added: v9.3.0
443443
-->
444444

445445
Return the value of `highWaterMark` passed when constructing this
@@ -889,7 +889,7 @@ options.
889889

890890
##### readable.readableHighWaterMark
891891
<!-- YAML
892-
added: REPLACEME
892+
added: v9.3.0
893893
-->
894894

895895
Return the value of `highWaterMark` passed when constructing this

doc/api/tls.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -956,7 +956,7 @@ port or host argument.
956956
<!-- YAML
957957
added: v0.11.13
958958
changes:
959-
- version: REPLACEME
959+
- version: v9.3.0
960960
pr-url: https://github.com/nodejs/node/pull/6569
961961
description: The `options` parameter can now include `clientCertEngine`.
962962
- version: v7.3.0
@@ -1071,7 +1071,7 @@ publicly trusted list of CAs as given in
10711071
<!-- YAML
10721072
added: v0.3.2
10731073
changes:
1074-
- version: REPLACEME
1074+
- version: v9.3.0
10751075
pr-url: https://github.com/nodejs/node/pull/6569
10761076
description: The `options` parameter can now include `clientCertEngine`.
10771077
- version: v8.0.0

doc/changelogs/CHANGELOG_V9.md

+411
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 9
26-
#define NODE_MINOR_VERSION 2
27-
#define NODE_PATCH_VERSION 2
26+
#define NODE_MINOR_VERSION 3
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)