summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
authorRuy Adorno <ruyadorno@hotmail.com>2021-01-21 21:37:00 -0500
committerRuy Adorno <ruyadorno@hotmail.com>2021-01-25 17:16:55 -0500
commit2c0edbc2fcd3bb1a9286dc398b2abaf5e6ba7637 (patch)
treec6d2bb592d5a15009e51c0b57e13ab07826c72e9 /doc/api
parente52e860172a21925ff8a63dd20c12b6d26dbef32 (diff)
downloadnode-new-v15.7.0-proposal.tar.gz
2021-01-26, Version 15.7.0 (Current)v15.7.0v15.7.0-proposal
PR-URL: https://github.com/nodejs/node/pull/37020 Notable changes: * buffer: * introduce Blob (James M Snell) [#36811](https://github.com/nodejs/node/pull/36811) * add base64url encoding option (Filip Skokan) [#36952](https://github.com/nodejs/node/pull/36952) * doc: * add @iansu to collaborators (Ian Sutherland) [#36951](https://github.com/nodejs/node/pull/36951) * add @RaisinTen to collaborators (Darshan Sen) [#36998](https://github.com/nodejs/node/pull/36998) * add @miladfarca to collaborators (Milad Fa) [#36934](https://github.com/nodejs/node/pull/36934) * fs: * allow position parameter to be a BigInt in read and readSync (raisinten) [#36190](https://github.com/nodejs/node/pull/36190) * http: * attach request as res.req (Ian Storm Taylor) [#36505](https://github.com/nodejs/node/pull/36505) * expose urlToHttpOptions utility (Yongsheng Zhang) [#35960](https://github.com/nodejs/node/pull/35960)
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/buffer.md16
-rw-r--r--doc/api/crypto.md2
-rw-r--r--doc/api/http.md2
-rw-r--r--doc/api/http2.md2
-rw-r--r--doc/api/url.md2
5 files changed, 12 insertions, 12 deletions
diff --git a/doc/api/buffer.md b/doc/api/buffer.md
index e80c72251d..d04650ba09 100644
--- a/doc/api/buffer.md
+++ b/doc/api/buffer.md
@@ -50,7 +50,7 @@ const buf7 = Buffer.from('tést', 'latin1');
## Buffers and character encodings
<!-- YAML
changes:
- - version: REPLACEME
+ - version: v15.7.0
pr-url: https://github.com/nodejs/node/pull/36952
description: Introduced `base64url` encoding.
- version: v6.4.0
@@ -289,7 +289,7 @@ Additionally, the [`buf.values()`][], [`buf.keys()`][], and
## Class: `Blob`
<!-- YAML
-added: REPLACEME
+added: v15.7.0
-->
> Stability: 1 - Experimental
@@ -299,7 +299,7 @@ multiple worker threads.
### `new buffer.Blob([sources[, options]])`
<!-- YAML
-added: REPLACEME
+added: v15.7.0
-->
* `sources` {string[]|ArrayBuffer[]|TypedArray[]|DataView[]|Blob[]} An array
@@ -321,7 +321,7 @@ String sources are also copied into the `Blob`.
### `blob.arrayBuffer()`
<!-- YAML
-added: REPLACEME
+added: v15.7.0
-->
* Returns: {Promise}
@@ -331,14 +331,14 @@ the `Blob` data.
### `blob.size`
<!-- YAML
-added: REPLACEME
+added: v15.7.0
-->
The total size of the `Blob` in bytes.
### `blob.slice([start, [end, [type]]])`
<!-- YAML
-added: REPLACEME
+added: v15.7.0
-->
* `start` {number} The starting index.
@@ -350,7 +350,7 @@ data. The original `Blob` is not alterered.
### `blob.text()`
<!-- YAML
-added: REPLACEME
+added: v15.7.0
-->
* Returns: {Promise}
@@ -360,7 +360,7 @@ string.
### `blob.type`
<!-- YAML
-added: REPLACEME
+added: v15.7.0
-->
* Type: {string}
diff --git a/doc/api/crypto.md b/doc/api/crypto.md
index e43f3fa5da..7a8007ba90 100644
--- a/doc/api/crypto.md
+++ b/doc/api/crypto.md
@@ -1286,7 +1286,7 @@ be listed in the `transferList` argument.
### `keyObject.asymmetricKeyDetails`
<!-- YAML
-added: REPLACEME
+added: v15.7.0
-->
* {Object}
diff --git a/doc/api/http.md b/doc/api/http.md
index a93fb3d316..2738431273 100644
--- a/doc/api/http.md
+++ b/doc/api/http.md
@@ -1586,7 +1586,7 @@ response.removeHeader('Content-Encoding');
### `response.req`
<!-- YAML
-added: REPLACEME
+added: v15.7.0
-->
* {http.IncomingMessage}
diff --git a/doc/api/http2.md b/doc/api/http2.md
index 9b13b91a7b..4183e7518e 100644
--- a/doc/api/http2.md
+++ b/doc/api/http2.md
@@ -3439,7 +3439,7 @@ response.removeHeader('Content-Encoding');
### `response.req`
<!-- YAML
-added: REPLACEME
+added: v15.7.0
-->
* {http2.Http2ServerRequest}
diff --git a/doc/api/url.md b/doc/api/url.md
index 3c73a96d74..0a29e4eee4 100644
--- a/doc/api/url.md
+++ b/doc/api/url.md
@@ -1031,7 +1031,7 @@ pathToFileURL('/some/path%.c'); // Correct: file:///some/path%25.c (POSIX)
### `url.urlToHttpOptions(url)`
<!-- YAML
-added: REPLACEME
+added: v15.7.0
-->
* `url` {URL} The [WHATWG URL][] object to convert to an options object.