node-linux-s390x 20.8.1 → 20.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/bin/node +0 -0
- package/include/node/node_version.h +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,10 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
<table>
|
|
6
6
|
<tr>
|
|
7
|
+
<th>LTS 'Iron'</th>
|
|
7
8
|
<th>Current</th>
|
|
8
9
|
</tr>
|
|
9
10
|
<tr>
|
|
10
11
|
<td>
|
|
12
|
+
<a href="#20.9.0">20.9.0</a><br/>
|
|
13
|
+
</td>
|
|
14
|
+
<td>
|
|
11
15
|
<a href="#20.8.1">20.8.1</a><br/>
|
|
12
16
|
<a href="#20.8.0">20.8.0</a><br/>
|
|
13
17
|
<a href="#20.7.0">20.7.0</a><br/>
|
|
@@ -47,6 +51,24 @@
|
|
|
47
51
|
* [io.js](CHANGELOG_IOJS.md)
|
|
48
52
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
49
53
|
|
|
54
|
+
<a id="20.9.0"></a>
|
|
55
|
+
|
|
56
|
+
## 2023-10-24, Version 20.9.0 'Iron' (LTS), @richardlau
|
|
57
|
+
|
|
58
|
+
### Notable Changes
|
|
59
|
+
|
|
60
|
+
This release marks the transition of Node.js 20.x into Long Term Support (LTS)
|
|
61
|
+
with the codename 'Iron'. The 20.x release line now moves into "Active LTS"
|
|
62
|
+
and will remain so until October 2024. After that time, it will move into
|
|
63
|
+
"Maintenance" until end of life in April 2026.
|
|
64
|
+
|
|
65
|
+
### Known issue
|
|
66
|
+
|
|
67
|
+
Collecting code coverage via the `NODE_V8_COVERAGE` environment variable may
|
|
68
|
+
lead to a hang. This is not thought to be a regression in Node.js 20 (some
|
|
69
|
+
reports are on Node.js 18). For more information, including some potential
|
|
70
|
+
workarounds, see issue [#49344](https://github.com/nodejs/node/issues/49344).
|
|
71
|
+
|
|
50
72
|
<a id="20.8.1"></a>
|
|
51
73
|
|
|
52
74
|
## 2023-10-13, Version 20.8.1 (Current), @RafaelGSS
|
package/bin/node
CHANGED
|
Binary file
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
#define SRC_NODE_VERSION_H_
|
|
24
24
|
|
|
25
25
|
#define NODE_MAJOR_VERSION 20
|
|
26
|
-
#define NODE_MINOR_VERSION
|
|
27
|
-
#define NODE_PATCH_VERSION
|
|
26
|
+
#define NODE_MINOR_VERSION 9
|
|
27
|
+
#define NODE_PATCH_VERSION 0
|
|
28
28
|
|
|
29
|
-
#define NODE_VERSION_IS_LTS
|
|
30
|
-
#define NODE_VERSION_LTS_CODENAME ""
|
|
29
|
+
#define NODE_VERSION_IS_LTS 1
|
|
30
|
+
#define NODE_VERSION_LTS_CODENAME "Iron"
|
|
31
31
|
|
|
32
32
|
#define NODE_VERSION_IS_RELEASE 1
|
|
33
33
|
|