You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Older experimental APIs have been removed.
[[`d731369b1d`](d731369b1d)]
[#14414](#14414)
* **Errors**
* Improvements have been made to `buffer` module error messages.
* The assignment of static error codes to Node.js error continues:
* `buffer`
* `child_process`
* `console`
* `crypto`
* `dns`
* `events`
* `fs`
* `http`
* `inspector`
* `net`
* `path`
* `process`
* `querystring`
* `readline`
* `repl`
* `streams`
* `string_decoder`
* `timers`
* `tls`
* `url`
* `util`
* `v8`
* `zlib`
* **Child Processes**
* Errors are emitted on process nextTick.
* **Domains**
* The long-deprecated `.dispose()` method has been removed.
* **fs**
* The `fs.ReadStream` and `fs.WriteStream` classes now use `destroy()`.
* `fs` module callbacks are now invoked with an undefined context.
* **HTTP/1**
* A 400 Bad Request response will now be sent when parsing fails.
* Socket timeout will be set when the socket connects.
* A bug causing the request `'error'` event to fire twice was fixed.
* HTTP clients may now use generic `Duplex` streams in addition to `net.Socket`.
* **Intl**
* The deprecated `Intl.v8BreakIterator` has been removed.
* **Modules**
* The `require.resolve()` method now supports using custom lookup paths.
* **OS**
* The `os.EOL` property is now read-only.
* **Timers**
* `setTimeout()` will emit a warning if the timeout is larger that the maximum
32-bit unsigned integer.
Copy file name to clipboardexpand all lines: doc/changelogs/CHANGELOG_V6.md
+3-2
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,7 @@
43
43
</table>
44
44
45
45
* Other Versions
46
+
* [9.x](CHANGELOG_V9.md)
46
47
* [8.x](CHANGELOG_V8.md)
47
48
* [7.x](CHANGELOG_V7.md)
48
49
* [5.x](CHANGELOG_V5.md)
@@ -78,7 +79,7 @@ This LTS release comes with 91 commits. This includes 29 which are test related,
78
79
79
80
### Notable Changes
80
81
81
-
* **net**:
82
+
* **net**:
82
83
- support passing undefined to listen() to match behavior in v4.x and v8.x (Sam Roberts) [#14234](https://github.com/nodejs/node/pull/14234)
83
84
84
85
### Commits
@@ -164,7 +165,7 @@ This LTS release comes with 91 commits. This includes 29 which are test related,
164
165
* [[`c88f99f1f3`](https://github.com/nodejs/node/commit/c88f99f1f3)] - **test**: improvements to various http tests (James M Snell) [#14315](https://github.com/nodejs/node/pull/14315)
165
166
* [[`860c6198c0`](https://github.com/nodejs/node/commit/860c6198c0)] - **test**: use ciphers supported by shared OpenSSL (Jérémy Lal) [#14566](https://github.com/nodejs/node/pull/14566)
0 commit comments