node-linux-arm64 18.11.0 → 18.12.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 +15 -0
- package/bin/node +0 -0
- package/include/node/node_version.h +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,10 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
<table>
|
|
6
6
|
<tr>
|
|
7
|
+
<th>LTS 'Hydrogen'</th>
|
|
7
8
|
<th>Current</th>
|
|
8
9
|
</tr>
|
|
9
10
|
<tr>
|
|
10
11
|
<td>
|
|
12
|
+
<a href="#18.12.0">18.12.0</a><br/>
|
|
13
|
+
</td>
|
|
14
|
+
<td>
|
|
11
15
|
<a href="#18.11.0">18.11.0</a><br/>
|
|
12
16
|
<a href="#18.10.0">18.10.0</a><br/>
|
|
13
17
|
<a href="#18.9.1">18.9.1</a><br/>
|
|
@@ -45,6 +49,17 @@
|
|
|
45
49
|
* [io.js](CHANGELOG_IOJS.md)
|
|
46
50
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
47
51
|
|
|
52
|
+
<a id="18.12.0"></a>
|
|
53
|
+
|
|
54
|
+
## 2022-10-25, Version 18.12.0 'Hydrogen' (LTS), @ruyadorno and @RafaelGSS
|
|
55
|
+
|
|
56
|
+
### Notable Changes
|
|
57
|
+
|
|
58
|
+
This release marks the transition of Node.js 18.x into Long Term Support (LTS)
|
|
59
|
+
with the codename 'Hydrogen'. The 18.x release line now moves into "Active LTS"
|
|
60
|
+
and will remain so until October 2023. After that time, it will move into
|
|
61
|
+
"Maintenance" until end of life in April 2025.
|
|
62
|
+
|
|
48
63
|
<a id="18.11.0"></a>
|
|
49
64
|
|
|
50
65
|
## 2022-10-13, Version 18.11.0 (Current), @danielleadams
|
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 18
|
|
26
|
-
#define NODE_MINOR_VERSION
|
|
26
|
+
#define NODE_MINOR_VERSION 12
|
|
27
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 "Hydrogen"
|
|
31
31
|
|
|
32
32
|
#define NODE_VERSION_IS_RELEASE 1
|
|
33
33
|
|