Skip to content

Commit 8fc5a91

Browse files
committed
2020-03-24 Version 13.12.0 (Current)
Notable changes: * [a44da56] - (SEMVER-MINOR) doc: update stability of report features (Colin Ihrig) #32242 * [306ed96] - (SEMVER-MINOR) doc,lib,src,test: make --experimental-report a nop (Colin Ihrig) #32242 * [ea7f89d] - (SEMVER-MINOR) test: remove common.skipIfReportDisabled() (Colin Ihrig) #32242 * [3f1f518] - (SEMVER-MINOR) build: make --without-report a no-op (Colin Ihrig) #32242 * [36ab39f] - (SEMVER-MINOR) build: remove node_report option in node.gyp (Colin Ihrig) #32242 * [514b7c2] - (SEMVER-MINOR) src: unconditionally include report feature (Colin Ihrig) #32242 * [435fbbc] - (SEMVER-MINOR) worker: allow URL in Worker constructor (Antoine du HAMEL) #31664 * [975d6b0] - (SEMVER-MINOR) util: use a global symbol for `util.promisify.custom` (ExE Boss) #31672
1 parent 5366682 commit 8fc5a91

File tree

7 files changed

+94
-23
lines changed

7 files changed

+94
-23
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ release.
3030
</tr>
3131
<tr>
3232
<td valign="top">
33-
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.11.0">13.11.0</a></b><br/>
33+
<b><a href="doc/changelogs/CHANGELOG_V13.md#13.12.0">13.12.0</a></b><br/>
34+
<a href="doc/changelogs/CHANGELOG_V13.md#13.11.0">13.11.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V13.md#13.10.1">13.10.1</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V13.md#13.10.0">13.10.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V13.md#13.9.0">13.9.0</a><br/>

doc/api/cli.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Specify the file name of the CPU profile generated by `--cpu-prof`.
129129

130130
### `--disable-proto=mode`
131131
<!--YAML
132-
added: REPLACEME
132+
added: v13.12.0
133133
-->
134134

135135
Disable the `Object.prototype.__proto__` property. If `mode` is `delete`, the
@@ -603,7 +603,7 @@ warning will be written to stderr instead.
603603

604604
### `--report-compact`
605605
<!-- YAML
606-
added: REPLACEME
606+
added: v13.12.0
607607
-->
608608

609609
Write reports in a compact format, single-line JSON, more easily consumable
@@ -614,7 +614,7 @@ human consumption.
614614
<!-- YAML
615615
added: v11.8.0
616616
changes:
617-
- version: REPLACEME
617+
- version: v13.12.0
618618
pr-url: https://github.com/nodejs/node/pull/32242
619619
description: This option is no longer considered experimental.
620620
- version: v12.0.0
@@ -629,7 +629,7 @@ Location at which the report will be generated.
629629
<!-- YAML
630630
added: v11.8.0
631631
changes:
632-
- version: REPLACEME
632+
- version: v13.12.0
633633
pr-url: https://github.com/nodejs/node/pull/32242
634634
description: This option is no longer considered experimental.
635635
- version: v12.0.0
@@ -662,7 +662,7 @@ error.
662662
<!-- YAML
663663
added: v11.8.0
664664
changes:
665-
- version: REPLACEME
665+
- version: v13.12.0
666666
pr-url: https://github.com/nodejs/node/pull/32242
667667
description: This option is no longer considered experimental.
668668
- version: v12.0.0
@@ -679,7 +679,7 @@ specified through `--report-signal`.
679679
<!-- YAML
680680
added: v11.8.0
681681
changes:
682-
- version: REPLACEME
682+
- version: v13.12.0
683683
pr-url: https://github.com/nodejs/node/pull/32242
684684
description: This option is no longer considered experimental.
685685
- version: v12.0.0
@@ -695,7 +695,7 @@ Default signal is `SIGUSR2`.
695695
<!-- YAML
696696
added: v11.8.0
697697
changes:
698-
- version: REPLACEME
698+
- version: v13.12.0
699699
pr-url: https://github.com/nodejs/node/pull/32242
700700
description: This option is no longer considered experimental.
701701
- version: v12.0.0

doc/api/process.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1756,7 +1756,7 @@ relied upon to exist.
17561756
<!-- YAML
17571757
added: v11.8.0
17581758
changes:
1759-
- version: REPLACEME
1759+
- version: v13.12.0
17601760
pr-url: https://github.com/nodejs/node/pull/32242
17611761
description: This API is no longer considered experimental.
17621762
-->
@@ -1769,7 +1769,7 @@ reports for the current process. Additional documentation is available in the
17691769

17701770
### `process.report.compact`
17711771
<!-- YAML
1772-
added: REPLACEME
1772+
added: v13.12.0
17731773
-->
17741774

17751775
* {boolean}
@@ -1786,7 +1786,7 @@ console.log(`Reports are compact? ${process.report.compact}`);
17861786
<!-- YAML
17871787
added: v11.12.0
17881788
changes:
1789-
- version: REPLACEME
1789+
- version: v13.12.0
17901790
pr-url: https://github.com/nodejs/node/pull/32242
17911791
description: This API is no longer considered experimental.
17921792
-->
@@ -1805,7 +1805,7 @@ console.log(`Report directory is ${process.report.directory}`);
18051805
<!-- YAML
18061806
added: v11.12.0
18071807
changes:
1808-
- version: REPLACEME
1808+
- version: v13.12.0
18091809
pr-url: https://github.com/nodejs/node/pull/32242
18101810
description: This API is no longer considered experimental.
18111811
-->
@@ -1824,7 +1824,7 @@ console.log(`Report filename is ${process.report.filename}`);
18241824
<!-- YAML
18251825
added: v11.8.0
18261826
changes:
1827-
- version: REPLACEME
1827+
- version: v13.12.0
18281828
pr-url: https://github.com/nodejs/node/pull/32242
18291829
description: This API is no longer considered experimental.
18301830
-->
@@ -1867,7 +1867,7 @@ console.log(`Report on fatal error: ${process.report.reportOnFatalError}`);
18671867
<!-- YAML
18681868
added: v11.12.0
18691869
changes:
1870-
- version: REPLACEME
1870+
- version: v13.12.0
18711871
pr-url: https://github.com/nodejs/node/pull/32242
18721872
description: This API is no longer considered experimental.
18731873
-->
@@ -1885,7 +1885,7 @@ console.log(`Report on signal: ${process.report.reportOnSignal}`);
18851885
<!-- YAML
18861886
added: v11.12.0
18871887
changes:
1888-
- version: REPLACEME
1888+
- version: v13.12.0
18891889
pr-url: https://github.com/nodejs/node/pull/32242
18901890
description: This API is no longer considered experimental.
18911891
-->
@@ -1902,7 +1902,7 @@ console.log(`Report on exception: ${process.report.reportOnUncaughtException}`);
19021902
<!-- YAML
19031903
added: v11.12.0
19041904
changes:
1905-
- version: REPLACEME
1905+
- version: v13.12.0
19061906
pr-url: https://github.com/nodejs/node/pull/32242
19071907
description: This API is no longer considered experimental.
19081908
-->
@@ -1920,7 +1920,7 @@ console.log(`Report signal: ${process.report.signal}`);
19201920
<!-- YAML
19211921
added: v11.8.0
19221922
changes:
1923-
- version: REPLACEME
1923+
- version: v13.12.0
19241924
pr-url: https://github.com/nodejs/node/pull/32242
19251925
description: This API is no longer considered experimental.
19261926
-->

doc/api/util.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -996,7 +996,7 @@ throw an error.
996996
<!-- YAML
997997
added: v8.0.0
998998
changes:
999-
- version: REPLACEME
999+
- version: v13.12.0
10001000
pr-url: https://github.com/nodejs/node/pull/31672
10011001
description: This is now defined as a shared symbol.
10021002
-->

doc/api/worker_threads.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ if (isMainThread) {
513513
<!-- YAML
514514
added: v10.5.0
515515
changes:
516-
- version: REPLACEME
516+
- version: v13.12.0
517517
pr-url: https://github.com/nodejs/node/pull/31664
518518
description: The `filename` parameter can be a WHATWG `URL` object using
519519
`file:` protocol.

doc/changelogs/CHANGELOG_V13.md

+71-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</tr>
1010
<tr>
1111
<td>
12-
<a href="#13.11.0">13.11.0</a><br/>
12+
<a href="#13.12.0">13.12.0</a><br/>
1313
<a href="#13.10.1">13.10.1</a><br/>
1414
<a href="#13.10.0">13.10.0</a><br/>
1515
<a href="#13.9.0">13.9.0</a><br/>
@@ -42,6 +42,76 @@
4242
* [io.js](CHANGELOG_IOJS.md)
4343
* [Archive](CHANGELOG_ARCHIVE.md)
4444

45+
<a id="13.12.0"></a>
46+
## 2020-03-24, Version 13.12.0 (Current), @mylesborins
47+
48+
### Notable Changes
49+
50+
* [[`a44da56254`](https://github.com/nodejs/node/commit/a44da56254)] - **(SEMVER-MINOR)** **doc**: update stability of report features (Colin Ihrig) [#32242](https://github.com/nodejs/node/pull/32242)
51+
* [[`306ed96c30`](https://github.com/nodejs/node/commit/306ed96c30)] - **(SEMVER-MINOR)** **doc,lib,src,test**: make --experimental-report a nop (Colin Ihrig) [#32242](https://github.com/nodejs/node/pull/32242)
52+
* [[`ea7f89da96`](https://github.com/nodejs/node/commit/ea7f89da96)] - **(SEMVER-MINOR)** **test**: remove common.skipIfReportDisabled() (Colin Ihrig) [#32242](https://github.com/nodejs/node/pull/32242)
53+
* [[`3f1f5189e5`](https://github.com/nodejs/node/commit/3f1f5189e5)] - **(SEMVER-MINOR)** **build**: make --without-report a no-op (Colin Ihrig) [#32242](https://github.com/nodejs/node/pull/32242)
54+
* [[`36ab39fc82`](https://github.com/nodejs/node/commit/36ab39fc82)] - **(SEMVER-MINOR)** **build**: remove node\_report option in node.gyp (Colin Ihrig) [#32242](https://github.com/nodejs/node/pull/32242)
55+
* [[`514b7c2744`](https://github.com/nodejs/node/commit/514b7c2744)] - **(SEMVER-MINOR)** **src**: unconditionally include report feature (Colin Ihrig) [#32242](https://github.com/nodejs/node/pull/32242)
56+
* [[`435fbbccb4`](https://github.com/nodejs/node/commit/435fbbccb4)] - **(SEMVER-MINOR)** **worker**: allow URL in Worker constructor (Antoine du HAMEL) [#31664](https://github.com/nodejs/node/pull/31664)
57+
* [[`975d6b0144`](https://github.com/nodejs/node/commit/975d6b0144)] - **(SEMVER-MINOR)** **util**: use a global symbol for `util.promisify.custom` (ExE Boss) [#31672](https://github.com/nodejs/node/pull/31672)
58+
59+
### Commits
60+
61+
* [[`3f1f5189e5`](https://github.com/nodejs/node/commit/3f1f5189e5)] - **(SEMVER-MINOR)** **build**: make --without-report a no-op (Colin Ihrig) [#32242](https://github.com/nodejs/node/pull/32242)
62+
* [[`36ab39fc82`](https://github.com/nodejs/node/commit/36ab39fc82)] - **(SEMVER-MINOR)** **build**: remove node\_report option in node.gyp (Colin Ihrig) [#32242](https://github.com/nodejs/node/pull/32242)
63+
* [[`2428afb9f4`](https://github.com/nodejs/node/commit/2428afb9f4)] - **build**: disable libstdc++ debug containers globally (Ben Noordhuis) [#30147](https://github.com/nodejs/node/pull/30147)
64+
* [[`dc5d4457bb`](https://github.com/nodejs/node/commit/dc5d4457bb)] - **build**: macOS package notarization (Rod Vagg) [#31459](https://github.com/nodejs/node/pull/31459)
65+
* [[`5366682875`](https://github.com/nodejs/node/commit/5366682875)] - **deps**: update npm to 6.14.3 (Myles Borins) [#32368](https://github.com/nodejs/node/pull/32368)
66+
* [[`094aa0fb8b`](https://github.com/nodejs/node/commit/094aa0fb8b)] - **deps**: update to uvwasi 0.0.6 (Colin Ihrig) [#32309](https://github.com/nodejs/node/pull/32309)
67+
* [[`c906c40263`](https://github.com/nodejs/node/commit/c906c40263)] - **deps**: upgrade to libuv 1.35.0 (Colin Ihrig) [#32204](https://github.com/nodejs/node/pull/32204)
68+
* [[`612ee7dafc`](https://github.com/nodejs/node/commit/612ee7dafc)] - **deps**: V8: cherry-pick f9257802c1c0 (Matheus Marchini) [#32180](https://github.com/nodejs/node/pull/32180)
69+
* [[`0594de46eb`](https://github.com/nodejs/node/commit/0594de46eb)] - **deps**: upgrade npm to 6.14.1 (Isaac Z. Schlueter) [#31977](https://github.com/nodejs/node/pull/31977)
70+
* [[`8c6f80f65f`](https://github.com/nodejs/node/commit/8c6f80f65f)] - **deps**: update term-size with signed version (Rod Vagg) [#31459](https://github.com/nodejs/node/pull/31459)
71+
* [[`7c8ebd0ed2`](https://github.com/nodejs/node/commit/7c8ebd0ed2)] - **deps,doc**: move openssl maintenance guide to doc (Sam Roberts) [#32209](https://github.com/nodejs/node/pull/32209)
72+
* [[`c3e2eeacd3`](https://github.com/nodejs/node/commit/c3e2eeacd3)] - **doc**: fix some 404 links (Thomas Watson Steen) [#32200](https://github.com/nodejs/node/pull/32200)
73+
* [[`f540d6d26e`](https://github.com/nodejs/node/commit/f540d6d26e)] - **doc**: complete n-api version matrix (Gabriel Schulhof) [#32304](https://github.com/nodejs/node/pull/32304)
74+
* [[`a44da56254`](https://github.com/nodejs/node/commit/a44da56254)] - **(SEMVER-MINOR)** **doc**: update stability of report features (Colin Ihrig) [#32242](https://github.com/nodejs/node/pull/32242)
75+
* [[`ce58e021db`](https://github.com/nodejs/node/commit/ce58e021db)] - **doc**: update conditional exports recommendations (Guy Bedford) [#32098](https://github.com/nodejs/node/pull/32098)
76+
* [[`038a46398d`](https://github.com/nodejs/node/commit/038a46398d)] - **doc**: expand fs.watch caveats (Bartosz Sosnowski) [#32176](https://github.com/nodejs/node/pull/32176)
77+
* [[`c5a3bfdcff`](https://github.com/nodejs/node/commit/c5a3bfdcff)] - **doc**: add Ruben to TSC (Michael Dawson) [#32213](https://github.com/nodejs/node/pull/32213)
78+
* [[`95cfd4f7a0`](https://github.com/nodejs/node/commit/95cfd4f7a0)] - **doc**: official macOS builds now on 10.15 + Xcode 11 (Rod Vagg) [#31459](https://github.com/nodejs/node/pull/31459)
79+
* [[`c72a678d0c`](https://github.com/nodejs/node/commit/c72a678d0c)] - **doc**: add missing link for v13.11.0 changelog (Myles Borins) [#32218](https://github.com/nodejs/node/pull/32218)
80+
* [[`306ed96c30`](https://github.com/nodejs/node/commit/306ed96c30)] - **(SEMVER-MINOR)** **doc,lib,src,test**: make --experimental-report a nop (Colin Ihrig) [#32242](https://github.com/nodejs/node/pull/32242)
81+
* [[`e60efa76b2`](https://github.com/nodejs/node/commit/e60efa76b2)] - **errors**: drop pronouns from ERR\_WORKER\_PATH message (Colin Ihrig) [#32285](https://github.com/nodejs/node/pull/32285)
82+
* [[`d2857c7d56`](https://github.com/nodejs/node/commit/d2857c7d56)] - **esm**: port loader code to JS (Anna Henningsen) [#32201](https://github.com/nodejs/node/pull/32201)
83+
* [[`720a2e210d`](https://github.com/nodejs/node/commit/720a2e210d)] - **http**: don't emit 'finish' after 'error' (Robert Nagy) [#32276](https://github.com/nodejs/node/pull/32276)
84+
* [[`32dbc7aeb1`](https://github.com/nodejs/node/commit/32dbc7aeb1)] - **http2**: rename counter in `mapToHeaders` inner loop (Mateusz Krawczuk) [#32012](https://github.com/nodejs/node/pull/32012)
85+
* [[`7a2400d50b`](https://github.com/nodejs/node/commit/7a2400d50b)] - **lib**: add option to disable \_\_proto\_\_ (Gus Caplan) [#32279](https://github.com/nodejs/node/pull/32279)
86+
* [[`2232399ef0`](https://github.com/nodejs/node/commit/2232399ef0)] - **lib**: use spread operator on cluster (himself65) [#32125](https://github.com/nodejs/node/pull/32125)
87+
* [[`055b3b9cc1`](https://github.com/nodejs/node/commit/055b3b9cc1)] - **lib**: change var to let/const (himself65) [#32037](https://github.com/nodejs/node/pull/32037)
88+
* [[`5b9ce00500`](https://github.com/nodejs/node/commit/5b9ce00500)] - **meta**: move inactive collaborators to emeriti (Rich Trott) [#32151](https://github.com/nodejs/node/pull/32151)
89+
* [[`e971f72dc2`](https://github.com/nodejs/node/commit/e971f72dc2)] - **n-api**: fix comment on expected N-API version (Michael Dawson) [#32236](https://github.com/nodejs/node/pull/32236)
90+
* [[`969b0b74e0`](https://github.com/nodejs/node/commit/969b0b74e0)] - **repl**: align preview with the actual executed code (Ruben Bridgewater) [#32154](https://github.com/nodejs/node/pull/32154)
91+
* [[`39dae8e54f`](https://github.com/nodejs/node/commit/39dae8e54f)] - **src**: clean up stream\_base.h and stream-base-inl.h (James M Snell) [#32307](https://github.com/nodejs/node/pull/32307)
92+
* [[`aa2dbd2f64`](https://github.com/nodejs/node/commit/aa2dbd2f64)] - **src**: handle NULL env scenario (himself65) [#32230](https://github.com/nodejs/node/pull/32230)
93+
* [[`514b7c2744`](https://github.com/nodejs/node/commit/514b7c2744)] - **(SEMVER-MINOR)** **src**: unconditionally include report feature (Colin Ihrig) [#32242](https://github.com/nodejs/node/pull/32242)
94+
* [[`63bf0f134c`](https://github.com/nodejs/node/commit/63bf0f134c)] - **src**: find .text section using dl\_iterate\_phdr (Gabriel Schulhof) [#32244](https://github.com/nodejs/node/pull/32244)
95+
* [[`3c0ce6935e`](https://github.com/nodejs/node/commit/3c0ce6935e)] - **src**: fix warn\_unused\_result compiler warning (Colin Ihrig) [#32241](https://github.com/nodejs/node/pull/32241)
96+
* [[`04f2caaac3`](https://github.com/nodejs/node/commit/04f2caaac3)] - **src**: refactor to more safe method (gengjiawen) [#32087](https://github.com/nodejs/node/pull/32087)
97+
* [[`3971117ba2`](https://github.com/nodejs/node/commit/3971117ba2)] - **src,cli**: support compact (one-line) JSON reports (Sam Roberts) [#32254](https://github.com/nodejs/node/pull/32254)
98+
* [[`7d1e170cca`](https://github.com/nodejs/node/commit/7d1e170cca)] - **test**: use Promise.all() in test-hash-seed (Rich Trott) [#32273](https://github.com/nodejs/node/pull/32273)
99+
* [[`ea7f89da96`](https://github.com/nodejs/node/commit/ea7f89da96)] - **(SEMVER-MINOR)** **test**: remove common.skipIfReportDisabled() (Colin Ihrig) [#32242](https://github.com/nodejs/node/pull/32242)
100+
* [[`70fe3befa1`](https://github.com/nodejs/node/commit/70fe3befa1)] - **test**: workaround for V8 8.1 inspector pause issue (Matheus Marchini) [#32234](https://github.com/nodejs/node/pull/32234)
101+
* [[`0a2238481f`](https://github.com/nodejs/node/commit/0a2238481f)] - **test**: make test-memory-usage predictable (Matheus Marchini) [#32239](https://github.com/nodejs/node/pull/32239)
102+
* [[`3649a7e9ff`](https://github.com/nodejs/node/commit/3649a7e9ff)] - **test**: verify that WASI errors are rethrown (Colin Ihrig) [#32157](https://github.com/nodejs/node/pull/32157)
103+
* [[`fc2909a96a`](https://github.com/nodejs/node/commit/fc2909a96a)] - **test**: add new scenario for async-local storage (Harshitha KP) [#32082](https://github.com/nodejs/node/pull/32082)
104+
* [[`45513c0f09`](https://github.com/nodejs/node/commit/45513c0f09)] - **test**: use portable EOL (Harshitha KP) [#32104](https://github.com/nodejs/node/pull/32104)
105+
* [[`4d744c35d5`](https://github.com/nodejs/node/commit/4d744c35d5)] - **test**: refactor and simplify test-repl-preview (Ruben Bridgewater) [#32154](https://github.com/nodejs/node/pull/32154)
106+
* [[`0dd6e4a7a6`](https://github.com/nodejs/node/commit/0dd6e4a7a6)] - **test**: `buffer.write` with longer string scenario (Harshitha KP) [#32123](https://github.com/nodejs/node/pull/32123)
107+
* [[`6e1f0fe879`](https://github.com/nodejs/node/commit/6e1f0fe879)] - **test**: fix test-tls-env-extra-ca-file-load (Eric Bickle) [#32073](https://github.com/nodejs/node/pull/32073)
108+
* [[`a7dabc5b3e`](https://github.com/nodejs/node/commit/a7dabc5b3e)] - **tools**: fixup icutrim.py use of string and bytes objects (Jonathan MERCIER) [#31659](https://github.com/nodejs/node/pull/31659)
109+
* [[`1e58c8bdef`](https://github.com/nodejs/node/commit/1e58c8bdef)] - **tools**: update [email protected] (Rich Trott) [#32274](https://github.com/nodejs/node/pull/32274)
110+
* [[`04843b907f`](https://github.com/nodejs/node/commit/04843b907f)] - **tools**: update to [email protected] (Rich Trott) [#32259](https://github.com/nodejs/node/pull/32259)
111+
* [[`3845754734`](https://github.com/nodejs/node/commit/3845754734)] - **util**: text decoding allows SharedArrayBuffer (Bradley Farias) [#32203](https://github.com/nodejs/node/pull/32203)
112+
* [[`975d6b0144`](https://github.com/nodejs/node/commit/975d6b0144)] - **(SEMVER-MINOR)** **util**: use a global symbol for `util.promisify.custom` (ExE Boss) [#31672](https://github.com/nodejs/node/pull/31672)
113+
* [[`435fbbccb4`](https://github.com/nodejs/node/commit/435fbbccb4)] - **(SEMVER-MINOR)** **worker**: allow URL in Worker constructor (Antoine du HAMEL) [#31664](https://github.com/nodejs/node/pull/31664)
114+
45115
<a id="13.11.0"></a>
46116
## 2020-03-11, Version 13.11.0 (Current), @MylesBorins
47117

src/node_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 13
26-
#define NODE_MINOR_VERSION 11
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 12
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)