| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-10-15 | refactor: Add default implementation for WorkerOptions (#14860) | Christian Dürr | |
| This adds an implementation of `Default` for both `WorkerOptions` and `BootstrapOptions`. Since both of these structs are rather big, this should make it easier for people unfamiliar with the internals to focus on the options relevant to them. As a user of `deno_runtime` I feel like these should serve as good defaults, getting people them started without having to tweak the runtime. Additionally even if some changes are made, the usage of `..Default::default()` will significantly help with code clarity and verbosity. | |||
| 2022-09-17 | perf(ext/console): avoid `wrapConsole` when not inspecting (#15931) | Divy Srivastava | |
| 2022-05-14 | feat: add userAgent property to Navigator's prototype (#14415) | randomicon00 | |
| 2022-04-15 | refactor: Move source map lookups to core (#14274) | Nayeem Rahman | |
| The following transformations gradually faced by "JsError" have all been moved up front to "JsError::from_v8_exception()": - finding the first non-"deno:" source line; - moving "JsError::script_resource_name" etc. into the first error stack in case of syntax errors; - source mapping "JsError::script_resource_name" etc. when wrapping the error even though the frame locations are source mapped earlier; - removing "JsError::{script_resource_name,line_number,start_column,end_column}" entirely in favour of "js_error.frames.get(0)". We also no longer pass a js-side callback to "core/02_error.js" from cli. I avoided doing this on previous occasions because the source map lookups were in an awkward place. | |||
| 2022-03-01 | fix(runtime): disable console color for non tty stdout (#13782) | Antonio Musolino | |
| 2021-10-05 | refactor(runtime): Worker bootstrap options (#12299) | Aaron O'Mullan | |
