node-linux-arm64 24.10.0 → 24.11.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 +17 -0
- package/bin/node +0 -0
- package/include/node/node_version.h +3 -3
- package/package.json +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,10 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
<table>
|
|
6
6
|
<tr>
|
|
7
|
+
<th>LTS 'Krypton'</th>
|
|
7
8
|
<th>Current</th>
|
|
8
9
|
</tr>
|
|
9
10
|
<tr>
|
|
10
11
|
<td>
|
|
12
|
+
<a href="#24.11.0">24.11.0</a><br/>
|
|
13
|
+
</td>
|
|
14
|
+
<td>
|
|
11
15
|
<a href="#24.10.0">24.10.0</a><br/>
|
|
12
16
|
<a href="#24.9.0">24.9.0</a><br/>
|
|
13
17
|
<a href="#24.8.0">24.8.0</a><br/>
|
|
@@ -52,6 +56,19 @@
|
|
|
52
56
|
* [io.js](CHANGELOG_IOJS.md)
|
|
53
57
|
* [Archive](CHANGELOG_ARCHIVE.md)
|
|
54
58
|
|
|
59
|
+
<a id="24.11.0"></a>
|
|
60
|
+
|
|
61
|
+
## 2025-10-28, Version 24.11.0 'Krypton' (LTS), @richardlau
|
|
62
|
+
|
|
63
|
+
### Notable Changes
|
|
64
|
+
|
|
65
|
+
This release marks the transition of Node.js 24.x into Long Term Support (LTS)
|
|
66
|
+
with the codename 'Krypton'. It will continue to receive updates through to
|
|
67
|
+
the end of April 2028.
|
|
68
|
+
|
|
69
|
+
Other than updating metadata, such as the `process.release` object, to reflect
|
|
70
|
+
that the release is LTS, no further changes from Node.js 24.10.0 are included.
|
|
71
|
+
|
|
55
72
|
<a id="24.10.0"></a>
|
|
56
73
|
|
|
57
74
|
## 2025-10-08, Version 24.10.0 (Current), @RafaelGSS
|
package/bin/node
CHANGED
|
Binary file
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
#define SRC_NODE_VERSION_H_
|
|
24
24
|
|
|
25
25
|
#define NODE_MAJOR_VERSION 24
|
|
26
|
-
#define NODE_MINOR_VERSION
|
|
26
|
+
#define NODE_MINOR_VERSION 11
|
|
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 "Krypton"
|
|
31
31
|
|
|
32
32
|
#define NODE_VERSION_IS_RELEASE 1
|
|
33
33
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-linux-arm64",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "24.11.0",
|
|
4
4
|
"description": "node",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "git+https://github.com/aredridel/node-bin-gen.git"
|
|
7
|
+
},
|
|
5
8
|
"bin": {
|
|
6
9
|
"node": "bin/node"
|
|
7
10
|
},
|
|
11
|
+
"license": "MIT",
|
|
8
12
|
"files": [
|
|
9
13
|
"bin/node",
|
|
10
14
|
"share",
|