Skip to content

Commit 471f4a9

Browse files
committed
2019-09-04, Version 12.10.0 (Current)
Notable changes: * deps: * Update npm to 6.10.3 (isaacs) #29023 * fs: * Add recursive option to rmdir() (cjihrig) #29168 * Allow passing true to emitClose option (Giorgos Ntemiris) #29212 * Add \*timeNs properties to BigInt Stats objects (Joyee Cheung) #21387 * net: * Allow reading data into a static buffer (Brian White) #25436 PR-URL: #29429
1 parent a72658f commit 471f4a9

File tree

6 files changed

+117
-15
lines changed

6 files changed

+117
-15
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ release.
2828
</tr>
2929
<tr>
3030
<td valign="top">
31-
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.9.1">12.9.1</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.10.0">12.10.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V12.md#12.9.1">12.9.1</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V12.md#12.9.0">12.9.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V12.md#12.8.1">12.8.1</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V12.md#12.8.0">12.8.0</a><br/>

doc/api/esm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ future use. The root of the current volume may be referenced via `file:///`.
323323
#### `data:` Imports
324324

325325
<!-- YAML
326-
added: REPLACEME
326+
added: v12.10.0
327327
-->
328328

329329
[`data:` URLs][] are supported for importing with the following MIME types:

doc/api/fs.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ milliseconds since the POSIX Epoch.
735735

736736
### stats.atimeNs
737737
<!-- YAML
738-
added: REPLACEME
738+
added: v12.10.0
739739
-->
740740

741741
* {bigint}
@@ -747,7 +747,7 @@ nanoseconds since the POSIX Epoch.
747747

748748
### stats.mtimeNs
749749
<!-- YAML
750-
added: REPLACEME
750+
added: v12.10.0
751751
-->
752752

753753
* {bigint}
@@ -759,7 +759,7 @@ nanoseconds since the POSIX Epoch.
759759

760760
### stats.ctimeNs
761761
<!-- YAML
762-
added: REPLACEME
762+
added: v12.10.0
763763
-->
764764

765765
* {bigint}
@@ -771,7 +771,7 @@ in nanoseconds since the POSIX Epoch.
771771

772772
### stats.birthtimeNs
773773
<!-- YAML
774-
added: REPLACEME
774+
added: v12.10.0
775775
-->
776776

777777
* {bigint}
@@ -1506,7 +1506,7 @@ fs.copyFileSync('source.txt', 'destination.txt', COPYFILE_EXCL);
15061506
<!-- YAML
15071507
added: v0.1.31
15081508
changes:
1509-
- version: REPLACEME
1509+
- version: v12.10.0
15101510
pr-url: https://github.com/nodejs/node/pull/29212
15111511
description: Enable `emitClose` option.
15121512
- version: v11.0.0
@@ -1602,7 +1602,7 @@ If `options` is a string, then it specifies the encoding.
16021602
<!-- YAML
16031603
added: v0.1.31
16041604
changes:
1605-
- version: REPLACEME
1605+
- version: v12.10.0
16061606
pr-url: https://github.com/nodejs/node/pull/29212
16071607
description: Enable `emitClose` option.
16081608
- version: v7.6.0
@@ -3023,7 +3023,7 @@ Synchronous rename(2). Returns `undefined`.
30233023
<!-- YAML
30243024
added: v0.0.2
30253025
changes:
3026-
- version: REPLACEME
3026+
- version: v12.10.0
30273027
pr-url: https://github.com/nodejs/node/pull/29168
30283028
description: The `recursive`, `maxBusyTries`, and `emfileWait` options are
30293029
now supported.
@@ -3069,7 +3069,7 @@ Windows and an `ENOTDIR` error on POSIX.
30693069
<!-- YAML
30703070
added: v0.1.21
30713071
changes:
3072-
- version: REPLACEME
3072+
- version: v12.10.0
30733073
pr-url: https://github.com/nodejs/node/pull/29168
30743074
description: The `recursive`, `maxBusyTries`, and `emfileWait` options are
30753075
now supported.
@@ -4729,7 +4729,7 @@ upon success.
47294729
<!-- YAML
47304730
added: v10.0.0
47314731
changes:
4732-
- version: REPLACEME
4732+
- version: v12.10.0
47334733
pr-url: https://github.com/nodejs/node/pull/29168
47344734
description: The `recursive`, `maxBusyTries`, and `emfileWait` options are
47354735
now supported.

doc/api/net.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ for the [`'connect'`][] event **once**.
596596
<!-- YAML
597597
added: v0.1.90
598598
changes:
599-
- version: REPLACEME
599+
- version: v12.10.0
600600
pr-url: https://github.com/nodejs/node/pull/25436
601601
description: Added `onread` option.
602602
- version: v6.0.0

doc/changelogs/CHANGELOG_V12.md

+101
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
</tr>
1010
<tr>
1111
<td>
12+
<a href="#12.10.0">12.10.0</a><br/>
1213
<a href="#12.9.1">12.9.1</a><br/>
1314
<a href="#12.9.0">12.9.0</a><br/>
1415
<a href="#12.8.1">12.8.1</a><br/>
@@ -40,6 +41,106 @@
4041
* [io.js](CHANGELOG_IOJS.md)
4142
* [Archive](CHANGELOG_ARCHIVE.md)
4243

44+
<a id="12.10.0"></a>
45+
## 2019-09-03, Version 12.10.0 (Current), @BridgeAr
46+
47+
### Notable changes
48+
49+
* **deps**:
50+
* Update npm to 6.10.3 (isaacs) [#29023](https://github.com/nodejs/node/pull/29023)
51+
* **fs**:
52+
* Add recursive option to rmdir() (cjihrig) [#29168](https://github.com/nodejs/node/pull/29168)
53+
* Allow passing true to emitClose option (Giorgos Ntemiris) [#29212](https://github.com/nodejs/node/pull/29212)
54+
* Add \*timeNs properties to BigInt Stats objects (Joyee Cheung) [#21387](https://github.com/nodejs/node/pull/21387)
55+
* **net**:
56+
* Allow reading data into a static buffer (Brian White) [#25436](https://github.com/nodejs/node/pull/25436)
57+
58+
### Commits
59+
60+
* [[`293c9f0d75`](https://github.com/nodejs/node/commit/293c9f0d75)] - **bootstrap**: run preload prior to frozen-intrinsics (Bradley Farias) [#28940](https://github.com/nodejs/node/pull/28940)
61+
* [[`8da9e4da00`](https://github.com/nodejs/node/commit/8da9e4da00)] - **buffer**: correct indexOf() error message (Brian White) [#29217](https://github.com/nodejs/node/pull/29217)
62+
* [[`a007fe9768`](https://github.com/nodejs/node/commit/a007fe9768)] - **buffer**: consolidate encoding parsing (Brian White) [#29217](https://github.com/nodejs/node/pull/29217)
63+
* [[`054407511e`](https://github.com/nodejs/node/commit/054407511e)] - **buffer**: correct concat() error message (Brian White) [#29198](https://github.com/nodejs/node/pull/29198)
64+
* [[`35bca312ed`](https://github.com/nodejs/node/commit/35bca312ed)] - **buffer**: improve equals() performance (Brian White) [#29199](https://github.com/nodejs/node/pull/29199)
65+
* [[`e6aca32449`](https://github.com/nodejs/node/commit/e6aca32449)] - ***Revert*** "**build**: add full Python 3 tests to Travis CI" (Ben Noordhuis) [#29406](https://github.com/nodejs/node/pull/29406)
66+
* [[`8f6b8524b8`](https://github.com/nodejs/node/commit/8f6b8524b8)] - **build**: add full Python 3 tests to Travis CI (cclauss) [#29360](https://github.com/nodejs/node/pull/29360)
67+
* [[`1ee0683eee`](https://github.com/nodejs/node/commit/1ee0683eee)] - **build**: hard code doctool in test-doc target (Daniel Bevenius) [#29375](https://github.com/nodejs/node/pull/29375)
68+
* [[`c75813aeda`](https://github.com/nodejs/node/commit/c75813aeda)] - **build**: integrate DragonFlyBSD into gyp build (David Carlier) [#29313](https://github.com/nodejs/node/pull/29313)
69+
* [[`17d656fa89`](https://github.com/nodejs/node/commit/17d656fa89)] - **build**: make --without-snapshot imply --without-node-snapshot (Joyee Cheung) [#29294](https://github.com/nodejs/node/pull/29294)
70+
* [[`164075e7b6`](https://github.com/nodejs/node/commit/164075e7b6)] - **build**: test Python 3.6 and 3.7 on Travis CI (cclauss) [#29291](https://github.com/nodejs/node/pull/29291)
71+
* [[`feafc019b1`](https://github.com/nodejs/node/commit/feafc019b1)] - **build**: move tooltest to before jstest target (Daniel Bevenius) [#29220](https://github.com/nodejs/node/pull/29220)
72+
* [[`aeafb91e2c`](https://github.com/nodejs/node/commit/aeafb91e2c)] - **build**: add Python 3 tests to Travis CI (cclauss) [#29196](https://github.com/nodejs/node/pull/29196)
73+
* [[`e13a634548`](https://github.com/nodejs/node/commit/e13a634548)] - **build,win**: accept Python 3 if 2 is not available (João Reis) [#29236](https://github.com/nodejs/node/pull/29236)
74+
* [[`8baca8eb95`](https://github.com/nodejs/node/commit/8baca8eb95)] - **build,win**: find Python in paths with spaces (João Reis) [#29236](https://github.com/nodejs/node/pull/29236)
75+
* [[`01e5074c75`](https://github.com/nodejs/node/commit/01e5074c75)] - **console**: use getStringWidth() for character width calculation (Anna Henningsen) [#29300](https://github.com/nodejs/node/pull/29300)
76+
* [[`fdfde05ca1`](https://github.com/nodejs/node/commit/fdfde05ca1)] - **console**: display timeEnd with suitable time unit (Xavier Stouder) [#29251](https://github.com/nodejs/node/pull/29251)
77+
* [[`d11ee1951b`](https://github.com/nodejs/node/commit/d11ee1951b)] - **crypto**: don't expose openssl internals (Shelley Vohr) [#29325](https://github.com/nodejs/node/pull/29325)
78+
* [[`e0537e6978`](https://github.com/nodejs/node/commit/e0537e6978)] - **crypto**: simplify DSA validation in FIPS mode (Tobias Nießen) [#29195](https://github.com/nodejs/node/pull/29195)
79+
* [[`7a4ae1ab50`](https://github.com/nodejs/node/commit/7a4ae1ab50)] - **deps**: V8: cherry-pick 597f885 (Benjamin Coe) [#29367](https://github.com/nodejs/node/pull/29367)
80+
* [[`219c19530e`](https://github.com/nodejs/node/commit/219c19530e)] - **(SEMVER-MINOR)** **deps**: update npm to 6.10.3 (isaacs) [#29023](https://github.com/nodejs/node/pull/29023)
81+
* [[`1dc5ded9bd`](https://github.com/nodejs/node/commit/1dc5ded9bd)] - **doc**: escape elements swallowed as HTML in markdown (Nick Schonning) [#29374](https://github.com/nodejs/node/pull/29374)
82+
* [[`71bc32ca84`](https://github.com/nodejs/node/commit/71bc32ca84)] - **doc**: add extends for derived classes (Kamat, Trivikram) [#29290](https://github.com/nodejs/node/pull/29290)
83+
* [[`4eedc4fce9`](https://github.com/nodejs/node/commit/4eedc4fce9)] - **doc**: add blanks around code fences (Nick Schonning) [#29366](https://github.com/nodejs/node/pull/29366)
84+
* [[`ebd2e7b382`](https://github.com/nodejs/node/commit/ebd2e7b382)] - **doc**: format http2 anchor link and reference (Nick Schonning) [#29362](https://github.com/nodejs/node/pull/29362)
85+
* [[`875c3d3ed7`](https://github.com/nodejs/node/commit/875c3d3ed7)] - **doc**: remove multiple consecutive blank lines (Nick Schonning) [#29352](https://github.com/nodejs/node/pull/29352)
86+
* [[`28b1a4919c`](https://github.com/nodejs/node/commit/28b1a4919c)] - **doc**: add devnexen to collaborators (David Carlier) [#29370](https://github.com/nodejs/node/pull/29370)
87+
* [[`2076183985`](https://github.com/nodejs/node/commit/2076183985)] - **doc**: inconsistent indentation for list items (Nick Schonning) [#29330](https://github.com/nodejs/node/pull/29330)
88+
* [[`9c9d9e7c8c`](https://github.com/nodejs/node/commit/9c9d9e7c8c)] - **doc**: heading levels should only increment by one (Nick Schonning) [#29331](https://github.com/nodejs/node/pull/29331)
89+
* [[`a39caed238`](https://github.com/nodejs/node/commit/a39caed238)] - **doc**: add dco to github pr template (Myles Borins) [#24023](https://github.com/nodejs/node/pull/24023)
90+
* [[`8599052283`](https://github.com/nodejs/node/commit/8599052283)] - **doc**: add https.Server extends tls.Server (Trivikram Kamat) [#29256](https://github.com/nodejs/node/pull/29256)
91+
* [[`2fafd635d7`](https://github.com/nodejs/node/commit/2fafd635d7)] - **doc**: fix nits in esm.md (Vse Mozhet Byt) [#29242](https://github.com/nodejs/node/pull/29242)
92+
* [[`6a4f156ba4`](https://github.com/nodejs/node/commit/6a4f156ba4)] - **doc**: add missing extends Http2Session (Trivikram Kamat) [#29252](https://github.com/nodejs/node/pull/29252)
93+
* [[`1d649e3444`](https://github.com/nodejs/node/commit/1d649e3444)] - **doc**: indicate that Http2ServerRequest extends Readable (Trivikram Kamat) [#29253](https://github.com/nodejs/node/pull/29253)
94+
* [[`b2f169e628`](https://github.com/nodejs/node/commit/b2f169e628)] - **doc**: indicate that Http2ServerResponse extends Stream (Trivikram Kamat) [#29254](https://github.com/nodejs/node/pull/29254)
95+
* [[`65de900052`](https://github.com/nodejs/node/commit/65de900052)] - **(SEMVER-MINOR)** **doc**: add emitClose option for fs streams (Rich Trott) [#29212](https://github.com/nodejs/node/pull/29212)
96+
* [[`8c776cba39`](https://github.com/nodejs/node/commit/8c776cba39)] - **doc,crypto**: add extends for derived classes (Kamat, Trivikram) [#29302](https://github.com/nodejs/node/pull/29302)
97+
* [[`08208543ba`](https://github.com/nodejs/node/commit/08208543ba)] - **doc,errors**: add extends to derived classes (Kamat, Trivikram) [#29303](https://github.com/nodejs/node/pull/29303)
98+
* [[`683cd0ff2c`](https://github.com/nodejs/node/commit/683cd0ff2c)] - **doc,fs**: add extends for derived classes (Kamat, Trivikram) [#29304](https://github.com/nodejs/node/pull/29304)
99+
* [[`8a93b63a6b`](https://github.com/nodejs/node/commit/8a93b63a6b)] - **doc,http**: add extends for derived classes (Trivikram Kamat) [#29255](https://github.com/nodejs/node/pull/29255)
100+
* [[`ba29be60ae`](https://github.com/nodejs/node/commit/ba29be60ae)] - **doc,tls**: add extends for derived classes (Trivikram Kamat) [#29257](https://github.com/nodejs/node/pull/29257)
101+
* [[`f56cd36847`](https://github.com/nodejs/node/commit/f56cd36847)] - **errors**: provide defaults for unmapped uv errors (cjihrig) [#29288](https://github.com/nodejs/node/pull/29288)
102+
* [[`a7c8322a54`](https://github.com/nodejs/node/commit/a7c8322a54)] - **esm**: support loading data URLs (Bradley Farias) [#28614](https://github.com/nodejs/node/pull/28614)
103+
* [[`a5049c08b0`](https://github.com/nodejs/node/commit/a5049c08b0)] - **events**: improve once() performance (Brian White) [#29307](https://github.com/nodejs/node/pull/29307)
104+
* [[`ed2293e3d7`](https://github.com/nodejs/node/commit/ed2293e3d7)] - **(SEMVER-MINOR)** **fs**: add recursive option to rmdir() (cjihrig) [#29168](https://github.com/nodejs/node/pull/29168)
105+
* [[`8f47ff16d4`](https://github.com/nodejs/node/commit/8f47ff16d4)] - **(SEMVER-MINOR)** **fs**: allow passing true to emitClose option (Giorgos Ntemiris) [#29212](https://github.com/nodejs/node/pull/29212)
106+
* [[`6ff803d97c`](https://github.com/nodejs/node/commit/6ff803d97c)] - **fs**: fix (temporary) for esm package (Robert Nagy) [#28957](https://github.com/nodejs/node/pull/28957)
107+
* [[`e6353bda1a`](https://github.com/nodejs/node/commit/e6353bda1a)] - **fs**: document the Date conversion in Stats objects (Joyee Cheung) [#28224](https://github.com/nodejs/node/pull/28224)
108+
* [[`365e062e14`](https://github.com/nodejs/node/commit/365e062e14)] - **(SEMVER-MINOR)** **fs**: add \*timeNs properties to BigInt Stats objects (Joyee Cheung) [#21387](https://github.com/nodejs/node/pull/21387)
109+
* [[`12cbb3f12f`](https://github.com/nodejs/node/commit/12cbb3f12f)] - **gyp**: remove semicolons (Python != JavaScript) (MattIPv4) [#29228](https://github.com/nodejs/node/pull/29228)
110+
* [[`10bae2ec91`](https://github.com/nodejs/node/commit/10bae2ec91)] - **gyp**: futurize imput.py to prepare for Python 3 (cclauss) [#29140](https://github.com/nodejs/node/pull/29140)
111+
* [[`3737bd9bac`](https://github.com/nodejs/node/commit/3737bd9bac)] - **http**: simplify timeout handling (Robert Nagy) [#29200](https://github.com/nodejs/node/pull/29200)
112+
* [[`8877b5f606`](https://github.com/nodejs/node/commit/8877b5f606)] - **lib**: add ASCII fast path to getStringWidth() (Anna Henningsen) [#29301](https://github.com/nodejs/node/pull/29301)
113+
* [[`902fc2fce9`](https://github.com/nodejs/node/commit/902fc2fce9)] - **lib**: consolidate lazyErrmapGet() (cjihrig) [#29285](https://github.com/nodejs/node/pull/29285)
114+
* [[`eb2d96fecf`](https://github.com/nodejs/node/commit/eb2d96fecf)] - **module**: avoid passing unnecessary loop reference (Saúl Ibarra Corretgé) [#29275](https://github.com/nodejs/node/pull/29275)
115+
* [[`dfc0ef5d88`](https://github.com/nodejs/node/commit/dfc0ef5d88)] - **(SEMVER-MINOR)** **net**: allow reading data into a static buffer (Brian White) [#25436](https://github.com/nodejs/node/pull/25436)
116+
* [[`527f118a44`](https://github.com/nodejs/node/commit/527f118a44)] - **process**: improve nextTick performance (Brian White) [#25461](https://github.com/nodejs/node/pull/25461)
117+
* [[`1223795628`](https://github.com/nodejs/node/commit/1223795628)] - **querystring**: improve performance (Brian White) [#29306](https://github.com/nodejs/node/pull/29306)
118+
* [[`0bd6527972`](https://github.com/nodejs/node/commit/0bd6527972)] - **src**: do not crash when accessing empty WeakRefs (Anna Henningsen) [#29289](https://github.com/nodejs/node/pull/29289)
119+
* [[`fd7c2beacc`](https://github.com/nodejs/node/commit/fd7c2beacc)] - **src**: turn `GET\_OFFSET()` into an inline function (Anna Henningsen) [#29357](https://github.com/nodejs/node/pull/29357)
120+
* [[`00ed7d1a8d`](https://github.com/nodejs/node/commit/00ed7d1a8d)] - **src**: inline `SLICE\_START\_END()` in node\_buffer.cc (Anna Henningsen) [#29357](https://github.com/nodejs/node/pull/29357)
121+
* [[`8c154aa1b4`](https://github.com/nodejs/node/commit/8c154aa1b4)] - **src**: allow --interpreted-frames-native-stack in NODE\_OPTIONS (Matheus Marchini) [#27744](https://github.com/nodejs/node/pull/27744)
122+
* [[`6f056e54e4`](https://github.com/nodejs/node/commit/6f056e54e4)] - **src**: expose MaybeInitializeContext to allow existing contexts (Samuel Attard) [#28544](https://github.com/nodejs/node/pull/28544)
123+
* [[`4d4583e0a2`](https://github.com/nodejs/node/commit/4d4583e0a2)] - **src**: add large page support for macOS (David Carlier) [#28977](https://github.com/nodejs/node/pull/28977)
124+
* [[`5e32d5feac`](https://github.com/nodejs/node/commit/5e32d5feac)] - **stream**: don't deadlock on aborted stream (Robert Nagy) [#29376](https://github.com/nodejs/node/pull/29376)
125+
* [[`d82ecb91d4`](https://github.com/nodejs/node/commit/d82ecb91d4)] - **stream**: improve read() performance (Brian White) [#29337](https://github.com/nodejs/node/pull/29337)
126+
* [[`e939a8747f`](https://github.com/nodejs/node/commit/e939a8747f)] - **stream**: async iterator destroy compat (Robert Nagy) [#29176](https://github.com/nodejs/node/pull/29176)
127+
* [[`b36a6e9ed5`](https://github.com/nodejs/node/commit/b36a6e9ed5)] - **stream**: do not emit drain if stream ended (Robert Nagy) [#29086](https://github.com/nodejs/node/pull/29086)
128+
* [[`f6b005d82c`](https://github.com/nodejs/node/commit/f6b005d82c)] - **test**: remove Windows skipping of http keepalive request GC test (Rich Trott) [#29354](https://github.com/nodejs/node/pull/29354)
129+
* [[`a7faef9827`](https://github.com/nodejs/node/commit/a7faef9827)] - **test**: fix test-benchmark-net (Rich Trott) [#29359](https://github.com/nodejs/node/pull/29359)
130+
* [[`e3cfbbaf57`](https://github.com/nodejs/node/commit/e3cfbbaf57)] - **test**: fix flaky test-http-server-keepalive-req-gc (Rich Trott) [#29347](https://github.com/nodejs/node/pull/29347)
131+
* [[`64461ee3c3`](https://github.com/nodejs/node/commit/64461ee3c3)] - **test**: use print() function in both Python 2 and 3 (Christian Clauss) [#29298](https://github.com/nodejs/node/pull/29298)
132+
* [[`1f88ca3424`](https://github.com/nodejs/node/commit/1f88ca3424)] - **(SEMVER-MINOR)** **test**: add `emitClose: true` tests for fs streams (Rich Trott) [#29212](https://github.com/nodejs/node/pull/29212)
133+
* [[`a72658fa8e`](https://github.com/nodejs/node/commit/a72658fa8e)] - **tools**: update ESLint to 6.3.0 (cjihrig) [#29382](https://github.com/nodejs/node/pull/29382)
134+
* [[`1f404134b3`](https://github.com/nodejs/node/commit/1f404134b3)] - **tools**: use 'from io import StringIO' in ninja.py (cclauss) [#29371](https://github.com/nodejs/node/pull/29371)
135+
* [[`78aa93709a`](https://github.com/nodejs/node/commit/78aa93709a)] - **tools**: fix mksnapshot blob wrong freeing operator (David Carlier) [#29384](https://github.com/nodejs/node/pull/29384)
136+
* [[`9b05c8e93f`](https://github.com/nodejs/node/commit/9b05c8e93f)] - **tools**: update ESLint to 6.2.2 (cjihrig) [#29320](https://github.com/nodejs/node/pull/29320)
137+
* [[`7adc4b9a14`](https://github.com/nodejs/node/commit/7adc4b9a14)] - **tools**: update babel-eslint to 10.0.3 (cjihrig) [#29320](https://github.com/nodejs/node/pull/29320)
138+
* [[`c8eeb684d3`](https://github.com/nodejs/node/commit/c8eeb684d3)] - **tools**: fix Python 3 issues in inspector\_protocol (cclauss) [#29296](https://github.com/nodejs/node/pull/29296)
139+
* [[`925141f946`](https://github.com/nodejs/node/commit/925141f946)] - **tools**: fix mixup with bytes.decode() and str.encode() (Christian Clauss) [#29208](https://github.com/nodejs/node/pull/29208)
140+
* [[`a123a20134`](https://github.com/nodejs/node/commit/a123a20134)] - **tools**: fix Python 3 issues in tools/icu/icutrim.py (cclauss) [#29213](https://github.com/nodejs/node/pull/29213)
141+
* [[`eceebd3ef1`](https://github.com/nodejs/node/commit/eceebd3ef1)] - **tools**: fix Python 3 issues in gyp/generator/make.py (cclauss) [#29214](https://github.com/nodejs/node/pull/29214)
142+
* [[`2986170c93`](https://github.com/nodejs/node/commit/2986170c93)] - **util**: do not throw when inspecting detached ArrayBuffer (Anna Henningsen) [#29318](https://github.com/nodejs/node/pull/29318)
143+
43144
<a id="12.9.1"></a>
44145
## 2019-08-26, Version 12.9.1 (Current), @targos
45146

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