node-linux-arm64 21.7.1 → 21.7.3

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
@@ -8,6 +8,8 @@
8
8
  </tr>
9
9
  <tr>
10
10
  <td>
11
+ <a href="#21.7.3">21.7.3</a><br/>
12
+ <a href="#21.7.2">21.7.2</a><br/>
11
13
  <a href="#21.7.1">21.7.1</a><br/>
12
14
  <a href="#21.7.0">21.7.0</a><br/>
13
15
  <a href="#21.6.2">21.6.2</a><br/>
@@ -46,6 +48,41 @@
46
48
  * [io.js](CHANGELOG_IOJS.md)
47
49
  * [Archive](CHANGELOG_ARCHIVE.md)
48
50
 
51
+ <a id="21.7.3"></a>
52
+
53
+ ## 2024-04-10, Version 21.7.3 (Current), @RafaelGSS
54
+
55
+ This is a security release.
56
+
57
+ ### Notable Changes
58
+
59
+ * CVE-2024-27980 - Command injection via args parameter of `child_process.spawn` without shell option enabled on Windows
60
+
61
+ ### Commits
62
+
63
+ * \[[`9095c914ed`](https://github.com/nodejs/node/commit/9095c914ed)] - **src**: disallow direct .bat and .cmd file spawning (Ben Noordhuis) [nodejs-private/node-private#562](https://github.com/nodejs-private/node-private/pull/562)
64
+
65
+ <a id="21.7.2"></a>
66
+
67
+ ## 2024-04-03, Version 21.7.2 (Current), @RafaelGSS prepared by @marco-ippolito
68
+
69
+ This is a security release.
70
+
71
+ ### Notable changes
72
+
73
+ * CVE-2024-27983 - Assertion failed in node::http2::Http2Session::\~Http2Session() leads to HTTP/2 server crash- (High)
74
+ * CVE-2024-27982 - HTTP Request Smuggling via Content Length Obfuscation- (Medium)
75
+ * llhttp version 9.2.1
76
+ * undici version 6.11.1
77
+
78
+ ### Commits
79
+
80
+ * \[[`3dfc10c851`](https://github.com/nodejs/node/commit/3dfc10c851)] - **deps**: update undici to 6.11.1 (Node.js GitHub Bot) [#52328](https://github.com/nodejs/node/pull/52328)
81
+ * \[[`aceea1c5e7`](https://github.com/nodejs/node/commit/aceea1c5e7)] - **deps**: update undici to 6.10.2 (Node.js GitHub Bot) [#52227](https://github.com/nodejs/node/pull/52227)
82
+ * \[[`5f0f96b275`](https://github.com/nodejs/node/commit/5f0f96b275)] - **deps**: update llhttp to 9.2.0 (Node.js GitHub Bot) [#51719](https://github.com/nodejs/node/pull/51719)
83
+ * \[[`1a65e98e22`](https://github.com/nodejs/node/commit/1a65e98e22)] - **http**: do not allow OBS fold in headers by default (Paolo Insogna) [nodejs-private/node-private#556](https://github.com/nodejs-private/node-private/pull/556)
84
+ * \[[`3bd39fb474`](https://github.com/nodejs/node/commit/3bd39fb474)] - **src**: ensure to close stream when destroying session (RafaelGSS) [nodejs-private/node-private#561](https://github.com/nodejs-private/node-private/pull/561)
85
+
49
86
  <a id="21.7.1"></a>
50
87
 
51
88
  ## 2024-03-08, Version 21.7.1 (Current), @targos
@@ -515,7 +552,7 @@ Node.js 21.6.0 comes with several fixes for the experimental permission model an
515
552
  We're adding a new flag `--allow-addons` to enable addon usage when using the Permission Model.
516
553
 
517
554
  ```console
518
- $ node --experimental-permission --allow-addons
555
+ node --experimental-permission --allow-addons
519
556
  ```
520
557
 
521
558
  Contributed by Rafael Gonzaga in [#51183](https://github.com/nodejs/node/pull/51183)
@@ -524,7 +561,7 @@ And relative paths are now supported through the `--allow-fs-*` flags.
524
561
  Therefore, with this release one can use:
525
562
 
526
563
  ```console
527
- $ node --experimental-permission --allow-fs-read=./index.js
564
+ node --experimental-permission --allow-fs-read=./index.js
528
565
  ```
529
566
 
530
567
  To give only read access to the entrypoint of the application.
@@ -536,7 +573,7 @@ Contributed by Rafael Gonzaga and Carlos Espa in [#50758](https://github.com/nod
536
573
  We are adding a new flag `--build-snapshot-config` to configure snapshots through a custom JSON configuration file.
537
574
 
538
575
  ```console
539
- $ node --build-snapshot-config=/path/to/myconfig.json
576
+ node --build-snapshot-config=/path/to/myconfig.json
540
577
  ```
541
578
 
542
579
  When using this flag, additional script files provided on the command line will
package/bin/node CHANGED
Binary file
@@ -24,7 +24,7 @@
24
24
 
25
25
  #define NODE_MAJOR_VERSION 21
26
26
  #define NODE_MINOR_VERSION 7
27
- #define NODE_PATCH_VERSION 1
27
+ #define NODE_PATCH_VERSION 3
28
28
 
29
29
  #define NODE_VERSION_IS_LTS 0
30
30
  #define NODE_VERSION_LTS_CODENAME ""
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-linux-arm64",
3
- "version": "v21.7.1",
3
+ "version": "v21.7.3",
4
4
  "description": "node",
5
5
  "bin": {
6
6
  "node": "bin/node"