Age | Commit message (Collapse) | Author |
|
|
|
Ref #10897
|
|
|
|
|
|
|
|
|
|
This fixes a regression introduced in 1.9 where test modules became main
modules by side loading them in a generated module.
|
|
|
|
|
|
|
|
Fixes: #11146
Fixes: #11456
Fixes: #10439
|
|
Fixes #11494
|
|
`Deno.core.sharedQueue` was killed in #9843
|
|
This flag does nothing yet. It is added in preparation for the addition
of classic workers.
|
|
The "connection" header should be case insensitive:
https://datatracker.ietf.org/doc/html/rfc7230#section-6.1
|
|
|
|
|
|
Fixes #11476
|
|
Fixes: #11458
Fixes: #11461
Closes: denoland/vscode_deno#414
|
|
|
|
|
|
|
|
|
|
This commit fixes fetch response bodies to be automatically closed if
the `Response.body` readable stream goes out of scope and is GC'ed.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Relevant spec change: https://github.com/w3c/webcrypto/pull/266
|
|
|
|
|
|
|
|
Fixes: #11441
|
|
|
|
|
|
|
|
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
|
|
|
|
|
|
Fixes #11416
|
|
Cookie headers should not be concatenated by commas, rather by
semicolons.
|
|
|
|
|
|
This splits up the reporter into smaller functions, one for each
distinct event that happens during the testing process.
|
|
|
|
|
|
(#11381)
Currently, calling the `abort()` method on a `FileReader` object aborts
any current read operation, but it also prevents any read operation
started at some later point from starting. The File API instead
specifies that calling `abort()` should reset the `FileReader`'s state
and result, as well as removing any queued tasks from the current
operation that haven't yet run.
|