주요 변경사항
- assert:
- build:
- child_process:
ChildProcess._channel
(DEP0129)이 런타임 폐기 예정 상태가 되었습니다. (cjihrig) #27949.
- console:
- 출력되는
console.timeEnd()
와console.timeLog()
가 항상 밀리초를 사용하는 대신 적합한 시간 단위를 자동으로 선택합니다. (Xavier Stouder) #29251.
- 출력되는
- deps:
- V8 엔진이 버전 7.8로 업데이트되었습니다. 이 업데이트에는 객체 디스트럭처링(destructuring), 메모리 사용 및 WebAssembly 시동 시간에 대한 성능 향상이 포함됩니다. (Myles Borins) #29694.
- domain:
- 내부적인 재귀를 막기 위해 domain의 오류 핸들러가 부모로 설정된 활성 domain으로 실행됩니다. (Julien Gilli) #26211.
- fs:
- 문서화되지 않은
FSWatcher.prototype.start()
메서드가 삭제되었습니다. (Lucas Holmquist) #29905. ReadStream
또는WriteSream
에서open()
메서드를 호출하면 이제 런타임 폐기 경고가 발생합니다. 메서드는 내부에 있어야 하며 사용자의 코드로 호출하면 안 됩니다. (Robert Nagy) #29061.fs.read/write
,fs.readSync/writeSync
및fd.read/write
는 이제offset
파라미터로 안전한 정수를 받아들입니다.offset
의 값도 이제 강제되지 않으므로 유효한 타입이 함수에 전달되어야 합니다. (Zach Bjornson) #26572.
- 문서화되지 않은
- http:
- 중단된 요청은 이제
aborted
이벤트 후에end
또는error
이벤트를 생성하지 않습니다.
(Robert Nagy) #27984, #20077. - 이제 소켓 오류 발생 이후 데이터가 방출되지 않습니다. (Robert Nagy) #28711.
- 레거시 HTTP 파서(이전에는
--http-parser=legacy
플래그에서 사용 가능)가 삭제되었습니다. (Anna Henningsen) #29589. - HTTP 요청에 대한
host
옵션은 이제 문자열 값인지 검증됩니다. (Giorgos Ntemiris) #29568. request.connection
및response.connection
속성이 런타임 폐기 예정 상태가 되었습니다. 대신 이와 동등한request.socket
과response.socket
을 사용해야 합니다. (Robert Nagy) #29015.
- 중단된 요청은 이제
- http, http2:
- lib:
error.errno
속성은 이제 항상 숫자입니다. 문자열 값을 얻으려면error.code
를 사용하세요. (Joyee Cheung) #28140.
- module:
module.createRequireFromPath()
는 폐기 예정 상태가 되었습니다.module.createRequire()
를 대신 사용하세요. (cjihrig) #27951.
- src:
process.env.TZ
의 값을 변경하면 TZ 캐시가 삭제됩니다. 이는Data.prototype.toString
등의 메서드가 사용하는 기본 시간대에 영향을 줍니다. (Ben Noordhuis) #20026.
- stream:
- 스트림의 타이밍과 동작은 여러가지 엣지 케이스에 대비하여 강화되었습니다. 자세한 내용은 아래의 개별 커밋을 참고하세요.
Semver-Major Commits
- [
5981fb7faa
] - (SEMVER-MAJOR) assert: fix line number calculation after V8 upgrade (Michaël Zasso) #29694 - [
48d1ea5e7f
] - (SEMVER-MAJOR) assert: special handle identical error names in instance checks (Ruben Bridgewater) #28263 - [
97c52ca5dc
] - (SEMVER-MAJOR) assert: add more information to AssertionErrors (Ruben Bridgewater) #28263 - [
5700cd17dd
] - (SEMVER-MAJOR) assert: do not repeat .throws() code (Ruben Bridgewater) #28263 - [
d47b6786c9
] - (SEMVER-MAJOR) assert: wrap validation function errors (Ruben Bridgewater) #28263 - [
0b3242c3ce
] - (SEMVER-MAJOR) assert: fix generatedMessage property (Ruben Bridgewater) #28263 - [
ace3f16917
] - (SEMVER-MAJOR) assert: improve class instance errors (Ruben Bridgewater) #28263 - [
0376b5b7ba
] - (SEMVER-MAJOR) benchmark: use test/common/tmpdir consistently (João Reis) #28858 - [
4885e50f7e
] - (SEMVER-MAJOR) build: make full-icu the default for releases (Richard Lau) #29887 - [
60a3bd93ce
] - (SEMVER-MAJOR) build: reset embedder string to “-node.0” (Myles Borins) #29694 - [
9f830f37da
] - (SEMVER-MAJOR) build: update minimum Xcode version for macOS (Michael Dawson) #29622 - [
66eaeac1df
] - (SEMVER-MAJOR) build: reset embedder string to “-node.0” (Michaël Zasso) #28016 - [
d05668d688
] - (SEMVER-MAJOR) child_process: runtime deprecate _channel (cjihrig) #27949 - [
4f9cd2770a
] - (SEMVER-MAJOR) child_process: simplify spawn argument parsing (cjihrig) #27854 - [
66043e1812
] - (SEMVER-MAJOR) console: display timeEnd with suitable time unit (Xavier Stouder) #29251 - [
80f2b67367
] - (SEMVER-MAJOR) deps: patch V8 to 7.8.279.14 (Myles Borins) #29694 - [
eeafb263f4
] - (SEMVER-MAJOR) deps: patch V8 to 7.8.279.12 (Myles Borins) #29694 - [
ddfc3b0a76
] - (SEMVER-MAJOR) deps: patch V8 to 7.8.279.10 (Myles Borins) #29694 - [
8d05991d10
] - (SEMVER-MAJOR) deps: update V8’s postmortem script (cjihrig) #29694 - [
858602445b
] - (SEMVER-MAJOR) deps: V8: cherry-pick 716875d (Myles Borins) #29694 - [
f7f6c928c1
] - (SEMVER-MAJOR) deps: update V8 to 7.8.279.9 (Myles Borins) #29694 - [
84d3243ce9
] - (SEMVER-MAJOR) deps: V8: cherry-pick b33af60 (Michaël Zasso) #28016 - [
2dcc3665ab
] - (SEMVER-MAJOR) deps: update V8 to 7.6.303.28 (Michaël Zasso) #28016 - [
eef1b5aa0f
] - (SEMVER-MAJOR) doc: makeAssertionError
a link (Ruben Bridgewater) #28263 - [
8fd7184959
] - (SEMVER-MAJOR) doc: update assert.throws() examples (Ruben Bridgewater) #28263 - [
80d9b1c712
] - (SEMVER-MAJOR) doc: wrap long line (cjihrig) #27951 - [
43a5170858
] - (SEMVER-MAJOR) domain: error handler runs outside of its domain (Julien Gilli) #26211 - [
7eacb74389
] - (SEMVER-MAJOR) fs: make FSWatcher.start private (Lucas Holmquist) #29905 - [
773769df60
] - (SEMVER-MAJOR) fs: add runtime deprecate for file stream open() (Robert Nagy) #29061 - [
5e3b4d6ed9
] - (SEMVER-MAJOR) fs: allow int64 offset in fs.write/writeSync/fd.write (Zach Bjornson) #26572 - [
a3c0014e73
] - (SEMVER-MAJOR) fs: use IsSafeJsInt instead of IsNumber for ftruncate (Zach Bjornson) #26572 - [
0bbda5e5ae
] - (SEMVER-MAJOR) fs: allow int64 offset in fs.read/readSync/fd.read (Zach Bjornson) #26572 - [
eadc3850fe
] - (SEMVER-MAJOR) fs: close file descriptor of promisified truncate (João Reis) #28858 - [
5f80df8820
] - (SEMVER-MAJOR) http: do not emit end after aborted (Robert Nagy) #27984 - [
e573c39b88
] - (SEMVER-MAJOR) http: don’t emit ‘data’ after ‘error’ (Robert Nagy) #28711 - [
ac59dc42ed
] - (SEMVER-MAJOR) http: remove legacy parser (Anna Henningsen) #29589 - [
2daf883a18
] - (SEMVER-MAJOR) http: throw if ‘host’ agent header is not a string value (Giorgos Ntemiris) #29568 - [
0daec61b9b
] - (SEMVER-MAJOR) http: replace superfluous connection property with getter/setter (Robert Nagy) #29015 - [
461bf36d70
] - (SEMVER-MAJOR) http: fix test where aborted should not be emitted (Robert Nagy) #20077 - [
d5577f0395
] - (SEMVER-MAJOR) http: remove default ‘timeout’ listener on upgrade (Luigi Pinca) #26030 - [
c30ef3cbd2
] - (SEMVER-MAJOR) http, http2: remove default server timeout (Ali Ijaz Sheikh) #27558 - [
4e782c9deb
] - (SEMVER-MAJOR) http2: remove security revert flags (Anna Henningsen) #29141 - [
41637a530e
] - (SEMVER-MAJOR) http2: remove callback-based padding (Anna Henningsen) #29144 - [
91a4cb7175
] - (SEMVER-MAJOR) lib: rename validateInteger to validateSafeInteger (Zach Bjornson) #26572 - [
1432065e9d
] - (SEMVER-MAJOR) lib: correct error.errno to always be numeric (Joyee Cheung) #28140 - [
702331be90
] - (SEMVER-MAJOR) lib: no need to strip BOM or shebang for scripts (Refael Ackermann) #27375 - [
e2c0c0c680
] - (SEMVER-MAJOR) lib: rework logic of stripping BOM+Shebang from commonjs (Gus Caplan) #27768 - [
14701e539c
] - (SEMVER-MAJOR) module: runtime deprecate createRequireFromPath() (cjihrig) #27951 - [
04633eeeb9
] - (SEMVER-MAJOR) readline: error on falsy values for callback (Sam Roberts) #28109 - [
3eea43af07
] - (SEMVER-MAJOR) repl: close file descriptor of history file (João Reis) #28858 - [
458a38c904
] - (SEMVER-MAJOR) src: bring 425 status code name into accordance with RFC 8470 (Sergei Osipov) #29880 - [
7fcc1f7047
] - (SEMVER-MAJOR) src: update NODE_MODULE_VERSION to 79 (Myles Borins) #29694 - [
4b7be335b9
] - (SEMVER-MAJOR) src: update NODE_MODULE_VERSION to 78 (Michaël Zasso) #28918 - [
a0e2c6d284
] - (SEMVER-MAJOR) src: add error codes to errors thrown in C++ (Yaniv Friedensohn) #27700 - [
94e980c9d3
] - (SEMVER-MAJOR) src: use non-deprecated overload of V8::SetFlagsFromString (Michaël Zasso) #28016 - [
655e0dc01a
] - (SEMVER-MAJOR) src: update NODE_MODULE_VERSION to 77 (Michaël Zasso) #28016 - [
e3cd79ef8e
] - (SEMVER-MAJOR) src: update NODE_MODULE_VERSION to 74 (Refael Ackermann) #27375 - [
eba348b6ae
] - (SEMVER-MAJOR) src: make process.env.TZ setter clear tz cache (Ben Noordhuis) #20026 - [
f2061930c8
] - (SEMVER-MAJOR) src: enable V8’s WASM trap handlers (Gus Caplan) #27246 - [
f8f6a21580
] - (SEMVER-MAJOR) stream: throw unhandled error for readable with autoDestroy (Robert Nagy) #29806 - [
f663b31cc2
] - (SEMVER-MAJOR) stream: always invoke callback before emitting error (Robert Nagy) #29293 - [
aa32e13968
] - (SEMVER-MAJOR) stream: do not flush destroyed writable (Robert Nagy) #29028 - [
ba3be578d8
] - (SEMVER-MAJOR) stream: don’t emit finish on error (Robert Nagy) #28979 - [
db706da235
] - (SEMVER-MAJOR) stream: disallow stream methods on finished stream (Robert Nagy) #28687 - [
188896ea3e
] - (SEMVER-MAJOR) stream: do not emit after ‘error’ (Robert Nagy) #28708 - [
4a2bd69db9
] - (SEMVER-MAJOR) stream: fix destroy() behavior (Robert Nagy) #29058 - [
824dc576db
] - (SEMVER-MAJOR) stream: simplify.pipe()
and.unpipe()
in Readable (Weijia Wang) #28583 - [
8ef68e66d0
] - (SEMVER-MAJOR) test: clean tmpdir on process exit (João Reis) #28858 - [
d3f20a4725
] - (SEMVER-MAJOR) test: use unique tmpdirs for each test (João Reis) #28858 - [
174723354e
] - (SEMVER-MAJOR) tools: patch V8 to run on older XCode versions (Ujjwal Sharma) #29694 - [
1676502318
] - (SEMVER-MAJOR) tools: update V8 gypfiles (Michaël Zasso) #29694 - [
1a25e901b7
] - (SEMVER-MAJOR) tools: support full-icu by default (Steven R. Loomis) #29522 - [
2664dacf7e
] - (SEMVER-MAJOR) util: validate formatWithOptions inspectOptions (Ruben Bridgewater) #29824
Semver-Minor Commits
- [
8915b15f8c
] - (SEMVER-MINOR) http: add reusedSocket property on client request (themez) #29715 - [
6afed1dc85
] - (SEMVER-MINOR) n-api: addnapi\_detach\_arraybuffer
(legendecas) #29768 - [
c0305af2c4
] - (SEMVER-MINOR) repl: check for NODE_REPL_EXTERNAL_MODULE (Gus Caplan) #29778
Semver-Patch Commits
- [
e6c389cb3c
] - benchmark: remove double word “then” in comments (Nick Schonning) #29823 - [
1294c7e485
] - benchmark: add benchmark for vm.createContext (Joyee Cheung) #29845 - [
6f814013f4
] - build: fix version checks in gyp files (Ben Noordhuis) #29931 - [
6c205aba00
] - build: always use strings for compiler version in gyp files (Michaël Zasso) #29897 - [
be926c7e21
] - build: find Python 3 or Python 2 in configure (cclauss) #25878 - [
16f673ebcc
] - build: re-enable openssl arm for arm64 (Edward Vielmetti) #28180 - [
204248a0c3
] - console: update time formatting (Ruben Bridgewater) #29629 - [
c64ed10d80
] - crypto: reject public keys properly (Tobias Nießen) #29913 - [
7de5a55710
] - deps: patch V8 to 7.8.279.17 (Michaël Zasso) #29928 - [
a350d8b780
] - deps: V8: cherry-pick 53e62af (Michaël Zasso) #29898 - [
6b962ddf01
] - deps: patch V8 to 7.8.279.15 (Michaël Zasso) #29899 - [
efa6bead1d
] - doc: add missing deprecation code (cjihrig) #29969 - [
c4de76f7a6
] - doc: update vm.md for link linting (Rich Trott) #29982 - [
ed5eaa0495
] - doc: prepare miscellaneous docs for new markdown lint rules (Rich Trott) #29963 - [
039eb56249
] - doc: fix some recent nits in fs.md (Vse Mozhet Byt) #29906 - [
7812a615ab
] - doc: fs dir modifications may not be reflected by dir.read (Anna Henningsen) #29893 - [
37321a9e11
] - doc: add missing deprecation number (cjihrig) #29183 - [
791409a9ce
] - doc: fixup changelog for v10.16.3 (Andrew Hughes) #29159 - [
02b3722b30
] - doc,meta: reduce npm PR wait period to one week (Rich Trott) #29922 - [
fce1a5198a
] - domain: do not import util for a simple type check (Ruben Bridgewater) #29825 - [
b798f64566
] - esm: unflag --experimental-exports (Guy Bedford) #29867 - [
5c93aab278
] - fs: buffer dir entries in opendir() (Anna Henningsen) #29893 - [
624fa4147a
] - http2: fix file close error condition at respondWithFd (Anna Henningsen) #29884 - [
d5c3837061
] - lib: remove the comment of base64 validation (Maledong) #29201 - [
3238232fc4
] - lib: rename validateSafeInteger to validateInteger (cjihrig) #29184 - [
aca1c283bd
] - module: warn on require of .js inside type: module (Guy Bedford) #29909 - [
1447a79dc4
] - net: treat ENOTCONN at shutdown as success (Anna Henningsen) #29912 - [
4ca61f40fe
] - process: add lineLength to source-map-cache (bcoe) #29863 - [
545f7282d1
] - src: implement v8 host weakref hooks (Gus Caplan) #29874 - [
53ca0b9ae1
] - src: render N-API weak callbacks as cleanup hooks (Gabriel Schulhof) #28428 - [
075c7ebeb5
] - src: fix largepages regression (Gabriel Schulhof) #29914 - [
179f4232ed
] - src: remove unused using declarations in worker.cc (Daniel Bevenius) #29883 - [
264cb79bc2
] - src: silence compiler warning node_process_methods (Daniel Bevenius) #28261 - [
89b32378c8
] - src: forbid reset_handler for SIGSEGV handling (Anna Henningsen) #27775 - [
e256204776
] - src: reset SIGSEGV handler before crashing (Anna Henningsen) #27775 - [
e6b3ec3d3c
] - src: do not use posix feature macro in node.h (Anna Henningsen) #27775 - [
6e796581fc
] - src: remove freebsd SA_RESETHAND workaround (Ben Noordhuis) #27780 - [
8709a408d2
] - stream: use more accurate end-of-stream writable and readable detection (Robert Nagy) #29409 - [
698a29420f
] - stream: fix readable stateawaitDrain
increase in recursion (ran) #27572 - [
033037cec9
] - stream: avoid unecessary nextTick (Robert Nagy) #29194 - [
f4f856b238
] - test: fix flaky doctool and test (Rich Trott) #29979 - [
7991b57cfd
] - test: fix fs benchmark test (Rich Trott) #29967 - [
2bb93e1108
] - test: set LC_ALL to known good value (Ben Noordhuis) #28096 - [
039cfdc838
] - test: add addon tests forRegisterSignalHandler()
(Anna Henningsen) #27775 - [
90b5f1b107
] - tools: update remark-preset-lint-node to 1.10.1 (Rich Trott) #29982 - [
ea3d5ff785
] - tools: fix test runner in presence of NODE_REPL_EXTERNAL_MODULE (Gus Caplan) #29956 - [
8728f8660a
] - tools: fix GYP MSVS solution generator for Python 3 (Michaël Zasso) #29897 - [
66b953207d
] - tools: port Python 3 compat patches from node-gyp to gyp (Michaël Zasso) #29897 - [
a0c6cf8eb1
] - tools: update remark-preset-lint-node to 1.10.0 (Rich Trott) #29594 - [
1e01f3f022
] - tools: apply more stringent blank-line linting for markdown files (Rich Trott) #29447 - [
f9caee986c
] - vm: add Synthetic modules (Gus Caplan) #29864
Windows 32-bit Installer: https://nodejs.org/dist/v13.0.0/node-v13.0.0-x86.msi
Windows 64-bit Installer: https://nodejs.org/dist/v13.0.0/node-v13.0.0-x64.msi
Windows 32-bit Binary: https://nodejs.org/dist/v13.0.0/win-x86/node.exe
Windows 64-bit Binary: https://nodejs.org/dist/v13.0.0/win-x64/node.exe
macOS 64-bit Installer: https://nodejs.org/dist/v13.0.0/node-v13.0.0.pkg
macOS 64-bit Binary: https://nodejs.org/dist/v13.0.0/node-v13.0.0-darwin-x64.tar.gz
Linux 64-bit Binary: https://nodejs.org/dist/v13.0.0/node-v13.0.0-linux-x64.tar.xz
Linux PPC LE 64-bit Binary: https://nodejs.org/dist/v13.0.0/node-v13.0.0-linux-ppc64le.tar.xz
Linux s390x 64-bit Binary: https://nodejs.org/dist/v13.0.0/node-v13.0.0-linux-s390x.tar.xz
AIX 64-bit Binary: https://nodejs.org/dist/v13.0.0/node-v13.0.0-aix-ppc64.tar.gz
SmartOS 64-bit Binary: https://nodejs.org/dist/v13.0.0/node-v13.0.0-sunos-x64.tar.xz
ARMv7 32-bit Binary: https://nodejs.org/dist/v13.0.0/node-v13.0.0-linux-armv7l.tar.xz
ARMv8 64-bit Binary: https://nodejs.org/dist/v13.0.0/node-v13.0.0-linux-arm64.tar.xz
Source Code: https://nodejs.org/dist/v13.0.0/node-v13.0.0.tar.gz
Other release files: https://nodejs.org/dist/v13.0.0/
Documentation: https://nodejs.org/docs/v13.0.0/api/
SHASUMS
1 | -----BEGIN PGP SIGNED MESSAGE----- |