node-linux-armv7l 16.11.0 → 16.11.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
@@ -8,6 +8,7 @@
8
8
  </tr>
9
9
  <tr>
10
10
  <td>
11
+ <a href="#16.11.1">16.11.1</a><br/>
11
12
  <a href="#16.11.0">16.11.0</a><br/>
12
13
  <a href="#16.10.0">16.10.0</a><br/>
13
14
  <a href="#16.9.1">16.9.1</a><br/>
@@ -47,6 +48,24 @@
47
48
  * [io.js](CHANGELOG_IOJS.md)
48
49
  * [Archive](CHANGELOG_ARCHIVE.md)
49
50
 
51
+ <a id="16.11.1"></a>
52
+ ## 2021-10-12, Version 16.11.1 (Current), @danielleadams
53
+
54
+ This is a security release.
55
+
56
+ ### Notable changes
57
+
58
+ * **CVE-2021-22959**: HTTP Request Smuggling due to spaced in headers (Medium)
59
+ * The http parser accepts requests with a space (SP) right after the header name before the colon. This can lead to HTTP Request Smuggling (HRS). More details will be available at [CVE-2021-22959](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22959) after publication.
60
+ * **CVE-2021-22960**: HTTP Request Smuggling when parsing the body (Medium)
61
+ * The parse ignores chunk extensions when parsing the body of chunked requests. This leads to HTTP Request Smuggling (HRS) under certain conditions. More details will be available at [CVE-2021-22960](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22960) after publication.
62
+
63
+ ### Commits
64
+
65
+ * [[`af488f8dc8`](https://github.com/nodejs/node/commit/af488f8dc8)] - **deps**: update llhttp to 6.0.4 (Matteo Collina) [nodejs-private/node-private#284](https://github.com/nodejs-private/node-private/pull/284)
66
+ * [[`2d1eefad98`](https://github.com/nodejs/node/commit/2d1eefad98)] - **http**: add regression test for smuggling content length (Matteo Collina) [nodejs-private/node-private#284](https://github.com/nodejs-private/node-private/pull/284)
67
+ * [[`45d419ab1c`](https://github.com/nodejs/node/commit/45d419ab1c)] - **http**: add regression test for chunked smuggling (Matteo Collina) [nodejs-private/node-private#284](https://github.com/nodejs-private/node-private/pull/284)
68
+
50
69
  <a id="16.11.0"></a>
51
70
  ## 2021-10-08, Version 16.11.0 (Current), @danielleadams
52
71
 
package/bin/node CHANGED
Binary file
@@ -24,7 +24,7 @@
24
24
 
25
25
  #define NODE_MAJOR_VERSION 16
26
26
  #define NODE_MINOR_VERSION 11
27
- #define NODE_PATCH_VERSION 0
27
+ #define NODE_PATCH_VERSION 1
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-armv7l",
3
- "version": "v16.11.0",
3
+ "version": "v16.11.1",
4
4
  "description": "node",
5
5
  "bin": {
6
6
  "node": "bin/node"