node-aix-ppc64 20.8.0 → 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 +52 -0
- package/bin/node +0 -0
- package/include/node/node.exp +25 -19
- package/include/node/node_version.h +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,10 +4,15 @@
|
|
|
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>
|
|
15
|
+
<a href="#20.8.1">20.8.1</a><br/>
|
|
11
16
|
<a href="#20.8.0">20.8.0</a><br/>
|
|
12
17
|
<a href="#20.7.0">20.7.0</a><br/>
|
|
13
18
|
<a href="#20.6.1">20.6.1</a><br/>
|
|
@@ -46,6 +51,53 @@
|
|
|
46
51
|
* [io.js](CHANGELOG_IOJS.md)
|
|
47
52
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
48
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
|
+
|
|
72
|
+
<a id="20.8.1"></a>
|
|
73
|
+
|
|
74
|
+
## 2023-10-13, Version 20.8.1 (Current), @RafaelGSS
|
|
75
|
+
|
|
76
|
+
This is a security release.
|
|
77
|
+
|
|
78
|
+
### Notable Changes
|
|
79
|
+
|
|
80
|
+
The following CVEs are fixed in this release:
|
|
81
|
+
|
|
82
|
+
* [CVE-2023-44487](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-44487): `nghttp2` Security Release (High)
|
|
83
|
+
* [CVE-2023-45143](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-45143): `undici` Security Release (High)
|
|
84
|
+
* [CVE-2023-39332](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-39332): Path traversal through path stored in Uint8Array (High)
|
|
85
|
+
* [CVE-2023-39331](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-39331): Permission model improperly protects against path traversal (High)
|
|
86
|
+
* [CVE-2023-38552](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-38552): Integrity checks according to policies can be circumvented (Medium)
|
|
87
|
+
* [CVE-2023-39333](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-39333): Code injection via WebAssembly export names (Low)
|
|
88
|
+
|
|
89
|
+
More detailed information on each of the vulnerabilities can be found in [October 2023 Security Releases](https://nodejs.org/en/blog/vulnerability/october-2023-security-releases/) blog post.
|
|
90
|
+
|
|
91
|
+
### Commits
|
|
92
|
+
|
|
93
|
+
* \[[`c86883e844`](https://github.com/nodejs/node/commit/c86883e844)] - **deps**: update nghttp2 to 1.57.0 (James M Snell) [#50121](https://github.com/nodejs/node/pull/50121)
|
|
94
|
+
* \[[`2860631359`](https://github.com/nodejs/node/commit/2860631359)] - **deps**: update undici to v5.26.3 (Matteo Collina) [#50153](https://github.com/nodejs/node/pull/50153)
|
|
95
|
+
* \[[`cd37838bf8`](https://github.com/nodejs/node/commit/cd37838bf8)] - **lib**: let deps require `node` prefixed modules (Matthew Aitken) [#50047](https://github.com/nodejs/node/pull/50047)
|
|
96
|
+
* \[[`f5c90b2951`](https://github.com/nodejs/node/commit/f5c90b2951)] - **module**: fix code injection through export names (Tobias Nießen) [nodejs-private/node-private#461](https://github.com/nodejs-private/node-private/pull/461)
|
|
97
|
+
* \[[`fa5dae1944`](https://github.com/nodejs/node/commit/fa5dae1944)] - **permission**: fix Uint8Array path traversal (Tobias Nießen) [nodejs-private/node-private#456](https://github.com/nodejs-private/node-private/pull/456)
|
|
98
|
+
* \[[`cd35275111`](https://github.com/nodejs/node/commit/cd35275111)] - **permission**: improve path traversal protection (Tobias Nießen) [nodejs-private/node-private#456](https://github.com/nodejs-private/node-private/pull/456)
|
|
99
|
+
* \[[`a4cb7fc7c0`](https://github.com/nodejs/node/commit/a4cb7fc7c0)] - **policy**: use tamper-proof integrity check function (Tobias Nießen) [nodejs-private/node-private#462](https://github.com/nodejs-private/node-private/pull/462)
|
|
100
|
+
|
|
49
101
|
<a id="20.8.0"></a>
|
|
50
102
|
|
|
51
103
|
## 2023-09-28, Version 20.8.0 (Current), @ruyadorno
|
package/bin/node
CHANGED
|
Binary file
|
package/include/node/node.exp
CHANGED
|
@@ -5961,22 +5961,22 @@ _GLOBAL__F__ZN2v88internal6torque5Block13SetInputTypesERKNS1_5StackIPKNS1_4TypeE
|
|
|
5961
5961
|
_GLOBAL__F__ZN2v88internal6torque9KytheData21AddConstantDefinitionEPKNS1_5ValueE
|
|
5962
5962
|
_GLOBAL__F__ZNK2v88internal6torque3cpp8Function22PrintDeclarationHeaderERSoi
|
|
5963
5963
|
_GLOBAL__F__ZNK2v88internal6torque4Rule9RunActionEPKNS1_4ItemERKNS1_11LexerResultE
|
|
5964
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_compiler_int64_lowering.
|
|
5965
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_compiler_turboshaft_utils.
|
|
5966
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_gdb_jit.
|
|
5967
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_objects_debug.
|
|
5968
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_execution_arguments.
|
|
5969
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_execution_simulator_base.
|
|
5970
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_heap_evacuation_verifier.
|
|
5971
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_heap_factory_base.
|
|
5972
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_heap_heap_verifier.
|
|
5973
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_heap_objects_visiting.
|
|
5974
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_objects_tagged_impl.
|
|
5975
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_runtime_runtime_trace.
|
|
5976
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_external_pointer_table.
|
|
5977
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_sandbox.
|
|
5978
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_testing.
|
|
5979
|
-
_GLOBAL__I_65535_0_.._src_connection_wrap.
|
|
5964
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_compiler_int64_lowering.cc_E21CEA7D_0x679d51edfbb59db9
|
|
5965
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_compiler_turboshaft_utils.cc_DFF67DD7_0x168186bcaffdf23a
|
|
5966
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_gdb_jit.cc_DFF67DD7_0x63b3fbd10ce21c82
|
|
5967
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_objects_debug.cc_E21CEA7D_0x5542b15e2dc168e3
|
|
5968
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_execution_arguments.cc_DFF67DD7_0x71bc7d2b450b935f
|
|
5969
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_execution_simulator_base.cc_7874F2D3_0xa17a5c1d2a3b5036
|
|
5970
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_heap_evacuation_verifier.cc_E21CEA7D_0xc1878895ad910c6a
|
|
5971
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_heap_factory_base.cc_7874F2D3_0xb15da57385978b4f
|
|
5972
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_heap_heap_verifier.cc_7874F2D3_0xb3fa937f0fdb94b7
|
|
5973
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_heap_objects_visiting.cc_DFF67DD7_0x95e132da81623bab
|
|
5974
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_objects_tagged_impl.cc_87E8306D_0xba83b92c1cf5681a
|
|
5975
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_runtime_runtime_trace.cc_E21CEA7D_0x826e3a0c4b7411be
|
|
5976
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_external_pointer_table.cc_87E8306D_0xc49810cee33762e6
|
|
5977
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_sandbox.cc_87E8306D_0xbf580318da80b1a6
|
|
5978
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_sandbox_testing.cc_7874F2D3_0xc50703e5ac27906e
|
|
5979
|
+
_GLOBAL__I_65535_0_.._src_connection_wrap.cc_E21CEA7D_0xb25fc710c6dcbd7e
|
|
5980
5980
|
_GLOBAL__I_65535_0_OPENSSL_ppccap_P
|
|
5981
5981
|
_GLOBAL__I_65535_0__Z16_register_configv
|
|
5982
5982
|
_GLOBAL__I_65535_0__Z17_register_symbolsv
|
|
@@ -7068,9 +7068,9 @@ _GLOBAL__I_65535_0__ZNK4node3url11BindingData10MemoryInfoEPNS_13MemoryTrackerE
|
|
|
7068
7068
|
_GLOBAL__I_65535_0__ZNK4node4quic10TLSContext4sideEv
|
|
7069
7069
|
_GLOBAL__I_65535_0__ZNK4node4quic6Packet11destinationEv
|
|
7070
7070
|
_GLOBAL__I_65535_0__ZNK7simdutf14implementation27supported_by_runtime_systemEv
|
|
7071
|
-
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_enum_verifiers.
|
|
7072
|
-
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_factory.
|
|
7073
|
-
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_torque_defined_classes_tq_csa.
|
|
7071
|
+
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_enum_verifiers.cc_E21CEA7D_0xf07a5c498ef939ea
|
|
7072
|
+
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_factory.cc_7874F2D3_0xb677e1e425578f2d
|
|
7073
|
+
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_torque_defined_classes_tq_csa.cc_E21CEA7D_0xea4995f58ac0a867
|
|
7074
7074
|
_GLOBAL__I_65535_0_nodedbg_const_ContextEmbedderIndex__kEnvironment__int
|
|
7075
7075
|
_GLOBAL__I_65535_0_v8dbg_frametype_EntryFrame
|
|
7076
7076
|
_HZData_73
|
|
@@ -54811,6 +54811,7 @@ _ZN4node6crypto21VerifyPeerCertificateERKSt10unique_ptrI6ssl_stNS_15FunctionDele
|
|
|
54811
54811
|
_ZN4node6crypto22GetValidationErrorCodeEPNS_11EnvironmentEi
|
|
54812
54812
|
_ZN4node6crypto23GetCurrentCipherVersionEPNS_11EnvironmentERKSt10unique_ptrI6ssl_stNS_15FunctionDeleterIS4_XadL_Z8SSL_freeEEEEE
|
|
54813
54813
|
_ZN4node6crypto23GetSubjectAltNameStringEPNS_11EnvironmentEP7x509_stRKSt10unique_ptrI6bio_stNS_15FunctionDeleterIS6_XadL_Z12BIO_free_allEEEEE
|
|
54814
|
+
_ZN4node6crypto23InternalVerifyIntegrityERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
54814
54815
|
_ZN4node6crypto23SafeX509InfoAccessPrintERKSt10unique_ptrI6bio_stNS_15FunctionDeleterIS2_XadL_Z12BIO_free_allEEEEEP17X509_extension_st
|
|
54815
54816
|
_ZN4node6crypto24GetClientHelloServerNameERKSt10unique_ptrI6ssl_stNS_15FunctionDeleterIS2_XadL_Z8SSL_freeEEEEE
|
|
54816
54817
|
_ZN4node6crypto24GetValidationErrorReasonEPNS_11EnvironmentEi
|
|
@@ -81338,6 +81339,7 @@ nghttp2_option_set_no_recv_client_magic
|
|
|
81338
81339
|
nghttp2_option_set_no_rfc9113_leading_and_trailing_ws_validation
|
|
81339
81340
|
nghttp2_option_set_peer_max_concurrent_streams
|
|
81340
81341
|
nghttp2_option_set_server_fallback_rfc7540_priorities
|
|
81342
|
+
nghttp2_option_set_stream_reset_rate_limit
|
|
81341
81343
|
nghttp2_option_set_user_recv_extension_type
|
|
81342
81344
|
nghttp2_outbound_item_free
|
|
81343
81345
|
nghttp2_outbound_item_init
|
|
@@ -81368,6 +81370,9 @@ nghttp2_queue_front
|
|
|
81368
81370
|
nghttp2_queue_init
|
|
81369
81371
|
nghttp2_queue_pop
|
|
81370
81372
|
nghttp2_queue_push
|
|
81373
|
+
nghttp2_ratelim_drain
|
|
81374
|
+
nghttp2_ratelim_init
|
|
81375
|
+
nghttp2_ratelim_update
|
|
81371
81376
|
nghttp2_rcbuf_decref
|
|
81372
81377
|
nghttp2_rcbuf_del
|
|
81373
81378
|
nghttp2_rcbuf_get_buf
|
|
@@ -81544,6 +81549,7 @@ nghttp2_submit_settings
|
|
|
81544
81549
|
nghttp2_submit_shutdown_notice
|
|
81545
81550
|
nghttp2_submit_trailer
|
|
81546
81551
|
nghttp2_submit_window_update
|
|
81552
|
+
nghttp2_time_now_sec
|
|
81547
81553
|
nghttp2_version
|
|
81548
81554
|
nghttp3_balloc_clear
|
|
81549
81555
|
nghttp3_balloc_free
|
|
@@ -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
|
|
26
|
+
#define NODE_MINOR_VERSION 9
|
|
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 "Iron"
|
|
31
31
|
|
|
32
32
|
#define NODE_VERSION_IS_RELEASE 1
|
|
33
33
|
|