node-linux-s390x 22.10.0 → 22.11.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 +30 -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 'Jod'</th>
|
|
7
8
|
<th>Current</th>
|
|
8
9
|
</tr>
|
|
9
10
|
<tr>
|
|
10
11
|
<td>
|
|
12
|
+
<a href="#22.11.0">22.11.0</a><br/>
|
|
13
|
+
</td>
|
|
14
|
+
<td>
|
|
11
15
|
<a href="#22.10.0">22.10.0</a><br/>
|
|
12
16
|
<a href="#22.9.0">22.9.0</a><br/>
|
|
13
17
|
<a href="#22.8.0">22.8.0</a><br/>
|
|
@@ -49,6 +53,32 @@
|
|
|
49
53
|
* [io.js](CHANGELOG_IOJS.md)
|
|
50
54
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
51
55
|
|
|
56
|
+
<a id="22.11.0"></a>
|
|
57
|
+
|
|
58
|
+
## 2024-10-29, Version 22.11.0 'Jod' (LTS), @richardlau
|
|
59
|
+
|
|
60
|
+
### Notable Changes
|
|
61
|
+
|
|
62
|
+
This release marks the transition of Node.js 22.x into Long Term Support (LTS)
|
|
63
|
+
with the codename 'Jod'. The 22.x release line now moves into "Active LTS"
|
|
64
|
+
and will remain so until October 2025. After that time, it will move into
|
|
65
|
+
"Maintenance" until end of life in April 2027.
|
|
66
|
+
|
|
67
|
+
Other than updating metadata, such as the `process.release` object, to reflect
|
|
68
|
+
that the release is LTS, no further changes from Node.js 22.10.0 are included.
|
|
69
|
+
|
|
70
|
+
### OpenSSL 3.x
|
|
71
|
+
|
|
72
|
+
Official binaries for Node.js 22.x currently include OpenSSL 3.0.x (more
|
|
73
|
+
specifically, the [quictls OpenSSL fork](https://github.com/quictls/openssl)).
|
|
74
|
+
OpenSSL 3.0.x is the currently designated long term support version that is
|
|
75
|
+
scheduled to be supported until 7th September 2026, which is within the expected
|
|
76
|
+
lifetime of Node.js 22.x. We are expecting upstream OpenSSL to announce a
|
|
77
|
+
successor long term support version prior to that date and since OpenSSL now
|
|
78
|
+
follows a semantic versioning-like versioning scheme we expect to be able to
|
|
79
|
+
update to the next long term supported version of OpenSSL during the lifetime of
|
|
80
|
+
Node.js 22.x.
|
|
81
|
+
|
|
52
82
|
<a id="22.10.0"></a>
|
|
53
83
|
|
|
54
84
|
## 2024-10-16, Version 22.10.0 (Current), @aduh95
|
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 22
|
|
26
|
-
#define NODE_MINOR_VERSION
|
|
26
|
+
#define NODE_MINOR_VERSION 11
|
|
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 "Jod"
|
|
31
31
|
|
|
32
32
|
#define NODE_VERSION_IS_RELEASE 1
|
|
33
33
|
|