1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/ext
Andreu Botella 1563088f06
fix: a Request whose URL is a revoked blob URL should still fetch (#11947)
In the spec, a URL record has an associated "blob URL entry", which for
`blob:` URLs is populated during parsing to contain a reference to the
`Blob` object that backs that object URL. It is this blob URL entry that
the `fetch` API uses to resolve an object URL.

Therefore, since the `Request` constructor parses URL inputs, it will
have an associated blob URL entry which will be used when fetching, even
if the object URL has been revoked since the construction of the
`Request` object. (The `Request` constructor takes the URL as a string
and parses it, so the object URL must be live at the time it is called.)

This PR adds a new `blobFromObjectUrl` JS function (backed by a new
`op_blob_from_object_url` op) that, if the URL is a valid object URL,
returns a new `Blob` object whose parts are references to the same Rust
`BlobPart`s used by the original `Blob` object. It uses this function to
add a new `blobUrlEntry` field to inner requests, which will be `null`
or such a `Blob`, and then uses `Blob.prototype.stream()` as the
response's body. As a result of this, the `blob:` URL resolution from
`op_fetch` is now useless, and has been removed.
2021-09-08 11:29:21 +02:00
..
broadcast_channel chore: update dependencies (#11856) 2021-09-02 23:38:44 +02:00
console feat: ArrayBuffer in structured clone transfer (#11840) 2021-08-25 13:48:53 +02:00
crypto feat(fmt): add basic JS doc formatting (#11902) 2021-09-02 18:28:12 -04:00
fetch fix: a Request whose URL is a revoked blob URL should still fetch (#11947) 2021-09-08 11:29:21 +02:00
ffi chore: update dependencies (#11856) 2021-09-02 23:38:44 +02:00
http fix(ext/http): resource leak if request body is not consumed (#11955) 2021-09-08 10:12:23 +02:00
net docs(ext/net): add note about listening 0.0.0.0 (#11938) 2021-09-07 16:26:21 +09:00
timers feat(fmt): add basic JS doc formatting (#11902) 2021-09-02 18:28:12 -04:00
tls chore: update dependencies (#11856) 2021-09-02 23:38:44 +02:00
url feat: add URLPattern API (#11941) 2021-09-08 11:14:29 +02:00
web fix: a Request whose URL is a revoked blob URL should still fetch (#11947) 2021-09-08 11:29:21 +02:00
webgpu feat(fmt): add basic JS doc formatting (#11902) 2021-09-02 18:28:12 -04:00
webidl refactor(webgpu): use op interface idiomatically (#11835) 2021-08-24 20:32:25 +02:00
websocket chore: update dependencies (#11856) 2021-09-02 23:38:44 +02:00
webstorage chore: update dependencies (#11856) 2021-09-02 23:38:44 +02:00