Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-12-10 | Use stderr for exceptions (#1303) | Ryan Dahl | |
2018-12-07 | Don't crash when .mime file not exist in cache (#1291) | Kevin (Kun) "Kassimo" Qian | |
2018-12-06 | Process source maps in Rust instead of JS (#1280) | Ryan Dahl | |
- Improves speed and binary size significantly. - Makes deno_last_exception() output a JSON structure. - Isolate::execute and Isolate::event_loop now return structured, mapped JSError objects on errors. - Removes libdeno functions: libdeno.setGlobalErrorHandler() libdeno.setPromiseRejectHandler() libdeno.setPromiseErrorExaminer() In collaboration with Ryan Dahl. | |||
2018-11-30 | clippy fixes (#1250) | Andy Hayden | |
2018-11-29 | Replace mutex by atomics (#1238) | F001 | |
2018-11-16 | Support shebang | Ryan Dahl | |
2018-11-16 | Simplify NotFound code. | Ryan Dahl | |
2018-11-08 | Local filenames starting with 'http' shouldn't be remote. (#1167) | Ryan Dahl | |
2018-11-06 | Fix many of the clippy::pedantic warnings | Andy Hayden | |
2018-11-04 | Fix clippy warnings (#1149) | Andy Hayden | |
Run with: cargo clippy https://github.com/rust-lang-nursery/rust-clippy | |||
2018-10-29 | Separate source map from output code. | Kitson Kelly | |
2018-10-28 | Add application/x-typescript mime type support | Kevin (Kun) "Kassimo" Qian | |
2018-10-26 | Add separate http/https cache dirs to DENO_DIR (#971) | Kevin (Kun) "Kassimo" Qian | |
Also change remote relative import logic. | |||
2018-10-23 | Enforce media types | Kitson Kelly | |
2018-10-10 | src/http.rs -> src/http_util.rs | Ryan Dahl | |
So as not to conflict with http crate. | |||
2018-10-02 | Guess extensions on extension not provided (#859) | Kevin (Kun) "Kassimo" Qian | |
Fixes #857 | |||
2018-09-25 | Use lazy_static for HttpsConnector | Ryan Dahl | |
And rename net.rs to http.rs Share HTTP connection. | |||
2018-09-16 | Use `dirs::home_dir` to replace deprecated `std::env::home_dir` | Kevin (Kun) "Kassimo" Qian | |
2018-09-14 | [fs] Enable mode for `mkdir` on unix (#746) | Kevin (Kun) "Kassimo" Qian | |
2018-09-11 | Move writeFileSync to write_file.ts, add writeFile and tests (#728) | Kevin (Kun) "Kassimo" Qian | |
2018-09-09 | Better NotFound error handling in CodeFetch | Ryan Dahl | |
throwResolutionError was swallowing unrelated errors. | |||
2018-09-05 | Improve module resolution. | Ryan Dahl | |
Windows can't handle ":" in path names, so we use a special directory format .deno/deps/localhost_PORT4545/ to represent hosts with non-default ports. Fixes #645. | |||
2018-08-30 | Support https imports. | Ryan Dahl | |
Adds hyper-rustls to the build. Use ring for sha1 instead of "ssh1" crate. Fixes #528. | |||
2018-08-26 | Replaced read_file_sync{_string} with std::fs::read{_to_string} | Aaron Power | |
2018-08-23 | Normalize windows paths. | Ryan Dahl | |
Add resolve_module test | |||
2018-08-23 | First pass at HTTP imports | Ryan Dahl | |
Implement --reload Integrate hyper errors into DenoError In collaboration with Tommy Savaria <tommy.savaria@protonmail.ch> | |||
2018-08-21 | Better error handling in src/handlers.rs | Ryan Dahl | |
Introduces error codes that are shared between JS/RS Fixes #526. | |||
2018-08-09 | Add fs::read_file_sync_string | Ryan Dahl | |
2018-08-08 | Organize libdeno functions. | Ryan Dahl | |
2018-08-08 | Hacky error handling for Url::from_file_path. | Ryan Dahl | |
2018-08-02 | Update repo links to denoland. | Ryan Dahl | |
2018-07-29 | Implement CodeCache | Ryan Dahl | |