Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-22 | refactor(core): support error stack, remove js_check (#7629) | Bartek Iwańczuk | |
This commit adds support for stack traces in "deno_core". Implementation of "Display" trait for "JsError" has been updated and in consequence "deno_core::js_check" became obsolete and removed. | |||
2020-09-21 | fix: Response.arrayBuffer() doesn't return promise (#7618) | Luca Casonato | |
2020-09-20 | refactor: remove CliState, use OpState, add CliModuleLoader (#7588) | Bartek Iwańczuk | |
- remove "CliState.workers" and "CliState.next_worker_id", instead store them on "OpState" using type aliases. - remove "CliState.global_timer" and "CliState.start_time", instead store them on "OpState" using type aliases. - remove "CliState.is_internal", instead pass it to Worker::new - move "CliState::permissions" to "OpState" - move "CliState::main_module" to "OpState" - move "CliState::global_state" to "OpState" - move "CliState::check_unstable()" to "GlobalState" - change "cli_state()" to "global_state()" - change "deno_core::ModuleLoader" trait to pass "OpState" to callbacks - rename "CliState" to "CliModuleLoader" | |||
2020-09-18 | v1.4.1 | Bert Belder | |
2020-09-18 | publish deno_fetch during CI (#7557) | Ryan Dahl | |
2020-09-18 | refactor: deno_fetch op crate (#7524) | Bartek Iwańczuk | |