diff options
| author | Beth Griggs <Bethany.Griggs@uk.ibm.com> | 2020-04-27 21:01:35 +0100 |
|---|---|---|
| committer | Beth Griggs <Bethany.Griggs@uk.ibm.com> | 2020-04-29 16:41:52 +0100 |
| commit | 9ffd8e7a7414052834bfedb0daba68d5c8363884 (patch) | |
| tree | e6dc28b6315ef8c417f59669121d5591c6790546 /doc/api | |
| parent | ae157b8ca79ad26a3fb69f1e72ab4df0718aa811 (diff) | |
| download | node-new-v14.1.0-proposal.tar.gz | |
2020-04-29, Version 14.1.0 (Current)v14.1.0v14.1.0-proposal
Notable changes:
- deps: upgrade openssl sources to 1.1.1g (Hassaan Pasha)
[#32971](https://github.com/nodejs/node/pull/32971)
- doc: add juanarbol as collaborator (Juan José Arboleda)
[#32906](https://github.com/nodejs/node/pull/32906)
- http: doc deprecate abort and improve docs (Robert Nagy)
[#32807](https://github.com/nodejs/node/pull/32807)
- module: do not warn when accessing `__esModule` of unfinished exports
(Anna Henningsen) [#33048](https://github.com/nodejs/node/pull/33048)
- n-api: detect deadlocks in thread-safe function (Gabriel Schulhof)
[#32860](https://github.com/nodejs/node/pull/32860)
- src: deprecate embedder APIs with replacements (Anna Henningsen)
[#32858](https://github.com/nodejs/node/pull/32858)
- stream:
- don't emit end after close (Robert Nagy)
[#33076](https://github.com/nodejs/node/pull/33076)
- don't wait for close on legacy streams (Robert Nagy)
[#33058](https://github.com/nodejs/node/pull/33058)
- pipeline should only destroy un-finished streams (Robert Nagy)
[#32968](https://github.com/nodejs/node/pull/32968)
- vm: add importModuleDynamically option to compileFunction (Gus Caplan)
[#32985](https://github.com/nodejs/node/pull/32985)
PR-URL: https://github.com/nodejs/node/pull/33103
Diffstat (limited to 'doc/api')
| -rw-r--r-- | doc/api/deprecations.md | 2 | ||||
| -rw-r--r-- | doc/api/http.md | 4 | ||||
| -rw-r--r-- | doc/api/https.md | 2 | ||||
| -rw-r--r-- | doc/api/n-api.md | 2 | ||||
| -rw-r--r-- | doc/api/tls.md | 2 | ||||
| -rw-r--r-- | doc/api/vm.md | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md index fb5f9a7fdd..fd39c628d7 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -2657,7 +2657,7 @@ API. ### DEP0140: Use `request.destroy()` instead of `request.abort()` <!-- YAML changes: - - version: REPLACEME + - version: v14.1.0 pr-url: https://github.com/nodejs/node/pull/32807 description: Documentation-only deprecation. --> diff --git a/doc/api/http.md b/doc/api/http.md index 0616cdb415..f068047e4c 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -568,7 +568,7 @@ server.listen(1337, '127.0.0.1', () => { ### `request.abort()` <!-- YAML added: v0.3.8 -deprecated: REPLACEME +deprecated: v14.1.0 --> Marks the request as aborting. Calling this will cause remaining data @@ -640,7 +640,7 @@ See [`writable.destroy()`][] for further details. #### `request.destroyed` <!-- YAML -added: REPLACEME +added: v14.1.0 --> * {boolean} diff --git a/doc/api/https.md b/doc/api/https.md index f62f4dd255..e0fd793fa3 100644 --- a/doc/api/https.md +++ b/doc/api/https.md @@ -240,7 +240,7 @@ Global instance of [`https.Agent`][] for all HTTPS client requests. <!-- YAML added: v0.3.6 changes: - - version: REPLACEME + - version: v14.1.0 pr-url: https://github.com/nodejs/node/pull/32786 description: The `highWaterMark` option is accepted now. - version: v10.9.0 diff --git a/doc/api/n-api.md b/doc/api/n-api.md index 91f3aeb870..5552aaf57b 100644 --- a/doc/api/n-api.md +++ b/doc/api/n-api.md @@ -5271,7 +5271,7 @@ This API may be called from any thread which makes use of `func`. added: v10.6.0 napiVersion: 4 changes: - - version: REPLACEME + - version: v14.1.0 pr-url: https://github.com/nodejs/node/pull/32689 description: > Return `napi_would_deadlock` when called with `napi_tsfn_blocking` from diff --git a/doc/api/tls.md b/doc/api/tls.md index 8e5d4d4877..090ffcf72c 100644 --- a/doc/api/tls.md +++ b/doc/api/tls.md @@ -1280,7 +1280,7 @@ being issued by trusted CA (`options.ca`). <!-- YAML added: v0.11.3 changes: - - version: REPLACEME + - version: v14.1.0 pr-url: https://github.com/nodejs/node/pull/32786 description: The `highWaterMark` option is accepted now. - version: diff --git a/doc/api/vm.md b/doc/api/vm.md index dc210b1c42..f45b537368 100644 --- a/doc/api/vm.md +++ b/doc/api/vm.md @@ -782,7 +782,7 @@ const vm = require('vm'); <!-- YAML added: v10.10.0 changes: - - version: REPLACEME + - version: v14.1.0 pr-url: https://github.com/nodejs/node/pull/32985 description: The `importModuleDynamically` option is now supported. --> |
