Skip to content

Commit 77ae343

Browse files
committed
2023-06-05, Version 20.3.0 (Current)
Notable changes: deps: * upgrade to libuv 1.45.0 (Santiago Gimeno) #48078 lib: * (SEMVER-MINOR) implement AbortSignal.any() (Chemi Atlow) #47821 module: * change default resolver to not throw on unknown scheme (Gil Tayar) #47824 node-api: * (SEMVER-MINOR) define version 9 (Chengzhong Wu) #48151 test: * unflake test-vm-timeout-escape-nexttick (Santiago Gimeno) #48078 tools: * update LICENSE and license-builder.sh (Santiago Gimeno) #48078 PR-URL: TODO
1 parent 62f847d commit 77ae343

File tree

5 files changed

+165
-6
lines changed

5 files changed

+165
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ release.
3636
</tr>
3737
<tr>
3838
<td valign="top">
39-
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.2.0">20.2.0</a></b><br/>
39+
<b><a href="doc/changelogs/CHANGELOG_V20.md#20.3.0">20.3.0</a></b><br/>
40+
<a href="doc/changelogs/CHANGELOG_V20.md#20.2.0">20.2.0</a><br/>
4041
<a href="doc/changelogs/CHANGELOG_V20.md#20.1.0">20.1.0</a><br/>
4142
<a href="doc/changelogs/CHANGELOG_V20.md#20.0.0">20.0.0</a><br/>
4243
</td>

doc/api/globals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Returns a new `AbortSignal` which will be aborted in `delay` milliseconds.
124124
#### Static method: `AbortSignal.any(signals)`
125125

126126
<!-- YAML
127-
added: REPLACEME
127+
added: v20.3.0
128128
-->
129129

130130
* `signals` {AbortSignal\[]} The `AbortSignal`s of which to compose a new `AbortSignal`.

doc/api/stream.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2454,7 +2454,7 @@ added:
24542454
- v17.5.0
24552455
- v16.15.0
24562456
changes:
2457-
- version: REPLACEME
2457+
- version: v20.3.0
24582458
pr-url: https://github.com/nodejs/node/pull/48102
24592459
description: Using the `asIndexedPairs` method emits a runtime warning that
24602460
it will be removed in a future version.

doc/changelogs/CHANGELOG_V20.md

Lines changed: 158 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,164 @@
3737
* [io.js](CHANGELOG_IOJS.md)
3838
* [Archive](CHANGELOG_ARCHIVE.md)
3939

40+
<a id="20.3.0"></a>
41+
42+
## 2023-06-05, Version 20.3.0 (Current), @targos
43+
44+
### Notable Changes
45+
46+
* \[[`bfcb3d1d9a`](https://github.com/nodejs/node/commit/bfcb3d1d9a)] - **deps**: upgrade to libuv 1.45.0 (Santiago Gimeno) [#48078](https://github.com/nodejs/node/pull/48078)
47+
* \[[`b1828b325e`](https://github.com/nodejs/node/commit/b1828b325e)] - **(SEMVER-MINOR)** **lib**: implement AbortSignal.any() (Chemi Atlow) [#47821](https://github.com/nodejs/node/pull/47821)
48+
* \[[`f380953103`](https://github.com/nodejs/node/commit/f380953103)] - **module**: change default resolver to not throw on unknown scheme (Gil Tayar) [#47824](https://github.com/nodejs/node/pull/47824)
49+
* \[[`a94f87ed99`](https://github.com/nodejs/node/commit/a94f87ed99)] - **(SEMVER-MINOR)** **node-api**: define version 9 (Chengzhong Wu) [#48151](https://github.com/nodejs/node/pull/48151)
50+
* \[[`3440d7c6bf`](https://github.com/nodejs/node/commit/3440d7c6bf)] - **test**: unflake test-vm-timeout-escape-nexttick (Santiago Gimeno) [#48078](https://github.com/nodejs/node/pull/48078)
51+
* \[[`ded0e2d755`](https://github.com/nodejs/node/commit/ded0e2d755)] - **tools**: update LICENSE and license-builder.sh (Santiago Gimeno) [#48078](https://github.com/nodejs/node/pull/48078)
52+
53+
### Commits
54+
55+
* [35c96156d1] - benchmark: use `cluster.isPrimary` instead of `cluster.isMaster` (Deokjin Kim) https://github.com/nodejs/node/pull/48002
56+
* [3e6e3abf32] - bootstrap: throw ERR_NOT_SUPPORTED_IN_SNAPSHOT in unsupported operation (Joyee Cheung) https://github.com/nodejs/node/pull/47887
57+
* [c480559347] - bootstrap: put is_building_snapshot state in IsolateData (Joyee Cheung) https://github.com/nodejs/node/pull/47887
58+
* [50c0a15535] - build: set v8_enable_webassembly=false when lite mode is enabled (Cheng Shao) https://github.com/nodejs/node/pull/48248
59+
* [4562805cf6] - build: speed up compilation of mksnapshot output (Keyhan Vakil) https://github.com/nodejs/node/pull/48162
60+
* [8b89f13933] - build: add action to close stale PRs (Michael Dawson) https://github.com/nodejs/node/pull/48051
61+
* [5d92202220] - build: replace js2c.py with js2c.cc (Joyee Cheung) https://github.com/nodejs/node/pull/46997
62+
* [6cf2adc36e] - cluster: use ObjectPrototypeHasOwnProperty (Daeyeon Jeong) https://github.com/nodejs/node/pull/48141
63+
* [f564b03c38] - crypto: use openssl's own memory BIOs in crypto_context.cc (GauriSpears) https://github.com/nodejs/node/pull/47160
64+
* [ac8dd61fc3] - crypto: remove default encoding from cipher (Tobias Nießen) https://github.com/nodejs/node/pull/47998
65+
* [15c2de4407] - crypto: fix setEngine() when OPENSSL_NO_ENGINE set (Tobias Nießen) https://github.com/nodejs/node/pull/47977
66+
* [9e2dd5b5e2] - deps: update zlib to 337322d (Node.js GitHub Bot) https://github.com/nodejs/node/pull/48218
67+
* [bfcb3d1d9a] - deps: upgrade to libuv 1.45.0 (Santiago Gimeno) https://github.com/nodejs/node/pull/48078
68+
* [13930f092f] - deps: update ada to 2.5.0 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/48223
69+
* [3047caebec] - deps: set `CARES_RANDOM_FILE` for c-ares (Richard Lau) https://github.com/nodejs/node/pull/48156
70+
* [0db79a0872] - deps: update histogram 0.11.8 (Marco Ippolito) https://github.com/nodejs/node/pull/47742
71+
* [99af6716f5] - deps: update histogram to 0.11.7 (Marco Ippolito) https://github.com/nodejs/node/pull/47742
72+
* [d4922bc985] - deps: update c-ares to 1.19.1 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/48115
73+
* [f6ccdb289f] - deps: update simdutf to 3.2.12 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/48118
74+
* [3ed0afc778] - deps: update minimatch to 9.0.1 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/48094
75+
* [df7540fb73] - deps: update ada to 2.4.2 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/48092
76+
* [07df5c48e8] - deps: update corepack to 0.18.0 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/48091
77+
* [d95a5bb559] - deps: update uvwasi to 0.0.18 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/47866
78+
* [443477e041] - deps: update uvwasi to 0.0.17 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/47866
79+
* [03f67d6d6d] - deps: upgrade npm to 9.6.7 (npm team) https://github.com/nodejs/node/pull/48062
80+
* [d3e3a911fd] - deps: update nghttp2 to 1.53.0 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/47997
81+
* [f7c4daaf67] - deps: update ada to 2.4.1 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/48036
82+
* [c6a752560d] - deps: add loongarch64 into openssl Makefile and gen openssl-loongarch64 (Shi Pujin) https://github.com/nodejs/node/pull/46401
83+
* [d194241716] - deps: update undici to 5.22.1 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/47994
84+
* [02e919f4a2] - deps,test: update postject to 1.0.0-alpha.6 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/48072
85+
* [2c19f596ad] - doc: clarify array args to Buffer.from() (Bryan English) https://github.com/nodejs/node/pull/48274
86+
* [d681e5f456] - doc: document watch option for node:test run() (Moshe Atlow) https://github.com/nodejs/node/pull/48256
87+
* [96e54ddbca] - doc: reserve 117 for Electron 26 (Calvin) https://github.com/nodejs/node/pull/48245
88+
* [9aff8c7818] - doc: update documentation for FIPS support (Richard Lau) https://github.com/nodejs/node/pull/48194
89+
* [8c5338648f] - doc: improve the documentation of the stdio option (Kumar Arnav) https://github.com/nodejs/node/pull/48110
90+
* [11918d705f] - doc: update Buffer.allocUnsafe description (sinkhaha) https://github.com/nodejs/node/pull/48183
91+
* [2b51ee5e22] - doc: update codeowners with website team (Claudio Wunder) https://github.com/nodejs/node/pull/48197
92+
* [360df25d04] - doc: fix broken link to new folder doc/contributing/maintaining (Andrea Fassina) https://github.com/nodejs/node/pull/48205
93+
* [13e95e21a4] - doc: add atlowChemi to triagers (Chemi Atlow) https://github.com/nodejs/node/pull/48104
94+
* [5f83ce530f] - doc: fix typo in readline completer function section (Vadym) https://github.com/nodejs/node/pull/48188
95+
* [3c82165d27] - doc: remove broken link for keygen (Rich Trott) https://github.com/nodejs/node/pull/48176
96+
* [0ca90a1e6d] - doc: add `auto` intrinsic height to prevent jitter/flicker (Daniel Holbert) https://github.com/nodejs/node/pull/48195
97+
* [f117855092] - doc: add version info on the SEA docs (Antoine du Hamel) https://github.com/nodejs/node/pull/48173
98+
* [5094d1b292] - doc: add Ruy to list of TSC members (Michael Dawson) https://github.com/nodejs/node/pull/48172
99+
* [39d8140227] - doc: update socket.remote* properties documentation (Saba Kharanauli) https://github.com/nodejs/node/pull/48139
100+
* [5497c13efe] - doc: update outdated section on TLSv1.3-PSK (Tobias Nießen) https://github.com/nodejs/node/pull/48123
101+
* [281dfaf727] - doc: improve HMAC key recommendations (Tobias Nießen) https://github.com/nodejs/node/pull/48121
102+
* [bd311b6c70] - doc: clarify mkdir() recursive behavior (Stephen Odogwu) https://github.com/nodejs/node/pull/48109
103+
* [5b061c8922] - doc: fix typo in crypto legacy streams API section (Tobias Nießen) https://github.com/nodejs/node/pull/48122
104+
* [10ccb2bd81] - doc: update SEA source link (Rich Trott) https://github.com/nodejs/node/pull/48080
105+
* [415bf7f532] - doc: clarify tty.isRaw (Roberto Vidal) https://github.com/nodejs/node/pull/48055
106+
* [0ac4b33c76] - doc: correct line break for Windows terminals (Alex Schwartz) https://github.com/nodejs/node/pull/48083
107+
* [f30ba5c320] - doc: fix Windows code snippet tags (Antoine du Hamel) https://github.com/nodejs/node/pull/48100
108+
* [12fef9b68c] - doc: harmonize fenced code snippet flags (Antoine du Hamel) https://github.com/nodejs/node/pull/48082
109+
* [13f163eace] - doc: use secure key length for HMAC generateKey (Tobias Nießen) https://github.com/nodejs/node/pull/48052
110+
* [1e3e7c9f33] - doc: update broken EVP_BytesToKey link (Rich Trott) https://github.com/nodejs/node/pull/48064
111+
* [5917ba1838] - doc: update broken spkac link (Rich Trott) https://github.com/nodejs/node/pull/48063
112+
* [0e4a3b7db1] - doc: document node-api version process (Chengzhong Wu) https://github.com/nodejs/node/pull/47972
113+
* [85bbaa94ea] - doc: update process.versions properties (Saba Kharanauli) https://github.com/nodejs/node/pull/48019
114+
* [7660eb591a] - doc: fix typo in binding functions (Deokjin Kim) https://github.com/nodejs/node/pull/48003
115+
* [2f5dbca690] - doc: mark Node.js 14 as End-of-Life (Richard Lau) https://github.com/nodejs/node/pull/48023
116+
* [3b94a739f2] - doc: clarify CRYPTO_CUSTOM_ENGINE_NOT_SUPPORTED (Tobias Nießen) https://github.com/nodejs/node/pull/47976
117+
* [9e381cfa89] - doc: add heading for permission model limitations (Tobias Nießen) https://github.com/nodejs/node/pull/47989
118+
* [802db923e0] - doc,vm: clarify usage of cachedData in vm.compileFunction() (Darshan Sen) https://github.com/nodejs/node/pull/48193
119+
* [3b00f3afef] - esm: handle `globalPreload` hook returning a nullish value (Antoine du Hamel) https://github.com/nodejs/node/pull/48249
120+
* [3c7846d7e1] - esm: handle more error types thrown from the loader thread (Antoine du Hamel) https://github.com/nodejs/node/pull/48247
121+
* [60ce2bcabc] - http: send implicit headers on HEAD with no body (Matteo Collina) https://github.com/nodejs/node/pull/48108
122+
* [72de4e7170] - lib: do not disable linter for entire files (Antoine du Hamel) https://github.com/nodejs/node/pull/48299
123+
* [10cc60fc91] - lib: use existing `isWindows` variable (sinkhaha) https://github.com/nodejs/node/pull/48134
124+
* [a90010aae9] - lib: support FORCE_COLOR for non TTY streams (Moshe Atlow) https://github.com/nodejs/node/pull/48034
125+
* [b1828b325e] - (SEMVER-MINOR) lib: implement AbortSignal.any() (Chemi Atlow) https://github.com/nodejs/node/pull/47821
126+
* [8f1b86961f] - meta: bump github/codeql-action from 2.3.3 to 2.3.6 (dependabot[bot]) https://github.com/nodejs/node/pull/48287
127+
* [1b87ccdf70] - meta: bump actions/setup-python from 4.6.0 to 4.6.1 (dependabot[bot]) https://github.com/nodejs/node/pull/48286
128+
* [10715aea26] - meta: bump codecov/codecov-action from 3.1.3 to 3.1.4 (dependabot[bot]) https://github.com/nodejs/node/pull/48285
129+
* [79f73778ab] - meta: remove dont-land-on-v14 auto labeling (Shrujal Shah) https://github.com/nodejs/node/pull/48031
130+
* [9c5711f3ea] - meta: move one or more collaborators to emeritus (Node.js GitHub Bot) https://github.com/nodejs/node/pull/48010
131+
* [6d6bf3ee52] - module: reduce the number of URL initializations (Yagiz Nizipli) https://github.com/nodejs/node/pull/48272
132+
* [f380953103] - module: change default resolver to not throw on unknown scheme (Gil Tayar) https://github.com/nodejs/node/pull/47824
133+
* [950185b0c0] - net: fix address iteration with autoSelectFamily (Fedor Indutny) https://github.com/nodejs/node/pull/48258
134+
* [5ddca72e62] - net: fix family autoselection SSL connection handling (Paolo Insogna) https://github.com/nodejs/node/pull/48189
135+
* [750e53ca3c] - net: fix family autoselection timeout handling (Paolo Insogna) https://github.com/nodejs/node/pull/47860
136+
* [a94f87ed99] - (SEMVER-MINOR) node-api: define version 9 (Chengzhong Wu) https://github.com/nodejs/node/pull/48151
137+
* [e834979818] - node-api: add status napi_cannot_run_js (Gabriel Schulhof) https://github.com/nodejs/node/pull/47986
138+
* [eafe0c3ec6] - node-api: napi_ref on all types is experimental (Vladimir Morozov) https://github.com/nodejs/node/pull/47975
139+
* [9a034746f5] - src: add Realm document in the src README.md (Chengzhong Wu) https://github.com/nodejs/node/pull/47932
140+
* [b8f4070f71] - src: check node_extra_ca_certs after openssl cfg (Raghu Saxena) https://github.com/nodejs/node/pull/48159
141+
* [0347a18056] - src: include missing header in node_sea.h (Joyee Cheung) https://github.com/nodejs/node/pull/48152
142+
* [45c3782c20] - src: remove INT_MAX asserts in SecretKeyGenTraits (Tobias Nießen) https://github.com/nodejs/node/pull/48053
143+
* [b25e7045ad] - src: avoid prototype access in binding templates (Joyee Cheung) https://github.com/nodejs/node/pull/47913
144+
* [33aa373eec] - src: use Blob{Des|S}erializer for SEA blobs (Joyee Cheung) https://github.com/nodejs/node/pull/47962
145+
* [9e2b13dfa7] - stream: deprecate asIndexedPairs (Chemi Atlow) https://github.com/nodejs/node/pull/48102
146+
* [9875885357] - test: adapt tests for OpenSSL 3.1 (OttoHollmann) https://github.com/nodejs/node/pull/47859
147+
* [3440d7c6bf] - test: unflake test-vm-timeout-escape-nexttick (Santiago Gimeno) https://github.com/nodejs/node/pull/48078
148+
* [215b2bc72c] - test: fix zlib version regex (Luigi Pinca) https://github.com/nodejs/node/pull/48227
149+
* [e12ee59d26] - test: use lower security level in s_client (Luigi Pinca) https://github.com/nodejs/node/pull/48192
150+
* [1dabc7390c] - Revert "test: unskip negative-settimeout.any.js WPT" (Filip Skokan) https://github.com/nodejs/node/pull/48182
151+
* [c1c4796a86] - test: mark test_cannot_run_js as flaky (Keyhan Vakil) https://github.com/nodejs/node/pull/48181
152+
* [8c49d74002] - test: fix flaky test-runner-watch-mode (Moshe Atlow) https://github.com/nodejs/node/pull/48144
153+
* [6388766862] - test: skip test-http-pipeline-flood on IBM i (Abdirahim Musse) https://github.com/nodejs/node/pull/48048
154+
* [8d2a3b1952] - test: ignore helper files in WPTs (Filip Skokan) https://github.com/nodejs/node/pull/48079
155+
* [7a96d825fd] - test: move `test-cluster-primary-error` flaky test (Yagiz Nizipli) https://github.com/nodejs/node/pull/48039
156+
* [a80dd3a8b3] - test: fix suite signal (Benjamin Gruenbaum) https://github.com/nodejs/node/pull/47800
157+
* [a41cfd183f] - test: fix parsing test flags (Daeyeon Jeong) https://github.com/nodejs/node/pull/48012
158+
* [4d4e506f2b] - test,doc,sea: run SEA tests on ppc64 (Darshan Sen) https://github.com/nodejs/node/pull/48111
159+
* [3f259b7a30] - test_runner: emit `test:watch:drained` event (Moshe Atlow) https://github.com/nodejs/node/pull/48259
160+
* [c9f8e8c562] - test_runner: stop watch mode when abortSignal aborted (Moshe Atlow) https://github.com/nodejs/node/pull/48259
161+
* [f3268d64cb] - test_runner: fix global after hook (Moshe Atlow) https://github.com/nodejs/node/pull/48231
162+
* [15336c3139] - test_runner: remove redundant check from coverage (Colin Ihrig) https://github.com/nodejs/node/pull/48070
163+
* [750d3e8606] - test_runner: pass FORCE_COLOR to child process (Moshe Atlow) https://github.com/nodejs/node/pull/48057
164+
* [3278542243] - test_runner: dont split lines on `test:stdout` (Moshe Atlow) https://github.com/nodejs/node/pull/48057
165+
* [027c531766] - test_runner: fix test deserialize edge cases (Moshe Atlow) https://github.com/nodejs/node/pull/48106
166+
* [2b797a6d39] - test_runner: delegate stderr and stdout formatting to reporter (Shiba) https://github.com/nodejs/node/pull/48045
167+
* [23d310bee8] - test_runner: display dot report as wide as the terminal width (Raz Luvaton) https://github.com/nodejs/node/pull/48038
168+
* [fd2620dcf1] - tls: reapply servername on happy eyeballs connect (Fedor Indutny) https://github.com/nodejs/node/pull/48255
169+
* [62f847d0b3] - tools: update rollup lint-md-dependencies (Node.js GitHub Bot) https://github.com/nodejs/node/pull/48329
170+
* [3e97826a66] - Revert "tools: open issue when update workflow fails" (Marco Ippolito) https://github.com/nodejs/node/pull/48312
171+
* [5f08bfe35f] - tools: don't gitignore base64 config.h (Ben Noordhuis) https://github.com/nodejs/node/pull/48174
172+
* [ded0e2d755] - tools: update LICENSE and license-builder.sh (Santiago Gimeno) https://github.com/nodejs/node/pull/48078
173+
* [07aa264366] - tools: automate histogram update (Marco Ippolito) https://github.com/nodejs/node/pull/48171
174+
* [1416b75eaa] - tools: use shasum instead of sha256sum (Luigi Pinca) https://github.com/nodejs/node/pull/48229
175+
* [b81e9d9b7b] - tools: harmonize `dep_updaters` scripts (Antoine du Hamel) https://github.com/nodejs/node/pull/48201
176+
* [a60bc41e53] - tools: deps update authenticate github api request (Andrea Fassina) https://github.com/nodejs/node/pull/48200
177+
* [7478ed014e] - tools: order dependency jobs alphabetically (Luca) https://github.com/nodejs/node/pull/48184
178+
* [568a705799] - tools: refactor v8_pch config (Michaël Zasso) https://github.com/nodejs/node/pull/47364
179+
* [801573ba46] - tools: log and verify sha256sum (Andrea Fassina) https://github.com/nodejs/node/pull/48088
180+
* [db62325e18] - tools: open issue when update workflow fails (Marco Ippolito) https://github.com/nodejs/node/pull/48018
181+
* [ad8a68856d] - tools: alphabetize CODEOWNERS (Rich Trott) https://github.com/nodejs/node/pull/48124
182+
* [4cf5a9edaf] - tools: use latest upstream commit for zlib updates (Andrea Fassina) https://github.com/nodejs/node/pull/48054
183+
* [8d93af381b] - tools: add security-wg as dep updaters owner (Marco Ippolito) https://github.com/nodejs/node/pull/48113
184+
* [5325be1d99] - tools: port js2c.py to C++ (Joyee Cheung) https://github.com/nodejs/node/pull/46997
185+
* [6c60d90277] - tools: fix race condition when npm installing (Tobias Nießen) https://github.com/nodejs/node/pull/48101
186+
* [0ab840a58f] - tools: refloat 7 Node.js patches to cpplint.py (Rich Trott) https://github.com/nodejs/node/pull/48098
187+
* [a298193378] - tools: update cpplint to 1.6.1 (Yagiz Nizipli) https://github.com/nodejs/node/pull/48098
188+
* [f6725751b7] - tools: update eslint to 8.41.0 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/48097
189+
* [6539361f4e] - tools: update lint-md-dependencies (Node.js GitHub Bot) https://github.com/nodejs/node/pull/48096
190+
* [5d94dbb951] - tools: update doc to [email protected] (Node.js GitHub Bot) https://github.com/nodejs/node/pull/48095
191+
* [2226088048] - tools: add debug logs (Marco Ippolito) https://github.com/nodejs/node/pull/48060
192+
* [0c8c383583] - tools: fix zconf.h path (Luigi Pinca) https://github.com/nodejs/node/pull/48089
193+
* [6adaf4c648] - tools: update remark-preset-lint-node to 4.0.0 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/47995
194+
* [92b3334231] - url: clean vertical alignment of docs (Robin Ury) https://github.com/nodejs/node/pull/48037
195+
* [ebb6536775] - url: call `ada::can_parse` directly (Yagiz Nizipli) https://github.com/nodejs/node/pull/47919
196+
* [ed4514294a] - vm: properly handle defining symbol props (Nicolas DUBIEN) https://github.com/nodejs/node/pull/47572
197+
40198
<a id="20.2.0"></a>
41199

42200
## 2023-05-16, Version 20.2.0 (Current), @targos

src/node_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 20
26-
#define NODE_MINOR_VERSION 2
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 3
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)