node-linux-arm64 20.15.0 → 20.15.1

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
@@ -9,6 +9,7 @@
9
9
  </tr>
10
10
  <tr>
11
11
  <td>
12
+ <a href="#20.15.1">20.15.1</a><br/>
12
13
  <a href="#20.15.0">20.15.0</a><br/>
13
14
  <a href="#20.14.0">20.14.0</a><br/>
14
15
  <a href="#20.13.1">20.13.1</a><br/>
@@ -61,6 +62,29 @@
61
62
  * [io.js](CHANGELOG_IOJS.md)
62
63
  * [Archive](CHANGELOG_ARCHIVE.md)
63
64
 
65
+ <a id="20.15.1"></a>
66
+
67
+ ## 2024-07-08, Version 20.15.1 'Iron' (LTS), @RafaelGSS
68
+
69
+ This is a security release.
70
+
71
+ ### Notable Changes
72
+
73
+ * CVE-2024-36138 - Bypass incomplete fix of CVE-2024-27980 (High)
74
+ * CVE-2024-22020 - Bypass network import restriction via data URL (Medium)
75
+ * CVE-2024-22018 - fs.lstat bypasses permission model (Low)
76
+ * CVE-2024-36137 - fs.fchown/fchmod bypasses permission model (Low)
77
+ * CVE-2024-37372 - Permission model improperly processes UNC paths (Low)
78
+
79
+ ### Commits
80
+
81
+ * \[[`60e184a6e4`](https://github.com/nodejs/node/commit/60e184a6e4)] - **lib,esm**: handle bypass network-import via data: (RafaelGSS) [nodejs-private/node-private#522](https://github.com/nodejs-private/node-private/pull/522)
82
+ * \[[`025cbd6936`](https://github.com/nodejs/node/commit/025cbd6936)] - **lib,permission**: support fs.lstat (RafaelGSS) [nodejs-private/node-private#486](https://github.com/nodejs-private/node-private/pull/486)
83
+ * \[[`d38ea17341`](https://github.com/nodejs/node/commit/d38ea17341)] - **lib,permission**: disable fchmod/fchown when pm enabled (RafaelGSS) [nodejs-private/node-private#584](https://github.com/nodejs-private/node-private/pull/584)
84
+ * \[[`1ba624cd3b`](https://github.com/nodejs/node/commit/1ba624cd3b)] - **src**: handle permissive extension on cmd check (RafaelGSS) [nodejs-private/node-private#596](https://github.com/nodejs-private/node-private/pull/596)
85
+ * \[[`2524d00c3d`](https://github.com/nodejs/node/commit/2524d00c3d)] - **src,permission**: fix UNC path resolution (RafaelGSS) [nodejs-private/node-private#581](https://github.com/nodejs-private/node-private/pull/581)
86
+ * \[[`484cb0f13c`](https://github.com/nodejs/node/commit/484cb0f13c)] - **src,permission**: resolve path on fs\_permission (Rafael Gonzaga) [#52761](https://github.com/nodejs/node/pull/52761)
87
+
64
88
  <a id="20.15.0"></a>
65
89
 
66
90
  ## 2024-06-20, Version 20.15.0 'Iron' (LTS), @marco-ippolito
package/bin/node CHANGED
Binary file
@@ -24,7 +24,7 @@
24
24
 
25
25
  #define NODE_MAJOR_VERSION 20
26
26
  #define NODE_MINOR_VERSION 15
27
- #define NODE_PATCH_VERSION 0
27
+ #define NODE_PATCH_VERSION 1
28
28
 
29
29
  #define NODE_VERSION_IS_LTS 1
30
30
  #define NODE_VERSION_LTS_CODENAME "Iron"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-linux-arm64",
3
- "version": "v20.15.0",
3
+ "version": "v20.15.1",
4
4
  "description": "node",
5
5
  "bin": {
6
6
  "node": "bin/node"