Skip to content

Commit 7615798

Browse files
committed
2023-10-10, Version 18.18.1 'Hydrogen' (LTS)
Notable changes: This release addresses some regressions that appeared in Node.js 18.18.0: - (Windows) FS can not handle certain characters in file name #48673 - 18 and 20 node images give error - Text file busy (after re-build images) nodejs/docker-node#1968 - libuv update in 18.18.0 breaks webpack's thread-loader #49911 The libuv 1.45.0 and 1.46.0 updates that were released in Node.js 18.18.0 have been temporarily reverted. PR-URL: #50066
1 parent 14ece2c commit 7615798

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ release.
3232
</tr>
3333
<tr>
3434
<td valign="top">
35-
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.18.0">18.18.0</a></b><br/>
35+
<b><a href="doc/changelogs/CHANGELOG_V18.md#18.18.1">18.18.1</a></b><br/>
36+
<a href="doc/changelogs/CHANGELOG_V18.md#18.18.0">18.18.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V18.md#18.17.1">18.17.1</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V18.md#18.17.0">18.17.0</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V18.md#18.16.1">18.16.1</a><br/>

doc/changelogs/CHANGELOG_V18.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
</tr>
1010
<tr>
1111
<td>
12+
<a href="#18.18.1">18.18.1</a><br/>
1213
<a href="#18.18.0">18.18.0</a><br/>
1314
<a href="#18.17.1">18.17.1</a><br/>
1415
<a href="#18.17.0">18.17.0</a><br/>
@@ -60,6 +61,29 @@
6061
* [io.js](CHANGELOG_IOJS.md)
6162
* [Archive](CHANGELOG_ARCHIVE.md)
6263

64+
<a id="18.18.1"></a>
65+
66+
## 2023-10-10, Version 18.18.1 'Hydrogen' (LTS), @richardlau
67+
68+
### Notable Changes
69+
70+
This release addresses some regressions that appeared in Node.js 18.18.0:
71+
72+
* (Windows) FS can not handle certain characters in file name [#48673](https://github.com/nodejs/node/issues/48673)
73+
* 18 and 20 node images give error - Text file busy (after re-build images) [nodejs/docker-node#1968](https://github.com/nodejs/docker-node/issues/1968)
74+
* libuv update in 18.18.0 breaks webpack's thread-loader [#49911](https://github.com/nodejs/node/issues/49911)
75+
76+
The libuv 1.45.0 and 1.46.0 updates that were released in Node.js 18.18.0 have been temporarily reverted.
77+
78+
### Commits
79+
80+
* \[[`3e3a75cc46`](https://github.com/nodejs/node/commit/3e3a75cc46)] - _**Revert**_ "**build**: sync libuv header change" (Richard Lau) [#50036](https://github.com/nodejs/node/pull/50036)
81+
* \[[`14ece2c479`](https://github.com/nodejs/node/commit/14ece2c479)] - _**Revert**_ "**deps**: upgrade to libuv 1.45.0" (Richard Lau) [#50036](https://github.com/nodejs/node/pull/50036)
82+
* \[[`022352acbe`](https://github.com/nodejs/node/commit/022352acbe)] - _**Revert**_ "**deps**: upgrade to libuv 1.46.0" (Richard Lau) [#50036](https://github.com/nodejs/node/pull/50036)
83+
* \[[`d9f138189c`](https://github.com/nodejs/node/commit/d9f138189c)] - _**Revert**_ "**deps**: add missing thread-common.c in uv.gyp" (Richard Lau) [#50036](https://github.com/nodejs/node/pull/50036)
84+
* \[[`7a3e1ffbb8`](https://github.com/nodejs/node/commit/7a3e1ffbb8)] - **fs**: make sure to write entire buffer (Robert Nagy) [#49211](https://github.com/nodejs/node/pull/49211)
85+
* \[[`04cba95a67`](https://github.com/nodejs/node/commit/04cba95a67)] - **test**: add `tmpdir.resolve()` (Livia Medeiros) [#49079](https://github.com/nodejs/node/pull/49079)
86+
6387
<a id="18.18.0"></a>
6488

6589
## 2023-09-18, Version 18.18.0 'Hydrogen' (LTS), @ruyadorno

src/node_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define NODE_VERSION_IS_LTS 1
3030
#define NODE_VERSION_LTS_CODENAME "Hydrogen"
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)