Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
Fixes #10695
|
|
|
|
|
|
|
|
|
|
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
|