Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
Closes: #10413
|
|
|
|
|
|
Closes #9932
|
|
Resolves #9447
Resolves #9415
|
|
Fixes #10575
|
|
|
|
|
|
|
|
For the Deno 1.10.2 release.
|
|
|
|
|
|
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(#10574)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This commit upgrade "Worker.postMessage()" implementation to use
structured clone algorithm instead of non-spec compliant JSON serialization.
|
|
Landed without test to meet 1.10.0 deadline. See #10587.
|
|
|
|
|
|
|
|
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.
|