Age | Commit message (Collapse) | Author |
|
|
|
|
|
(#10573)
Fixes: #10561
|
|
Ref: #10368
|
|
|
|
|
|
|
|
|
|
|
|
In #9118, TLS streams were split into a "read half" and a "write half"
using tokio::io::split() to allow concurrent Conn#read() and
Conn#write() calls without one blocking the other. However, this
introduced a bug: outgoing data gets discarded when the TLS stream is
gracefully closed, because the read half is closed too early, before all
TLS control data has been received.
Fixes: #9692
Fixes: #10049
Fixes: #10296
Fixes: denoland/deno_std#750
|
|
This commit adds support for type checking codeblocks in the JS doc
comments.
|
|
|
|
|
|
(#10481)
Currently file passed to --config file is parsed using TsConfig structure
that does multiple things when loading the file. Instead of relying on that
structure I've introduced ConfigFile structure that can be updated to
sniff out more fields from the config file in the future.
|
|
|
|
|
|
This commit introduces localStorage and sessionStorage.
|
|
|
|
|
|
This commit implements file watching for deno test.
When a file is changed, only the test modules which
use it as a dependency are rerun.
This is accomplished by reworking the file watching infrastructure
to pass the paths which have changed to the resolver, and then
constructing a module graph for each test module to check if it
contains any changed files.
|
|
Ref #8643
|
|
|
|
|
|
|
|
Remove a function that was forgotten in commit 2638aa03a5 from January.
|
|
|
|
|
|
|
|
|
|
Resolves #10518
|
|
|
|
(#10448)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Co-authored-by: Luca Casonato <lucacasonato@yahoo.com>
|
|
gfx_ok macros (#10044)
|
|
|
|
|