Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |||
2019-12-05 | v0.26.0 | Ryan Dahl | |
2019-12-05 | Revert "Synchronize deno and deno_std versions" (#3446) | Ry Dahl | |
Preventing release v0.26.0 This reverts commit 81efa9d938aa169d16e67762d336d75738375cd6. | |||
2019-12-05 | feat: first pass at native plugins (#3372) | Andy Finch | |
2019-12-04 | fix depot_tools on macOS Catalina by upgrading it to 23247b9 (#3441) | Christian Moritz | |
Fixes: #3440 Fixes: #3153 | |||
2019-12-03 | Timer/microtask ordering fix (#3439) | Kevin (Kun) "Kassimo" Qian | |
2019-12-03 | feat: Add --no-remote, rename --no-fetch to --cached-only (#3417) | Nayeem Rahman | |
2019-12-03 | remove duplicated argv member from ThreadSafeGlobalState (#3433) | Ry Dahl | |
2019-12-03 | fix some typos in permissions (#3436) | Andy Finch | |
2019-12-02 | better html for file_server (#3423) | 木杉 | |
2019-12-02 | disable eager polling for ops (#3434) | Bartek Iwańczuk | |
2019-12-02 | Update .gitignore | Vincent LE GOFF | |
2019-12-01 | fix realpath behavior in windows (#3425) | 木杉 | |
2019-11-29 | synchronize deno and deno_std versions (#3415) | Axetroy | |
2019-11-27 | Revert "update deno_core_http_bench to Tokio 0.2 (#3408)" | Ry Dahl | |
It seems this has caused CI to go red for an unknown reason. This reverts commit 866dba8aa116677143a354af7f3271e4f9c417e1. | |||
2019-11-26 | Tweaks to arg_hacks and add v8-flags to repl (#3409) | Kevin (Kun) "Kassimo" Qian | |
2019-11-26 | update deno_core_http_bench to Tokio 0.2 (#3408) | Bartek Iwańczuk | |
2019-11-26 | v0.25.0 | Ryan Dahl | |
2019-11-26 | better error messages for 'relative import path not prefixed with / or ./ or ↵ | Bartek Iwańczuk | |
../' (#3405) | |||
2019-11-26 | feat: add ignore parser for std/prettier (#3399) | Axetroy | |
2019-11-26 | refactor: reorganize flags (#3389) | Ry Dahl | |
- Remove ability to specify run arguments like `--allow-net` after the script argument. It's too hacky to make work with clap. - Remove `--v8-options`, instead use `--v8-flags=--help` - Give more descriptive names to unit tests in flags.rs - Assume argv and subcommand into DenoFlags struct so the output of flags module is only DenoFlags rather than the tuple (subcommand, flags, argv). - Improve CLI help text - Make `deno run` specific args like `--allow-net` only show up in 'deno help run' instead of as global flags in `deno help`. - Removes `deno version` to simplify our implementation and be closer to clap defaults. `deno -V` now only shows Deno's version and not V8's nor TypeScript. `Deno.versions` can be used to see that information. - Prevent clap from auto-detecting terminal width and attempting to wrap text. | |||
2019-11-26 | Add Deno.realpath (#3404) | Kevin (Kun) "Kassimo" Qian | |
2019-11-25 | better error message for missing module (#3402) | Bartek Iwańczuk | |
2019-11-24 | refactor: Elevate DenoPermissions lock to top level (#3398) | Kevin (Kun) "Kassimo" Qian | |
2019-11-24 | Make private namespaces in lib.deno_runtime.d.ts more private (#3400) | Kitson Kelly | |
2019-11-22 | remove tokio_util::block_on (#3388) | Bartek Iwańczuk | |
This PR removes tokio_util::block_on - refactored compiler and file fetcher slightly so that we can safely block there - that's because only blocking path consist of only synchronous operations. Additionally I removed excessive use of tokio_util::panic_on_error and tokio_util::run_in_task and moved both functions to cli/worker.rs, to tests module. Closes #2960 | |||
2019-11-22 | minor clean ups in TS compiler (#3394) | Bartek Iwańczuk | |
2019-11-20 | feat: Support named exports on bundles. (#3352) | Kitson Kelly | |
2019-11-19 | remove tokio_util::block_on from ops/workers.rs (#3381) | Bartek Iwańczuk | |
2019-11-19 | std/node: add some Node.js polyfill to require() (#3382) | Kevin (Kun) "Kassimo" Qian | |
2019-11-19 | fix: use AF_INET6 in ./tools/http_server.py (#3374) | Bartek Iwańczuk | |
2019-11-19 | feat(std/node) add CommonJS require (#3380) | Kevin (Kun) "Kassimo" Qian | |
2019-11-18 | chore: improve examples (#3377) | Ry Dahl | |