node-linux-arm64 20.0.0 → 20.1.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 +170 -1
- package/LICENSE +538 -514
- package/README.md +6 -6
- package/bin/node +0 -0
- package/include/node/common.gypi +1 -1
- package/include/node/config.gypi +2 -2
- package/include/node/node.h +2 -1
- package/include/node/node_version.h +1 -1
- package/include/node/v8-version.h +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -166,8 +166,6 @@ For information about the governance of the Node.js project, see
|
|
|
166
166
|
**Antoine du Hamel** <<duhamelantoine1995@gmail.com>> (he/him)
|
|
167
167
|
* [apapirovski](https://github.com/apapirovski) -
|
|
168
168
|
**Anatoli Papirovski** <<apapirovski@mac.com>> (he/him)
|
|
169
|
-
* [BethGriggs](https://github.com/BethGriggs) -
|
|
170
|
-
**Beth Griggs** <<bethanyngriggs@gmail.com>> (she/her)
|
|
171
169
|
* [BridgeAR](https://github.com/BridgeAR) -
|
|
172
170
|
**Ruben Bridgewater** <<ruben@bridgewater.de>> (he/him)
|
|
173
171
|
* [cjihrig](https://github.com/cjihrig) -
|
|
@@ -207,8 +205,8 @@ For information about the governance of the Node.js project, see
|
|
|
207
205
|
|
|
208
206
|
#### TSC regular members
|
|
209
207
|
|
|
210
|
-
* [
|
|
211
|
-
**
|
|
208
|
+
* [BethGriggs](https://github.com/BethGriggs) -
|
|
209
|
+
**Beth Griggs** <<bethanyngriggs@gmail.com>> (she/her)
|
|
212
210
|
* [bnoordhuis](https://github.com/bnoordhuis) -
|
|
213
211
|
**Ben Noordhuis** <<info@bnoordhuis.nl>>
|
|
214
212
|
* [ChALkeR](https://github.com/ChALkeR) -
|
|
@@ -236,6 +234,8 @@ For information about the governance of the Node.js project, see
|
|
|
236
234
|
|
|
237
235
|
#### TSC emeriti members
|
|
238
236
|
|
|
237
|
+
* [addaleax](https://github.com/addaleax) -
|
|
238
|
+
**Anna Henningsen** <<anna@addaleax.net>> (she/her)
|
|
239
239
|
* [chrisdickinson](https://github.com/chrisdickinson) -
|
|
240
240
|
**Chris Dickinson** <<christopher.s.dickinson@gmail.com>>
|
|
241
241
|
* [evanlucas](https://github.com/evanlucas) -
|
|
@@ -371,6 +371,8 @@ For information about the governance of the Node.js project, see
|
|
|
371
371
|
**Juan José Arboleda** <<soyjuanarbol@gmail.com>> (he/him)
|
|
372
372
|
* [JungMinu](https://github.com/JungMinu) -
|
|
373
373
|
**Minwoo Jung** <<nodecorelab@gmail.com>> (he/him)
|
|
374
|
+
* [KhafraDev](https://github.com/KhafraDev) -
|
|
375
|
+
**Matthew Aitken** <<maitken033380023@gmail.com>> (he/him)
|
|
374
376
|
* [kuriyosh](https://github.com/kuriyosh) -
|
|
375
377
|
**Yoshiki Kurihara** <<yosyos0306@gmail.com>> (he/him)
|
|
376
378
|
* [legendecas](https://github.com/legendecas) -
|
|
@@ -705,8 +707,6 @@ maintaining the Node.js project.
|
|
|
705
707
|
**Xuguang Mei** <<meixuguang@gmail.com>> (he/him)
|
|
706
708
|
* [Mesteery](https://github.com/Mesteery) -
|
|
707
709
|
**Mestery** <<mestery@protonmail.com>> (he/him)
|
|
708
|
-
* [MoLow](https://github.com/MoLow) -
|
|
709
|
-
**Moshe Atlow** <<moshe@atlow.co.il>> (he/him)
|
|
710
710
|
* [PoojaDurgad](https://github.com/PoojaDurgad) -
|
|
711
711
|
**Pooja Durgad** <<Pooja.D.P@ibm.com>>
|
|
712
712
|
* [RaisinTen](https://github.com/RaisinTen) -
|
package/bin/node
CHANGED
|
Binary file
|
package/include/node/common.gypi
CHANGED
package/include/node/config.gypi
CHANGED
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
'force_dynamic_crt': 0,
|
|
14
14
|
'gas_version': '2.35',
|
|
15
15
|
'host_arch': 'arm64',
|
|
16
|
-
'icu_data_in': '../../deps/icu-tmp/
|
|
16
|
+
'icu_data_in': '../../deps/icu-tmp/icudt73l.dat',
|
|
17
17
|
'icu_endianness': 'l',
|
|
18
18
|
'icu_gyp_path': 'tools/icu/icu-generic.gyp',
|
|
19
19
|
'icu_path': 'deps/icu-small',
|
|
20
20
|
'icu_small': 'false',
|
|
21
|
-
'icu_ver_major': '
|
|
21
|
+
'icu_ver_major': '73',
|
|
22
22
|
'is_debug': 0,
|
|
23
23
|
'libdir': 'lib',
|
|
24
24
|
'llvm_version': '0.0',
|
package/include/node/node.h
CHANGED
|
@@ -722,7 +722,8 @@ NODE_EXTERN ArrayBufferAllocator* GetArrayBufferAllocator(IsolateData* data);
|
|
|
722
722
|
// a snapshot and have a main context that was read from that snapshot.
|
|
723
723
|
NODE_EXTERN v8::Local<v8::Context> GetMainContext(Environment* env);
|
|
724
724
|
|
|
725
|
-
NODE_EXTERN void OnFatalError(const char* location,
|
|
725
|
+
[[noreturn]] NODE_EXTERN void OnFatalError(const char* location,
|
|
726
|
+
const char* message);
|
|
726
727
|
NODE_EXTERN void PromiseRejectCallback(v8::PromiseRejectMessage message);
|
|
727
728
|
NODE_EXTERN bool AllowWasmCodeGenerationCallback(v8::Local<v8::Context> context,
|
|
728
729
|
v8::Local<v8::String>);
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
#define V8_MAJOR_VERSION 11
|
|
12
12
|
#define V8_MINOR_VERSION 3
|
|
13
13
|
#define V8_BUILD_NUMBER 244
|
|
14
|
-
#define V8_PATCH_LEVEL
|
|
14
|
+
#define V8_PATCH_LEVEL 8
|
|
15
15
|
|
|
16
16
|
// Use 1 for candidates and 0 otherwise.
|
|
17
17
|
// (Boolean macro values are not supported by all preprocessors.)
|