Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-01-02 | fix typos (#3573) | EnokMan | |
2020-01-01 | cleanup after tokio upgrade (#3571) | Gurwinder Singh | |
tokio_util::run and tokio::run_on_current_thread should accept Future<Output=()> instead of Future<Output=Result<(), ()>>. Currently, all the passed futures have to add Ok(()) or futures::future::ok(()) unnecessarily to call this method. | |||
2019-12-31 | refactor: move HttpBody to cli/http_util.rs (#3569) | Bartek Iwańczuk | |
2019-12-30 | bump reqwest to 0.10.0 (#3567) | Bartek Iwańczuk | |
2019-12-30 | use shared HTTP client (#3563) | Bartek Iwańczuk | |
This commit moves HTTP client to lazy_static. Effectively HTTP client is shared by whole Deno process and will reuse connections. | |||
2019-12-30 | upgrade: Tokio 0.2 (#3418) | Bartek Iwańczuk | |
2019-12-30 | net: expose shutdown TS def (#3560) | Kevin (Kun) "Kassimo" Qian | |
2019-12-29 | net: expose shutdown() and ShutdownMode (#3558) | Kevin (Kun) "Kassimo" Qian | |
2019-12-28 | Fix: allow reading into a 0-length array (#3329) | Alexandre Szymocha | |
2019-12-24 | doc: Update and improve build instructions (#3547) | Nayeem Rahman | |
2019-12-24 | Drop unnecessary Object.assign from createResolvable() (#3548) | Kevin (Kun) "Kassimo" Qian | |
2019-12-23 | Upgrades rust to 1.40.0 (#3542) | Axetroy | |
2019-12-23 | std: remove wildcard export in uuid module (#3540) | Axetroy | |
2019-12-21 | feat: Add Deno.dir("executable") (#3526) | Nayeem Rahman | |
2019-12-21 | fix: Use sync ops when clearing the console (#3533) | Nayeem Rahman | |
2019-12-21 | fix(std/encoding/yaml): support document separator in parseAll (#3535) | Yoshiya Hinosawa | |
2019-12-20 | feat: Return null on error in Deno.dir() (#3531) | Nayeem Rahman | |
2019-12-20 | feat: Add missing mod.ts files in std (#3509) | Nayeem Rahman | |
std/archive/tar.ts: - Remove FileReader. - Remove FileWriter. std/encoding/csv.ts: - ExtendedParseOptions -> ParseOptions - HeaderOption -> HeaderOptions - ParseOptions -> ReadOptions - readAll() -> readMatrix() std/encoding/yaml.ts: - DumpOptions -> StringifyOptions std/fmt/colors.ts: - getEnabled() -> getColorEnabled() - setEnabled() -> setColorEnabled() std/testing/mod.ts: - Re-export sibling modules. | |||
2019-12-20 | docs(std/encoding/yaml): add usage document (#3529) | Yoshiya Hinosawa | |
2019-12-20 | repl: do not crash on async op reject (#3527) | Kevin (Kun) "Kassimo" Qian | |
2019-12-18 | v0.27.0 | Ryan Dahl | |
2019-12-18 | fix permission errors are swallowed by fs.copy() (#3504) | Axetroy | |
2019-12-18 | fix code example (#3519) | Christian Bromann | |
2019-12-18 | Reduce all directory functions to Deno.dir() (#3518) | Ry Dahl | |
2019-12-18 | Improve empty test case error messages (#3514) | Yoshiya Hinosawa | |
2019-12-18 | fix permission errors are swallowed by fs.emptyDir (#3501) | Axetroy | |
2019-12-15 | feat: show detailed version with --version (#3507) | Yoshiya Hinosawa | |
2019-12-15 | upgrade: tokio 0.2 in deno_core_http_bench, take2 (#3435) | Bartek Iwańczuk | |
2019-12-15 | std/node: better error message for read perm in require() (#3502) | Kevin (Kun) "Kassimo" Qian | |
2019-12-15 | Feat: Add more dir APIs for Deno (#3491) | Axetroy | |
2019-12-15 | Use async-await at few places, fix spelling mistake (#3499) | Gurwinder Singh | |
2019-12-14 | fetch support URL instance as input (#3496) | Axetroy | |
2019-12-14 | Support utf8 in file_server (#3495) | 木杉 | |
2019-12-14 | feat(file_server): add help & switch to flags (#3489) | 木杉 | |
2019-12-14 | flag: upgrade std to v0.26.0 (#3492) | Axetroy | |
2019-12-13 | fix permission errors are swallowed by fs.exists (#3493) | Axetroy | |
2019-12-12 | file_server: get file and fileInfo concurrently (#3486) | Weijia Wang | |
2019-12-12 | fix: file_server swallowing permission errors (#3467) | 木杉 | |
2019-12-12 | benchmark: align deno_http and node_http response (#3484) | Kevin (Kun) "Kassimo" Qian | |
2019-12-12 | fix v8-flags example to manual (#3470) | dnalborczyk | |
2019-12-12 | fix(std/http): close connection on .respond() error (#3475) | Kevin (Kun) "Kassimo" Qian | |
2019-12-12 | fix: Only swallow NotFound errors in std/fs/expandGlob() (#3479) | Nayeem Rahman | |
2019-12-11 | Fix release assets not being executable (#3480) | Andy Hayden | |
2019-12-10 | fix: decoding uri in file_server (#3187) | AleksandrukTad | |
2019-12-10 | timer: due/now Math.max instead of min (#3477) | Kevin (Kun) "Kassimo" Qian | |
2019-12-10 | Disable flaky plugin test on windows (#3474) | Ry Dahl | |
2019-12-08 | fix(installer): installs to the wrong directory on Windows (#3462) | 木杉 | |
Close: #3443 | |||
2019-12-08 | Replace deprecated GetContent with GetBackingStore (#3458) | Kevin (Kun) "Kassimo" Qian | |
2019-12-08 | fix: plugin ops should change op count metrics (#3455) | Luca Casonato | |
2019-12-08 | fix isolate tests (#3459) | Bartek Iwańczuk | |
Some tests were silently failing after #3358 and #3434 because pool.spawn_ok was used which doesn't panic on errors. For reference, the failure looked like this: thread '<unnamed>' panicked at 'assertion failed: match isolate.poll_unpin(cx) { Poll::Ready(Ok(_)) => true, _ => false, }', core/isolate.rs:1408:7 |