node-linux-arm64 18.14.1 → 18.14.2
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 +17 -0
- package/bin/node +0 -0
- package/include/node/node_version.h +1 -1
- package/include/node/v8-version.h +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
</tr>
|
|
10
10
|
<tr>
|
|
11
11
|
<td>
|
|
12
|
+
<a href="#18.14.2">18.14.2</a><br/>
|
|
12
13
|
<a href="#18.14.1">18.14.1</a><br/>
|
|
13
14
|
<a href="#18.14.0">18.14.0</a><br/>
|
|
14
15
|
<a href="#18.13.0">18.13.0</a><br/>
|
|
@@ -53,6 +54,22 @@
|
|
|
53
54
|
* [io.js](CHANGELOG_IOJS.md)
|
|
54
55
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
55
56
|
|
|
57
|
+
<a id="18.14.2"></a>
|
|
58
|
+
|
|
59
|
+
## 2023-02-21, Version 18.14.2 'Hydrogen' (LTS), @MylesBorins
|
|
60
|
+
|
|
61
|
+
### Notable Changes
|
|
62
|
+
|
|
63
|
+
* \[[`f864bef32a`](https://github.com/nodejs/node/commit/f864bef32a)] - **deps**: upgrade npm to 9.5.0 (npm team) [#46673](https://github.com/nodejs/node/pull/46673)
|
|
64
|
+
|
|
65
|
+
### Commits
|
|
66
|
+
|
|
67
|
+
* \[[`880a65d7ff`](https://github.com/nodejs/node/commit/880a65d7ff)] - **build**: delete `snapshot.blob` file from the project (Juan José Arboleda) [#46626](https://github.com/nodejs/node/pull/46626)
|
|
68
|
+
* \[[`cbea56efda`](https://github.com/nodejs/node/commit/cbea56efda)] - **deps**: update undici to 5.20.0 (Node.js GitHub Bot) [#46711](https://github.com/nodejs/node/pull/46711)
|
|
69
|
+
* \[[`f864bef32a`](https://github.com/nodejs/node/commit/f864bef32a)] - **deps**: upgrade npm to 9.5.0 (npm team) [#46673](https://github.com/nodejs/node/pull/46673)
|
|
70
|
+
* \[[`648041d568`](https://github.com/nodejs/node/commit/648041d568)] - **deps**: upgrade npm to 9.4.0 (npm team) [#46353](https://github.com/nodejs/node/pull/46353)
|
|
71
|
+
* \[[`5e1f213f3c`](https://github.com/nodejs/node/commit/5e1f213f3c)] - **deps**: patch V8 to 10.2.154.26 (Michaël Zasso) [#46446](https://github.com/nodejs/node/pull/46446)
|
|
72
|
+
|
|
56
73
|
<a id="18.14.1"></a>
|
|
57
74
|
|
|
58
75
|
## 2023-02-16, Version 18.14.1 'Hydrogen' (LTS), @RafaelGSS prepared by @juanarbol
|
package/bin/node
CHANGED
|
Binary file
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
#define V8_MAJOR_VERSION 10
|
|
12
12
|
#define V8_MINOR_VERSION 2
|
|
13
13
|
#define V8_BUILD_NUMBER 154
|
|
14
|
-
#define V8_PATCH_LEVEL
|
|
14
|
+
#define V8_PATCH_LEVEL 26
|
|
15
15
|
|
|
16
16
|
// Use 1 for candidates and 0 otherwise.
|
|
17
17
|
// (Boolean macro values are not supported by all preprocessors.)
|