@@ -3450,28 +3450,28 @@ Big thanks to @addaleax who prepared the vast majority of this release.
34503450* **Build**
34513451 * The compiler version requirement to build Node with GCC has been raised to
34523452 GCC 4.9.4.
3453- [[`820b011ed6`](https://github.com/nodejs/node/commit/820b011ed6)]
3453+ [[`820b011ed6`](https://github.com/nodejs/node/commit/820b011ed6)] -
34543454 [#13466](https://github.com/nodejs/node/pull/13466)
34553455
34563456* **Cluster**
34573457 * Users now have more fine-grained control over the inspector port used by
34583458 individual cluster workers. Previously, cluster workers were restricted to
34593459 incrementing from the master's debug port.
3460- [[`dfc46e262a`](https://github.com/nodejs/node/commit/dfc46e262a)]
3460+ [[`dfc46e262a`](https://github.com/nodejs/node/commit/dfc46e262a)] -
34613461 [#14140](https://github.com/nodejs/node/pull/14140)
34623462
34633463* **DNS**
34643464 * The server used for DNS queries can now use a custom port.
3465- [[`ebe7bb29aa`](https://github.com/nodejs/node/commit/ebe7bb29aa)]
3465+ [[`ebe7bb29aa`](https://github.com/nodejs/node/commit/ebe7bb29aa)] -
34663466 [#13723](https://github.com/nodejs/node/pull/13723)
34673467 * Support for `dns.resolveAny()` has been added.
3468- [[`6e30e2558e`](https://github.com/nodejs/node/commit/6e30e2558e)]
3468+ [[`6e30e2558e`](https://github.com/nodejs/node/commit/6e30e2558e)] -
34693469 [#13137](https://github.com/nodejs/node/pull/13137)
34703470
34713471* **npm**
34723472 * The `npm` CLI has been updated to version 5.3.0. In particular, it now comes
34733473 with the `npx` binary, which is also shipped with Node.
3474- [[`dc3f6b9ac1`](https://github.com/nodejs/node/commit/dc3f6b9ac1)]
3474+ [[`dc3f6b9ac1`](https://github.com/nodejs/node/commit/dc3f6b9ac1)] -
34753475 [#14235](https://github.com/nodejs/node/pull/14235)
34763476 * `npm` Changelogs:
34773477 * [v5.0.4](https://github.com/npm/npm/releases/tag/v5.0.4)
@@ -3756,10 +3756,10 @@ This is a security release. All Node.js users should consult the security releas
37563756 Two regressions with the `stream` module have been fixed:
37573757 * The `finish` event will now always be emitted after the `error` event
37583758 if one is emitted:
3759- [[`0a9e96e86c`](https://github.com/nodejs/node/commit/0a9e96e86c)]
3759+ [[`0a9e96e86c`](https://github.com/nodejs/node/commit/0a9e96e86c)] -
37603760 [#13850](https://github.com/nodejs/node/pull/13850)
37613761 * In object mode, readable streams can now use `undefined` again.
3762- [[`5840138e70`](https://github.com/nodejs/node/commit/5840138e70)]
3762+ [[`5840138e70`](https://github.com/nodejs/node/commit/5840138e70)] -
37633763 [#13760](https://github.com/nodejs/node/pull/13760)
37643764
37653765### Commits
@@ -3843,24 +3843,24 @@ Ref: https://github.com/nodejs/node/issues/13667
38433843 * `stdout` and `stderr` are now available on the error output of a
38443844 failed call to the `util.promisify()`ed version of
38453845 `child_process.exec`.
3846- [[`d66d4fc94c`](https://github.com/nodejs/node/commit/d66d4fc94c)]
3846+ [[`d66d4fc94c`](https://github.com/nodejs/node/commit/d66d4fc94c)] -
38473847 [#13388](https://github.com/nodejs/node/pull/13388)
38483848
38493849* **HTTP**
38503850 * A regression that broke certain scenarios in which HTTP is used together
38513851 with the `cluster` module has been fixed.
3852- [[`fff8a56d6f`](https://github.com/nodejs/node/commit/fff8a56d6f)]
3852+ [[`fff8a56d6f`](https://github.com/nodejs/node/commit/fff8a56d6f)] -
38533853 [#13578](https://github.com/nodejs/node/pull/13578)
38543854
38553855* **HTTPS**
38563856 * The `rejectUnauthorized` option now works properly for unix sockets.
3857- [[`c4cbd99d37`](https://github.com/nodejs/node/commit/c4cbd99d37)]
3857+ [[`c4cbd99d37`](https://github.com/nodejs/node/commit/c4cbd99d37)] -
38583858 [#13505](https://github.com/nodejs/node/pull/13505)
38593859
38603860* **Readline**
38613861 * A change that broke `npm init` and other code which uses `readline`
38623862 multiple times on the same input stream is reverted.
3863- [[`0df6c0b5f0`](https://github.com/nodejs/node/commit/0df6c0b5f0)]
3863+ [[`0df6c0b5f0`](https://github.com/nodejs/node/commit/0df6c0b5f0)] -
38643864 [#13560](https://github.com/nodejs/node/pull/13560)
38653865
38663866### Commits
@@ -3923,30 +3923,30 @@ Ref: https://github.com/nodejs/node/issues/13667
39233923* **Async Hooks**
39243924 * When one `Promise` leads to the creation of a new `Promise`, the parent
39253925 `Promise` will be identified as the trigger
3926- [[`135f4e6643`](https://github.com/nodejs/node/commit/135f4e6643)]
3926+ [[`135f4e6643`](https://github.com/nodejs/node/commit/135f4e6643)] -
39273927 [#13367](https://github.com/nodejs/node/pull/13367).
39283928* **Dependencies**
39293929 * libuv has been updated to 1.12.0
3930- [[`968596ec77`](https://github.com/nodejs/node/commit/968596ec77)]
3930+ [[`968596ec77`](https://github.com/nodejs/node/commit/968596ec77)] -
39313931 [#13306](https://github.com/nodejs/node/pull/13306).
39323932 * npm has been updated to 5.0.3
3933- [[`ffa7debd7a`](https://github.com/nodejs/node/commit/ffa7debd7a)]
3933+ [[`ffa7debd7a`](https://github.com/nodejs/node/commit/ffa7debd7a)] -
39343934 [#13487](https://github.com/nodejs/node/pull/13487).
39353935* **File system**
39363936 * The `fs.exists()` function now works correctly with `util.promisify()`
3937- [[`6e0eccd7a1`](https://github.com/nodejs/node/commit/6e0eccd7a1)]
3937+ [[`6e0eccd7a1`](https://github.com/nodejs/node/commit/6e0eccd7a1)] -
39383938 [#13316](https://github.com/nodejs/node/pull/13316).
39393939 * fs.Stats times are now also available as numbers
3940- [[`c756efb25a`](https://github.com/nodejs/node/commit/c756efb25a)]
3940+ [[`c756efb25a`](https://github.com/nodejs/node/commit/c756efb25a)] -
39413941 [#13173](https://github.com/nodejs/node/pull/13173).
39423942* **Inspector**
39433943 * It is now possible to bind to a random port using `--inspect=0`
3944- [[`cc6ec2fb27`](https://github.com/nodejs/node/commit/cc6ec2fb27)]
3944+ [[`cc6ec2fb27`](https://github.com/nodejs/node/commit/cc6ec2fb27)] -
39453945 [#5025](https://github.com/nodejs/node/pull/5025).
39463946* **Zlib**
39473947 * A regression in the Zlib module that made it impossible to properly
39483948 subclasses `zlib.Deflate` and other Zlib classes has been fixed.
3949- [[`6aeb555cc4`](https://github.com/nodejs/node/commit/6aeb555cc4)]
3949+ [[`6aeb555cc4`](https://github.com/nodejs/node/commit/6aeb555cc4)] -
39503950 [#13374](https://github.com/nodejs/node/pull/13374).
39513951
39523952### Commits
@@ -4082,47 +4082,47 @@ LTS codename `'Carbon'`. Note that the
40824082
40834083* **Async Hooks**
40844084 * The `async_hooks` module has landed in core
4085- [[`4a7233c178`](https://github.com/nodejs/node/commit/4a7233c178)]
4085+ [[`4a7233c178`](https://github.com/nodejs/node/commit/4a7233c178)] -
40864086 [#12892](https://github.com/nodejs/node/pull/12892).
40874087
40884088* **Buffer**
40894089 * Using the `--pending-deprecation` flag will cause Node.js to emit a
40904090 deprecation warning when using `new Buffer(num)` or `Buffer(num)`.
4091- [[`d2d32ea5a2`](https://github.com/nodejs/node/commit/d2d32ea5a2)]
4091+ [[`d2d32ea5a2`](https://github.com/nodejs/node/commit/d2d32ea5a2)] -
40924092 [#11968](https://github.com/nodejs/node/pull/11968).
40934093 * `new Buffer(num)` and `Buffer(num)` will zero-fill new `Buffer` instances
4094- [[`7eb1b4658e`](https://github.com/nodejs/node/commit/7eb1b4658e)]
4094+ [[`7eb1b4658e`](https://github.com/nodejs/node/commit/7eb1b4658e)] -
40954095 [#12141](https://github.com/nodejs/node/pull/12141).
40964096 * Many `Buffer` methods now accept `Uint8Array` as input
4097- [[`beca3244e2`](https://github.com/nodejs/node/commit/beca3244e2)]
4097+ [[`beca3244e2`](https://github.com/nodejs/node/commit/beca3244e2)] -
40984098 [#10236](https://github.com/nodejs/node/pull/10236).
40994099
41004100* **Child Process**
41014101 * Argument and kill signal validations have been improved
4102- [[`97a77288ce`](https://github.com/nodejs/node/commit/97a77288ce)]
4102+ [[`97a77288ce`](https://github.com/nodejs/node/commit/97a77288ce)] -
41034103 [#12348](https://github.com/nodejs/node/pull/12348),
4104- [[`d75fdd96aa`](https://github.com/nodejs/node/commit/d75fdd96aa)]
4104+ [[`d75fdd96aa`](https://github.com/nodejs/node/commit/d75fdd96aa)] -
41054105 [#10423](https://github.com/nodejs/node/pull/10423).
41064106 * Child Process methods accept `Uint8Array` as input
4107- [[`627ecee9ed`](https://github.com/nodejs/node/commit/627ecee9ed)]
4107+ [[`627ecee9ed`](https://github.com/nodejs/node/commit/627ecee9ed)] -
41084108 [#10653](https://github.com/nodejs/node/pull/10653).
41094109
41104110* **Console**
41114111 * Error events emitted when using `console` methods are now supressed.
4112- [[`f18e08d820`](https://github.com/nodejs/node/commit/f18e08d820)]
4112+ [[`f18e08d820`](https://github.com/nodejs/node/commit/f18e08d820)] -
41134113 [#9744](https://github.com/nodejs/node/pull/9744).
41144114
41154115* **Dependencies**
41164116 * The npm client has been updated to 5.0.0
4117- [[`3c3b36af0f`](https://github.com/nodejs/node/commit/3c3b36af0f)]
4117+ [[`3c3b36af0f`](https://github.com/nodejs/node/commit/3c3b36af0f)] -
41184118 [#12936](https://github.com/nodejs/node/pull/12936).
41194119 * V8 has been updated to 5.8 with forward ABI stability to 6.0
4120- [[`60d1aac8d2`](https://github.com/nodejs/node/commit/60d1aac8d2)]
4120+ [[`60d1aac8d2`](https://github.com/nodejs/node/commit/60d1aac8d2)] -
41214121 [#12784](https://github.com/nodejs/node/pull/12784).
41224122
41234123* **Domains**
41244124 * Native `Promise` instances are now `Domain` aware
4125- [[`84dabe8373`](https://github.com/nodejs/node/commit/84dabe8373)]
4125+ [[`84dabe8373`](https://github.com/nodejs/node/commit/84dabe8373)] -
41264126 [#12489](https://github.com/nodejs/node/pull/12489).
41274127
41284128* **Errors**
@@ -4132,118 +4132,118 @@ LTS codename `'Carbon'`. Note that the
41324132
41334133* **File System**
41344134 * The utility class `fs.SyncWriteStream` has been deprecated
4135- [[`7a55e34ef4`](https://github.com/nodejs/node/commit/7a55e34ef4)]
4135+ [[`7a55e34ef4`](https://github.com/nodejs/node/commit/7a55e34ef4)] -
41364136 [#10467](https://github.com/nodejs/node/pull/10467).
41374137 * The deprecated `fs.read()` string interface has been removed
4138- [[`3c2a9361ff`](https://github.com/nodejs/node/commit/3c2a9361ff)]
4138+ [[`3c2a9361ff`](https://github.com/nodejs/node/commit/3c2a9361ff)] -
41394139 [#9683](https://github.com/nodejs/node/pull/9683).
41404140
41414141* **HTTP**
41424142 * Improved support for userland implemented Agents
4143- [[`90403dd1d0`](https://github.com/nodejs/node/commit/90403dd1d0)]
4143+ [[`90403dd1d0`](https://github.com/nodejs/node/commit/90403dd1d0)] -
41444144 [#11567](https://github.com/nodejs/node/pull/11567).
41454145 * Outgoing Cookie headers are concatenated into a single string
4146- [[`d3480776c7`](https://github.com/nodejs/node/commit/d3480776c7)]
4146+ [[`d3480776c7`](https://github.com/nodejs/node/commit/d3480776c7)] -
41474147 [#11259](https://github.com/nodejs/node/pull/11259).
41484148 * The `httpResponse.writeHeader()` method has been deprecated
4149- [[`fb71ba4921`](https://github.com/nodejs/node/commit/fb71ba4921)]
4149+ [[`fb71ba4921`](https://github.com/nodejs/node/commit/fb71ba4921)] -
41504150 [#11355](https://github.com/nodejs/node/pull/11355).
41514151 * New methods for accessing HTTP headers have been added to `OutgoingMessage`
4152- [[`3e6f1032a4`](https://github.com/nodejs/node/commit/3e6f1032a4)]
4152+ [[`3e6f1032a4`](https://github.com/nodejs/node/commit/3e6f1032a4)] -
41534153 [#10805](https://github.com/nodejs/node/pull/10805).
41544154
41554155* **Lib**
41564156 * All deprecation messages have been assigned static identifiers
4157- [[`5de3cf099c`](https://github.com/nodejs/node/commit/5de3cf099c)]
4157+ [[`5de3cf099c`](https://github.com/nodejs/node/commit/5de3cf099c)] -
41584158 [#10116](https://github.com/nodejs/node/pull/10116).
41594159 * The legacy `linkedlist` module has been removed
4160- [[`84a23391f6`](https://github.com/nodejs/node/commit/84a23391f6)]
4160+ [[`84a23391f6`](https://github.com/nodejs/node/commit/84a23391f6)] -
41614161 [#12113](https://github.com/nodejs/node/pull/12113).
41624162
41634163* **N-API**
41644164 * Experimental support for the new N-API API has been added
4165- [[`56e881d0b0`](https://github.com/nodejs/node/commit/56e881d0b0)]
4165+ [[`56e881d0b0`](https://github.com/nodejs/node/commit/56e881d0b0)] -
41664166 [#11975](https://github.com/nodejs/node/pull/11975).
41674167
41684168* **Process**
41694169 * Process warning output can be redirected to a file using the
41704170 `--redirect-warnings` command-line argument
4171- [[`03e89b3ff2`](https://github.com/nodejs/node/commit/03e89b3ff2)]
4171+ [[`03e89b3ff2`](https://github.com/nodejs/node/commit/03e89b3ff2)] -
41724172 [#10116](https://github.com/nodejs/node/pull/10116).
41734173 * Process warnings may now include additional detail
4174- [[`dd20e68b0f`](https://github.com/nodejs/node/commit/dd20e68b0f)]
4174+ [[`dd20e68b0f`](https://github.com/nodejs/node/commit/dd20e68b0f)] -
41754175 [#12725](https://github.com/nodejs/node/pull/12725).
41764176
41774177* **REPL**
41784178 * REPL magic mode has been deprecated
4179- [[`3f27f02da0`](https://github.com/nodejs/node/commit/3f27f02da0)]
4179+ [[`3f27f02da0`](https://github.com/nodejs/node/commit/3f27f02da0)] -
41804180 [#11599](https://github.com/nodejs/node/pull/11599).
41814181
41824182* **Src**
41834183 * `NODE_MODULE_VERSION` has been updated to 57
4184- [[`ec7cbaf266`](https://github.com/nodejs/node/commit/ec7cbaf266)]
4184+ [[`ec7cbaf266`](https://github.com/nodejs/node/commit/ec7cbaf266)] -
41854185 [#12995](https://github.com/nodejs/node/pull/12995).
41864186 * Add `--pending-deprecation` command-line argument and
41874187 `NODE_PENDING_DEPRECATION` environment variable
4188- [[`a16b570f8c`](https://github.com/nodejs/node/commit/a16b570f8c)]
4188+ [[`a16b570f8c`](https://github.com/nodejs/node/commit/a16b570f8c)] -
41894189 [#11968](https://github.com/nodejs/node/pull/11968).
41904190 * The `--debug` command-line argument has been deprecated. Note that
41914191 using `--debug` will enable the *new* Inspector-based debug protocol
41924192 as the legacy Debugger protocol previously used by Node.js has been
4193- removed. [[`010f864426`](https://github.com/nodejs/node/commit/010f864426)]
4193+ removed. [[`010f864426`](https://github.com/nodejs/node/commit/010f864426)] -
41944194 [#12949](https://github.com/nodejs/node/pull/12949).
41954195 * Throw when the `-c` and `-e` command-line arguments are used at the same
4196- time [[`a5f91ab230`](https://github.com/nodejs/node/commit/a5f91ab230)]
4196+ time [[`a5f91ab230`](https://github.com/nodejs/node/commit/a5f91ab230)] -
41974197 [#11689](https://github.com/nodejs/node/pull/11689).
41984198 * Throw when the `--use-bundled-ca` and `--use-openssl-ca` command-line
41994199 arguments are used at the same time.
4200- [[`8a7db9d4b5`](https://github.com/nodejs/node/commit/8a7db9d4b5)]
4200+ [[`8a7db9d4b5`](https://github.com/nodejs/node/commit/8a7db9d4b5)] -
42014201 [#12087](https://github.com/nodejs/node/pull/12087).
42024202
42034203* **Stream**
42044204 * `Stream` now supports `destroy()` and `_destroy()` APIs
4205- [[`b6e1d22fa6`](https://github.com/nodejs/node/commit/b6e1d22fa6)]
4205+ [[`b6e1d22fa6`](https://github.com/nodejs/node/commit/b6e1d22fa6)] -
42064206 [#12925](https://github.com/nodejs/node/pull/12925).
42074207 * `Stream` now supports the `_final()` API
4208- [[`07c7f198db`](https://github.com/nodejs/node/commit/07c7f198db)]
4208+ [[`07c7f198db`](https://github.com/nodejs/node/commit/07c7f198db)] -
42094209 [#12828](https://github.com/nodejs/node/pull/12828).
42104210
42114211* **TLS**
42124212 * The `rejectUnauthorized` option now defaults to `true`
4213- [[`348cc80a3c`](https://github.com/nodejs/node/commit/348cc80a3c)]
4213+ [[`348cc80a3c`](https://github.com/nodejs/node/commit/348cc80a3c)] -
42144214 [#5923](https://github.com/nodejs/node/pull/5923).
42154215 * The `tls.createSecurePair()` API now emits a runtime deprecation
4216- [[`a2ae08999b`](https://github.com/nodejs/node/commit/a2ae08999b)]
4216+ [[`a2ae08999b`](https://github.com/nodejs/node/commit/a2ae08999b)] -
42174217 [#11349](https://github.com/nodejs/node/pull/11349).
42184218 * A runtime deprecation will now be emitted when `dhparam` is less than
4219- 2048 bits [[`d523eb9c40`](https://github.com/nodejs/node/commit/d523eb9c40)]
4219+ 2048 bits [[`d523eb9c40`](https://github.com/nodejs/node/commit/d523eb9c40)] -
42204220 [#11447](https://github.com/nodejs/node/pull/11447).
42214221
42224222* **URL**
42234223 * The WHATWG URL implementation is now a fully-supported Node.js API
4224- [[`d080ead0f9`](https://github.com/nodejs/node/commit/d080ead0f9)]
4224+ [[`d080ead0f9`](https://github.com/nodejs/node/commit/d080ead0f9)] -
42254225 [#12710](https://github.com/nodejs/node/pull/12710).
42264226
42274227* **Util**
42284228 * `Symbol` keys are now displayed by default when using `util.inspect()`
4229- [[`5bfd13b81e`](https://github.com/nodejs/node/commit/5bfd13b81e)]
4229+ [[`5bfd13b81e`](https://github.com/nodejs/node/commit/5bfd13b81e)] -
42304230 [#9726](https://github.com/nodejs/node/pull/9726).
42314231 * `toJSON` errors will be thrown when formatting `%j`
4232- [[`455e6f1dd8`](https://github.com/nodejs/node/commit/455e6f1dd8)]
4232+ [[`455e6f1dd8`](https://github.com/nodejs/node/commit/455e6f1dd8)] -
42334233 [#11708](https://github.com/nodejs/node/pull/11708).
42344234 * Convert `inspect.styles` and `inspect.colors` to prototype-less objects
4235- [[`aab0d202f8`](https://github.com/nodejs/node/commit/aab0d202f8)]
4235+ [[`aab0d202f8`](https://github.com/nodejs/node/commit/aab0d202f8)] -
42364236 [#11624](https://github.com/nodejs/node/pull/11624).
42374237 * The new `util.promisify()` API has been added
4238- [[`99da8e8e02`](https://github.com/nodejs/node/commit/99da8e8e02)]
4238+ [[`99da8e8e02`](https://github.com/nodejs/node/commit/99da8e8e02)] -
42394239 [#12442](https://github.com/nodejs/node/pull/12442).
42404240
42414241* **Zlib**
42424242 * Support `Uint8Array` in Zlib convenience methods
4243- [[`91383e47fd`](https://github.com/nodejs/node/commit/91383e47fd)]
4243+ [[`91383e47fd`](https://github.com/nodejs/node/commit/91383e47fd)] -
42444244 [#12001](https://github.com/nodejs/node/pull/12001).
42454245 * Zlib errors now use `RangeError` and `TypeError` consistently
4246- [[`b514bd231e`](https://github.com/nodejs/node/commit/b514bd231e)]
4246+ [[`b514bd231e`](https://github.com/nodejs/node/commit/b514bd231e)] -
42474247 [#11391](https://github.com/nodejs/node/pull/11391).
42484248
42494249### Commits
0 commit comments