node-aix-ppc64 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 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
@@ -60774,12 +60774,14 @@ _ZN4node10JSONParser22GetTopLevelStringFieldB5cxx11ESt17basic_string_viewIcSt11c
60774
60774
  _ZN4node10JSONParser5ParseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
60775
60775
  _ZN4node10JSONParserC1Ev
60776
60776
  _ZN4node10JSONParserC2Ev
60777
+ _ZN4node10JSONWriter10json_startEv
60777
60778
  _ZN4node10JSONWriter12json_elementINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEvRKT_
60778
60779
  _ZN4node10JSONWriter12write_stringESt17basic_string_viewIcSt11char_traitsIcEE
60779
60780
  _ZN4node10JSONWriter13json_arrayendEv
60780
60781
  _ZN4node10JSONWriter13json_keyvalueIA10_cA256_cEEvRKT_RKT0_
60781
60782
  _ZN4node10JSONWriter13json_keyvalueIA11_cmEEvRKT_RKT0_
60782
60783
  _ZN4node10JSONWriter13json_keyvalueIA12_cmEEvRKT_RKT0_
60784
+ _ZN4node10JSONWriter13json_keyvalueIA15_cmEEvRKT_RKT0_
60783
60785
  _ZN4node10JSONWriter13json_keyvalueIA19_cmEEvRKT_RKT0_
60784
60786
  _ZN4node10JSONWriter13json_keyvalueIA4_cmEEvRKT_RKT0_
60785
60787
  _ZN4node10JSONWriter13json_keyvalueIA5_cmEEvRKT_RKT0_
@@ -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 10
26
+ #define NODE_MINOR_VERSION 11
27
27
  #define NODE_PATCH_VERSION 0
28
28
 
29
- #define NODE_VERSION_IS_LTS 0
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-aix-ppc64",
3
- "version": "v22.10.0",
3
+ "version": "v22.11.0",
4
4
  "description": "node",
5
5
  "bin": {
6
6
  "node": "bin/node"