James M Snell
Node.js 10.0.0 is the seventh major Node.js release since the launch of the Node.js Foundation. In October of 2018, it will become the next Active Long Term Support branch.
Partially in celebration of the N-API native addon API graduating from experimental status, this Node.js release also comes with a coordinated experimental release of Node-ChakraCore that has full support for N-API and advances the Time-Travel innovation with easier getting started using a VSCode extension.
Feature Highlights for the Node-ChakraCore release include:
- Full support for N-API
- Easy getting started with Time-Travel Debugging via a new Visual Studio Code Extension
- TTD support for generators and async functions
- Support for Inspector protocol
- Increased stability and other assorted improvements
The full set of changes for the Node.js 10.0.0 release are detailed below.
Notable Changes
- Assert
- Calling
assert.fail()with more than one argument is deprecated. [70dcacd710] - Calling
assert.ifError()will now throw with any argument other thanundefinedornull. Previously the method would throw with any truthy value. [e65a6e81ef] - The
assert.rejects()andassert.doesNotReject()methods have been added for working with async functions. [599337f43e] - Assertion errors will show a diff in case objects are used. [
2d9e87695e] assert.throws()accepts an object for comparison to the error. [2d374916eb]- The error message from
assert.ok(expression)now also contains the expression itself. [f76ef50432]
- Calling
- Async_hooks
- Older experimental async_hooks APIs have been removed. [
1cc6b993b9]
- Older experimental async_hooks APIs have been removed. [
- Buffer
- Uses of
new Buffer()andBuffer()outside of thenode_modulesdirectory will now emit a runtime deprecation warning. [9d4ab90117] Buffer.isEncoding()now returnsundefinedfor falsy values, including an empty string. [452eed956e]Buffer.fill()will throw if an attempt is made to fill with an emptyBuffer. [1e802539b2]noAssertargument was removed from allBufferread and write functions. [e8bb1f35df]
- Uses of
- Child Process
- Undefined properties of env are ignored. [
38ee25e2e2], [85739b6c5b]
- Undefined properties of env are ignored. [
- Console
- The
console.table()method has been added. [97ace04492]
- The
- Crypto
- The
crypto.createCipher()andcrypto.createDecipher()methods have been deprecated. Please usecrypto.createCipheriv()andcrypto.createDecipheriv()instead. [81f88e30dd] - The
decipher.finaltol()method has been deprecated. [19f3927d92] - The
crypto.DEFAULT_ENCODINGproperty has been deprecated. [6035beea93] - The
ECDH.convertKey()method has been added. [f2e02883e7] - The
crypto.fipsproperty has been deprecated. [6e7992e8b8] - The AES-CCM algorithm has been implemented. [
1e07acd476]
- The
- Dependencies
- V8 has been updated to 6.6. [
9daebb48d6] - OpenSSL has been updated to 1.1.0h. [
66cb29e646]
- V8 has been updated to 6.6. [
- EventEmitter
- The
EventEmitter.prototype.off()method has been added as an alias forEventEmitter.prototype.removeListener(). [3bb6f07d52]
- The
- File System
- The
fs/promisesAPI provides experimental promisified versions of thefsfunctions. [329fc78e49] - Invalid path errors are now thrown synchronously. [
d8f73385e2] - The
fs.readFile()method now partitions reads to avoid thread pool exhaustion. [67a4ce1c6e]
- The
- HTTP
- Processing of HTTP Status codes
100,102-199has been improved. [baf8495078] - Multi-byte characters in URL paths are now forbidden. [
b961d9fd83]
- Processing of HTTP Status codes
- N-API
- The n-api is no longer experimental. [
cd7d7b15c1]
- The n-api is no longer experimental. [
- Net
- The
'close'event will be emitted after'end'. [9b7a6914a7]
- The
- Perf_hooks
- The
PerformanceObserverclass is now anAsyncResourceand can be monitored usingasync_hooks. [009e41826f] - Trace events are now emitted for performance events. [
9e509b622b] - The
performanceAPI has been simplified. [2ec6995555] - Performance milestone marks will be emitted as trace events. [
96cb4fb795]
- The
- Process
- Using non-string values for
process.envis deprecated. [5826fe4e79] - The
process.assert()method is deprecated. [703e37cf3f]
- Using non-string values for
- REPL
- REPL now experimentally supports top-level await when using the
--experimental-repl-awaitflag. [eeab7bc068] - The previously deprecated "magic mode" has been removed. [
4893f70d12] - The previously deprecated
NODE_REPL_HISTORY_FILEenvironment variable has been removed. [60c9ad7979] - Proxy objects are shown as Proxy objects when inspected. [
90a43906ab]
- REPL now experimentally supports top-level await when using the
- Streams
- The
'readable'event is now always deferred with nextTick. [1e0f3315c7] - A new
pipeline()method has been provided for building end-to-data stream pipelines. [a5cf3feaf1] - Experimental support for async for-await has been added to
stream.Readable. [61b4d60c5d]
- The
- Timers
- The
enroll()andunenroll()methods have been deprecated. [68783ae0b8]
- The
- TLS
- The
tls.convertNPNProtocols()method has been deprecated. [9204a0db6e] - Support for NPN (next protocol negotiation) has been dropped. [
5bfbe5ceae] - The
ecdhCurvedefault is now'auto'. [af78840b19]
- The
- Trace Events
- A new
trace_eventstop-level module allows trace event categories to be enabled/disabled at runtime. [da5d818a54]
- A new
- URL
- The WHATWG URL API is now a global. [
312414662b]
- The WHATWG URL API is now a global. [
- Util
util.types.is[…]type checks have been added. [b20af8088a]- Support for bigint formatting has been added to
util.inspect(). [39dc947409] util.inspect()custom inspection withinspectproperty has been deprecated at runtime. [617e3e96e6]
Deprecations:
The following APIs have been deprecated in Node.js 10.0.0
- Passing more than one argument to
assert.fail()will emit a runtime deprecation warning. [70dcacd710] - Previously deprecated legacy async_hooks APIs have reached end-of-life and have been removed. [
1cc6b993b9] - Using
require()to access several of Node.js' own internal dependencies will emit a runtime deprecation. [0e10717e43] - The
crypto.createCipher()andcrypto.createDecipher()methods have been deprecated in documentation.[81f88e30dd] - Using the
Decipher.finaltol()method will emit a runtime deprecation warning. [19f3927d92] - Using the
crypto.DEFAULT_ENCODINGproperty will emit a runtime deprecation warning. [6035beea93] - Use by native addons of the
MakeCallback()variant that passes aDomainwill emit a runtime deprecation warning. [14bc3e22f3], [efb32592e1] - Previously deprecated internal getters/setters on
net.Serverhas reached end-of-life and have been removed. [3701b02309] - Use of non-string values for
process.envhas been deprecated in documentation. [5826fe4e79] - Use of
process.assert()will emit a runtime deprecation warning. [703e37cf3f] - Previously deprecated
NODE_REPL_HISTORY_FILEenvironment variable has reached end-of-life and has been removed. [60c9ad7979] - Use of the
timers.enroll()andtimers.unenroll()methods will emit a runtime deprecation warning. [68783ae0b8] - Use of the
tls.convertNPNProtocols()method will emit a runtime deprecation warning. Support for NPN has been removed from Node.js. [9204a0db6e] - The
crypto.fipsproperty has been deprecated in documentation. [6e7992e8b8]
Commits
Semver-major
- [
c9bb91af33] - (SEMVER-MAJOR) assert: removeerrorDiffproperty (Ruben Bridgewater) #19467 - [
eb427caadd] - (SEMVER-MAJOR) assert: improve default error messages (Ruben Bridgewater) #19467 - [
1964978fb8] - (SEMVER-MAJOR) assert: detect faulty throws usage (Ruben Bridgewater) #19867 - [
9743e756e2] - (SEMVER-MAJOR) assert: provide info about actual error (Ruben Bridgewater) #19884 - [
70dcacd710] - (SEMVER-MAJOR) assert: deprecate assert.fail partially (Ruben Bridgewater) #18418 - [
3cd7977a42] - (SEMVER-MAJOR) assert: use a default message in assert (Ruben Bridgewater) #18319 - [
e65a6e81ef] - (SEMVER-MAJOR) assert: stricter ifError (Ruben Bridgewater) #18247 - [
72bb4445c6] - (SEMVER-MAJOR) assert: wrap original error in ifError (Ruben Bridgewater) #18247 - [
d07c6f9739] - (SEMVER-MAJOR) assert: throw without args in ok (Ruben Bridgewater) #17581 - [
f76ef50432] - (SEMVER-MAJOR) assert: improve simple assert (Ruben Bridgewater) #17581 - [
493340f56e] - (SEMVER-MAJOR) assert: use Object.is comparison in .strictEqual (Ruben Bridgewater) #17003 - [
1cc6b993b9] - (SEMVER-MAJOR) async_hooks: remove deprecated API (Andreas Madsen) #17147 - [
81aaab75ca] - (SEMVER-MAJOR) benchmark: remove noAssert argument (Ruben Bridgewater) #18395 - [
876836b135] - (SEMVER-MAJOR) benchmark: rename file (Ruben Bridgewater) #18790 - [
e9ec9ff269] - (SEMVER-MAJOR) benchmark: add buffer fill benchmark (Ruben Bridgewater) #18790 - [
94d64877ff] - (SEMVER-MAJOR) benchmark: improve buffer.readInt(B|L)E benchmarks (Rich Trott) #11146 - [
9d4ab90117] - (SEMVER-MAJOR) buffer: do deprecation warning outsidenode_modules(Anna Henningsen) #19524 - [
e8bb1f35df] - (SEMVER-MAJOR) buffer: refactor all read/write functions (Ruben Bridgewater) #18395 - [
a6c490cc8e] - (SEMVER-MAJOR) buffer: remove double ln (Ruben Bridgewater) #18395 - [
1411b30f46] - (SEMVER-MAJOR) buffer: move c++ float functions to js (Ruben Bridgewater) #18395 - [
452eed956e] - (SEMVER-MAJOR) buffer: stricter isEncoding (Ruben Bridgewater) #18790 - [
177b7314cf] - (SEMVER-MAJOR) buffer: improve Buffer#fill performance (Ruben Bridgewater) #18790 - [
1e802539b2] - (SEMVER-MAJOR) buffer: throw when filling with empty buffers (cjihrig) #18129 - [
9fea7eae9a] - (SEMVER-MAJOR) buffer: check byteLength in readUInt(B|L)E (Rich Trott) #11146 - [
d964ffeec3] - (SEMVER-MAJOR) buffer: check byteLength in readInt(B|L)E (Sebastian Van Sande) #11146 - [
cd174df353] - (SEMVER-MAJOR) buffer: throw on failed fill attempts (cjihrig) #17427 - [
010587b7c4] - (SEMVER-MAJOR) build: remove implied support for win 2012 not R2 (Beth Griggs) #19378 - [
36a02d401c] - (SEMVER-MAJOR) build: add option to build v8 with GN (Yang Guo) #19201 - [
608557a1fc] - (SEMVER-MAJOR) build: update node.gyp to reference gypfiles/v8.gyp (Joyee Cheung) #19201 - [
3542411fda] - (SEMVER-MAJOR) build: reset embedder string to "-node.0" (Myles Borins) #19201 - [
08af7dba2a] - (SEMVER-MAJOR) build: add OpenSSL-1.1.0 support (Shigeki Ohtsu) #19794 - [
549b280b87] - (SEMVER-MAJOR) build: reset embedder string to "-node.0" (Michaël Zasso) #18453 - [
56ee94f184] - (SEMVER-MAJOR) build: compile V8 using system compiler (Ben Noordhuis) #17489 - [
e9bcb39ef2] - (SEMVER-MAJOR) build: remove --no-i18n from V8 test options (Michaël Zasso) #17489 - [
4a16a5d988] - (SEMVER-MAJOR) build: compile with -std=gnu++1y (Michaël Zasso) #17489 - [
fe6bcce9af] - (SEMVER-MAJOR) build: reset embedder string to "-node.0" (Michaël Zasso) #17489 - [
2c75b52af8] - (SEMVER-MAJOR) build: replace runtime flag with compiler option (Peter Marshall) #16271 - [
6e7028ea76] - (SEMVER-MAJOR) build: reset embedder string to "-node.0" (Michaël Zasso) #16271 - [
0e10717e43] - (SEMVER-MAJOR) build: runtime-deprecate requiring deps (Timothy Gu) #16392 - [
eec659c138] - (SEMVER-MAJOR) build, tools, win: add nasm detection for OpenSSL (João Reis) #19794 - [
9bfe55e184] - (SEMVER-MAJOR) child_process: better spawn error message (Bartosz Sosnowski) #19305 - [
11b6c0de41] - (SEMVER-MAJOR) child_process: define EACCES as a runtime error (Gireesh Punathil) #19294 - [
38ee25e2e2] - (SEMVER-MAJOR) child_process: do not ignore proto values of env (Anatoli Papirovski) #18210 - [
85739b6c5b] - (SEMVER-MAJOR) child_process: ignore undef/proto values of env (现充) #15089 - [
15d880bcb6] - (SEMVER-MAJOR) console: make .assert standard compliant (Ruben Bridgewater) #17706 - [
970ce14f61] - (SEMVER-MAJOR) crypto: remove deperecated methods of TLS version (Shigeki Ohtsu) #19794 - [
1e07acd476] - (SEMVER-MAJOR) crypto: add support for AES-CCM (Tobias Nießen) #18138 - [
333adf61eb] - (SEMVER-MAJOR) crypto: fix error handling (Ruben Bridgewater) #19445 - [
81f88e30dd] - (SEMVER-MAJOR) crypto: doc-only deprecate createCipher/Decipher (Tobias Nießen) #19343 - [
19f3927d92] - (SEMVER-MAJOR) crypto: deprecate Decipher.finaltol (Tobias Nießen) #19353 - [
6035beea93] - (SEMVER-MAJOR) crypto: runtime deprecate DEFAULT_ENCODING (James M Snell) #18333 - [
858b48b692] - (SEMVER-MAJOR) crypto: assign deprecation code for setAuthTag/GCM (Tobias Nießen) #18017 - [
845633a7c6] - (SEMVER-MAJOR) crypto: better docs for cases where peer's public key is invalid (Jose M. Palacios Diaz) #16849 - [
e567402aba] - (SEMVER-MAJOR) crypto: migrate CipherBase to internal/errors (James M Snell) #16527 - [
2a3f8c3a83] - (SEMVER-MAJOR) deps: patch the V8 API to be forward compatible with 6.7 (Peter Marshall) #19999 - [
ea9de2c81a] - (SEMVER-MAJOR) deps: split v8_monolith target into separate file (Yang Guo) #19201 - [
e8fc6b6901] - (SEMVER-MAJOR) deps: update v8.gyp (Michaël Zasso) #19201 - [
9daebb48d6] - (SEMVER-MAJOR) deps: update V8 to 6.6.346.23 (Myles Borins) #19201 - [
7812ec735b] - (SEMVER-MAJOR) deps: update archs files for OpenSSL-1.1.0 (Shigeki Ohtsu) #19794 - [
99eb744842] - (SEMVER-MAJOR) deps: add gyp, header and Makefile for openssl110 (Shigeki Ohtsu) #19794 - [
1bcb6c0d26] - (SEMVER-MAJOR) deps: add s390 asm rules for OpenSSL-1.1.0 (Shigeki Ohtsu) #19794 - [
6bab3c23b1] - (SEMVER-MAJOR) deps: delete files of OpenSSL-1.0.2 (Shigeki Ohtsu) #19794 - [
66cb29e646] - (SEMVER-MAJOR) deps: upgrade openssl sources to 1.1.0h (Shigeki Ohtsu) #19794 - [
9759573997] - (SEMVER-MAJOR) deps: cherry-pick 46c4979 from upstream V8 (Michaël Zasso) #18453 - [
b4c1222acc] - (SEMVER-MAJOR) deps: skip some V8 tests for ppc and s390 (Michaël Zasso) #18453 - [
9396a9f02c] - (SEMVER-MAJOR) deps: cherry-pick 8bfbe25 from upstream V8 (Michaël Zasso) #18453 - [
d68ee7eab7] - (SEMVER-MAJOR) deps: cherry-pick 04a06c9 from upstream V8 (Michaël Zasso) #18453 - [
88786fecff] - (SEMVER-MAJOR) deps: update V8 to 6.5.254.31 (Michaël Zasso) #18453 - [
142d6237b6] - (SEMVER-MAJOR) deps: V8: reintroduce missing whitespace in test (Ali Ijaz Sheikh) #18360 - [
b06440356d] - (SEMVER-MAJOR) deps: cherry-pick c3bb73f from upstream V8 (Ali Ijaz Sheikh) #18196 - [
a1c5dddbb2] - (SEMVER-MAJOR) deps: cherry-pick 814577e from upstream V8 (Ali Ijaz Sheikh) #18196 - [
4c4af643e5] - (SEMVER-MAJOR) deps: update V8 to 6.4.388.40 (Michaël Zasso) #17489 - [
51054dac54] - (SEMVER-MAJOR) deps: cherry-pick c3bb73f from upstream V8 (Ali Ijaz Sheikh) #18196 - [
7d7a549219] - (SEMVER-MAJOR) deps: cherry-pick 814577e from upstream V8 (Ali Ijaz Sheikh) #18196 - [
1854ba04e9] - (SEMVER-MAJOR) deps: update V8 to 6.3.292.46 (Michaël Zasso) #16271 - [
9ad994befb] - (SEMVER-MAJOR) dgram: migrate bufferSize to use internal/errors (James M Snell) #16567 - [
8a5b7b2afe] - (SEMVER-MAJOR) doc: update required compiler level for AIX (Michael Dawson) #20153 - [
ae096ba27c] - (SEMVER-MAJOR) doc: fix API descriptions for OpenSSL-1.1.0 (Shigeki Ohtsu) #19794 - [
c111e133ae] - (SEMVER-MAJOR) doc: add deprecation notice (Ruben Bridgewater) #18395 - [
740c426b21] - (SEMVER-MAJOR) doc: add a deprecation message for removing lttng (Glen Keane) #18982 - [
300f5ce346] - (SEMVER-MAJOR) doc: deprecate top-levelthis(Hackzzila) #16878 - [
dbdcf12187] - (SEMVER-MAJOR) doc: correct buffer changelog ordering (cjihrig) #18129 - [
4319780389] - (SEMVER-MAJOR) doc: remove double line break (Ruben Bridgewater) #17581 - [
ccc87ebb33] - (SEMVER-MAJOR) doc: improve documentation for util.deprecate() (Rich Trott) #16393 - [
14bc3e22f3] - (SEMVER-MAJOR) domain: runtime deprecate MakeCallback (Andreas Madsen) #17417 - [
5135e24133] - (SEMVER-MAJOR) errors: alter ERR_INVALID_CURSOR_POS (davidmarkclements) #19960 - [
eca95a9ea5] - (SEMVER-MAJOR) errors: alter ERR_INVALID_PROTOCOL (davidmarkclements) #19983 - [
afb4d55ac4] - (SEMVER-MAJOR) errors: alter ERR_INVALID_DOMAIN_NAME (davidmarkclements) #19961 - [
83a8261764] - (SEMVER-MAJOR) errors: alter and test ERR_INVALID_REPL_EVAL_CONFIG (davidmarkclements) #19984 - [
b40efa43bd] - (SEMVER-MAJOR) errors: alter ERR_INVALID_IP_ADDRESS (davidmarkclements) #19979 - [
d28211ec3d] - (SEMVER-MAJOR) errors: validate input arguments (Ruben Bridgewater) #19924 - [
b29c36b807] - (SEMVER-MAJOR) errors: make dns errors consistent (Ruben Bridgewater) #19754 - [
7d06761f83] - (SEMVER-MAJOR) errors: improve SystemError messages (Joyee Cheung) #19514 - [
28e4e43e51] - (SEMVER-MAJOR) errors: make input mandatory (Ruben Bridgewater) #19445 - [
6ef17303a7] - (SEMVER-MAJOR) errors: only init colors when util is not loaded (Joyee Cheung) #18359 - [
b1e6c0d44c] - (SEMVER-MAJOR) errors, child_process: use internal/errors codes (Jon Moss) #14998 - [
3bb6f07d52] - (SEMVER-MAJOR) events: add off alias to removeListener (Ulmanb) #17156 - [
acc3c770e7] - (SEMVER-MAJOR) fs: fix error handling (Ruben Bridgewater) #19445 - [
897f7b6c6b] - (SEMVER-MAJOR) fs: improve errors in watchFile and unwatchFile (Joyee Cheung) #19345 - [
301f6cc553] - (SEMVER-MAJOR) fs: remove watcher state errors for fs.watch (Joyee Cheung) #19345 - [
6c25f2ea49] - (SEMVER-MAJOR) fs: improve errors thrown from fs.watch() (Joyee Cheung) #19089 - [
f7e5b385a7] - (SEMVER-MAJOR) fs: remove unused SYNC_* helpers (Joyee Cheung) #19041 - [
80bd2da6e1] - (SEMVER-MAJOR) fs: use SyncCall in WriteBuffers (Joyee Cheung) #19041 - [
49dd80935c] - (SEMVER-MAJOR) fs: throw futimesSync errors in JS (Joyee Cheung) #19041 - [
994320b07b] - (SEMVER-MAJOR) fs: throw writeSync errors in JS (Joyee Cheung) #19041 - [
1650eaeac4] - (SEMVER-MAJOR) fs: throw fchownSync errors in JS (Joyee Cheung) #19041 - [
79b195437c] - (SEMVER-MAJOR) fs: throw fchmodSync errors in JS (Joyee Cheung) #19041 - [
c6acfdb3ac] - (SEMVER-MAJOR) fs: throw readSync errors in JS (Joyee Cheung) #19041 - [
4eb45b884d] - (SEMVER-MAJOR) fs: throw copyFileSync errors in JS (Joyee Cheung) #18871 - [
d2dc2a5011] - (SEMVER-MAJOR) fs: throw fs.mkdtempSync errors in JS land (Joyee Cheung) #18871 - [
82523d3b6e] - (SEMVER-MAJOR) fs: throw fs.utimesSync errors in JS land (Joyee Cheung) #18871 - [
8fb5a6cd81] - (SEMVER-MAJOR) fs: throw fs.chownSync errors in JS land (Joyee Cheung) #18871 - [
437c756493] - (SEMVER-MAJOR) fs: throw fs.chmodSync errors in JS land (Joyee Cheung) #18871 - [
e8ec898a7d] - (SEMVER-MAJOR) fs: use SyncCall in OpenFileHandle (Joyee Cheung) #18871 - [
fea5dda1d1] - (SEMVER-MAJOR) fs: throw openSync errors in JS (Joyee Cheung) #18871 - [
d2c4f5082f] - (SEMVER-MAJOR) fs: throw readdirSync errors in JS (Joyee Cheung) #18871 - [
72d150ea6f] - (SEMVER-MAJOR) fs: throw realpathSync.native errors in JS (Joyee Cheung) #18871 - [
77b42e34de] - (SEMVER-MAJOR) fs: throw mkdirSync errors in JS (Joyee Cheung) #18871 - [
46164ba212] - (SEMVER-MAJOR) fs: throw rmdirSync errors in JS (Joyee Cheung) #18871 - [
c3eb3efa31] - (SEMVER-MAJOR) fs: fix functions executed in wrong context (Ruben Bridgewater) #18668 - [
e9f2cecf1a] - (SEMVER-MAJOR) Revert "fs: Revert throw on invalid callbacks" (Ruben Bridgewater) #18668 - [
d8f73385e2] - (SEMVER-MAJOR) fs: throw errors on invalid paths synchronously (Joyee Cheung) #18308 - [
67a4ce1c6e] - (SEMVER-MAJOR) fs: partition readFile against pool exhaustion (Jamie Davis) #17054 - [
776f6cdfc4] - (SEMVER-MAJOR) fs: throw errors from fs.unlinkSync in JS (Joyee Cheung) #18348 - [
eca93e631f] - (SEMVER-MAJOR) fs: throw errors from fs.fsyncSync in JS (Joyee Cheung) #18348 - [
f5e287ba20] - (SEMVER-MAJOR) fs: throw errors from fs.fdatasyncSync in JS (Joyee Cheung) #18348 - [
b3a7df7c6d] - (SEMVER-MAJOR) fs: throw errors from fs.ftruncateSync in JS (Joyee Cheung) #18348 - [
5583981c52] - (SEMVER-MAJOR) fs: throw errors from fs.renameSync in JS (Joyee Cheung) #18348 - [
09da11e5e1] - (SEMVER-MAJOR) fs: throw errors from fs.readlinkSync in JS (Joyee Cheung) #18348 - [
167e22937c] - (SEMVER-MAJOR) fs: throw errors from fs.linkSync in JS (Joyee Cheung) #18348 - [
32bf0f6c5b] - (SEMVER-MAJOR) fs: throw errors from fs.symlinkSync in JS (Joyee Cheung) #18348 - [
8c00a809bc] - (SEMVER-MAJOR) fs: throw fs.fstat{Sync} errors in JS (Joyee Cheung) #17914 - [
da7804f259] - (SEMVER-MAJOR) fs: throw fs.lstat{Sync} errors in JS (Joyee Cheung) #17914 - [
57d7638af3] - (SEMVER-MAJOR) fs: throw fs.stat{Sync} errors in JS (Joyee Cheung) #17914 - [
791975d189] - (SEMVER-MAJOR) fs: return errno and take fs_req_wrap in SyncCall (Joyee Cheung) #17914 - [
71396a200d] - (SEMVER-MAJOR) fs: validate path in fs.exists{Sync} (Joyee Cheung) #17852 - [
9ec700b073] - (SEMVER-MAJOR) fs: validate path in fs.readFile (Joyee Cheung) #17852 - [
8599465d33] - (SEMVER-MAJOR) fs: migrate errors to internal/errors (Steven) #17719 - [
6100e12667] - (SEMVER-MAJOR) fs: move type checking to js (James M Snell) #17667 - [
805dca199a] - (SEMVER-MAJOR) fs: remove unnecessary throw on fs.mkdtemp (James M Snell) #17334 - [
163869879e] - (SEMVER-MAJOR) fs: move type checking for fs.read to js (James M Snell) #17334 - [
448ec0b5aa] - (SEMVER-MAJOR) fs: move type checking in fs.futimes to js (James M Snell) #17334 - [
82eb459e3f] - (SEMVER-MAJOR) fs: move type checking for fs.fchown to js (James M Snell) #17334 - [
0a01aa8e94] - (SEMVER-MAJOR) fs: move type checking for fs.fchmod to js (James M Snell) #17334 - [
d453fac33b] - (SEMVER-MAJOR) fs: move type checking for fs.ftruncate to js (James M Snell) #17334 - [
8cb080c486] - (SEMVER-MAJOR) fs: move type checking for fs.sync to js (James M Snell) #17334 - [
956f97b875] - (SEMVER-MAJOR) fs: move type checking for fs.fdatasync to js (James M Snell) #17334 - [
639096855e] - (SEMVER-MAJOR) fs: move type checking on fs.fstat to js (James M Snell) #17334 - [
8974df15a9] - (SEMVER-MAJOR) fs: move type checking for fs.close to js (James M Snell) #17334 - [
07d34092b1] - (SEMVER-MAJOR) fs: throw fs.access errors in JS (Joyee Cheung) #17160 - [
ab8bf26994] - (SEMVER-MAJOR) fs,cluster,net: assign error codes to remaining errors (Michaël Zasso) #19373 - [
33ce9a6409] - (SEMVER-MAJOR) http: relax requirements on upgrade listener (Anatoli Papirovski) #19981 - [
29be1e5f84] - (SEMVER-MAJOR) http: do not replace .read() in IncomingMessage (Matteo Collina) #18939 - [
51be03cd57] - (SEMVER-MAJOR) http: remove default 'error' listener on upgrade (Luigi Pinca) #18868 - [
8118da7430] - (SEMVER-MAJOR) http: OutgoingMessage.end() should return this (Matteo Collina) #18780 - [
baf8495078] - (SEMVER-MAJOR) http: process 100, 102-199 according to specs. (Miles Elam) #18033 - [
b961d9fd83] - (SEMVER-MAJOR) http: disallow two-byte characters in URL path (Benno Fünfstück) #16237 - [
0a84e95cd9] - (SEMVER-MAJOR) http: improve errors thrown in header validation (Joyee Cheung) #16719 - [
3d93f39190] - (SEMVER-MAJOR) http2: make response.end() return this (Matteo Collina) #18780 - [
fc61ee32fe] - (SEMVER-MAJOR) http2: use session kUpdateTimer from kUpdateTimer (Jeremiah Senkpiel) #17704 - [
93eb68e6d2] - (SEMVER-MAJOR) http2: use actual Timeout instances (Jeremiah Senkpiel) #17704 - [
4e1f0907da] - (SEMVER-MAJOR) inspector: migrate errors from C++ to JS (Michaël Zasso) #19387 - [
0876a0314d] - (SEMVER-MAJOR) lib: ensure --check flag works with --require (John-David Dalton) #19600 - [
b38c81cb44] - (SEMVER-MAJOR) lib: improve error handling (Ruben Bridgewater) #19445 - [
c6b6c92185] - (SEMVER-MAJOR) lib: always show ERR_INVALID_ARG_TYPE received part (Ruben Bridgewater) #19445 - [
1d2fd8b65b] - (SEMVER-MAJOR) lib: port remaining errors to new system (Michaël Zasso) #19137 - [
1e8d110e64] - (SEMVER-MAJOR) lib: port errors to new system (Michaël Zasso) #19034 - [
341770fedf] - (SEMVER-MAJOR) lib: improve normalize encoding performance (Ruben Bridgewater) #18790 - [
e99ae7764d] - (SEMVER-MAJOR) lib: make console writable and non-enumerable (Ruben Bridgewater) #17708
0 Comments
Log in to join the conversation.No comments yet. Be the first to share your thoughts.