Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-09 | fix(cli): suppress 'WSANOTINITIALIZED' error on Deno exit (#7408) | Bert Belder | |
Unblocks: #6901 | |||
2020-09-06 | refactor(core): rename CoreIsolate to JsRuntime (#7373) | Bartek Iwańczuk | |
deno_core/ - rename core_isolate.rs to runtime.rs - rename CoreIsolate to JsRuntime - rename JSError to JsError - rename JSStackFrame to JsStackFrame cli/ - update references from deno_core::CoreIsolate to deno_core::JsRuntime - rename deno_core::JSError to deno_core::JsError - rename fmt_errors::JSError to fmt_errors::JsError | |||
2020-09-06 | Move JSON ops to deno_core (#7336) | Bert Belder | |
2020-07-19 | Upgrade to rusty_v8 0.7.0 (#6801) | Bert Belder | |
2020-06-26 | Upgrade to rusty_v8 0.4.2 / V8 8.5.216 (#6503) | Bert Belder | |
2020-05-29 | refactor: Split isolate and state using safe get_slot() (#5929) | Ryan Dahl | |
2020-05-13 | Make --inspect-brk pause on the first line of _user_ code (#5250) | Bert Belder | |
2020-05-06 | Upgrade to rusty_v8 0.4.2 / V8 8.4.300 (#5113) | Bert Belder | |
2020-05-05 | Fix inspector hanging when task budget is exceeded (#5083) | Bert Belder | |
The issue is solved by proxying websocket messages over a pair of `futures::mpsc::unbounded` channels. As these are are implemented in the 'futures' crate, they can't participate in Tokio's cooperative task yielding. | |||
2020-04-23 | Rename deno_core::Isolate to deno_core::CoreIsolate (#4851) | Ryan Dahl | |
2020-04-18 | store debugger url on DenoInspector (#4793) | Bartek Iwańczuk | |
2020-04-03 | clippy (#4618) | Kitson Kelly | |
2020-04-03 | Make inspector more robust, add --inspect-brk support (#4552) | Bert Belder | |
2020-03-28 | fix(inspector): proper error message on port collision (#4514) | Kevin (Kun) "Kassimo" Qian | |
2020-03-27 | feat: Support Inspector / Chrome Devtools (#4484) | Ryan Dahl | |
This is a first pass implementation which is still missing several important features: - support for --inspect-brk (#4503) - support for source maps (#4501) - support for piping console.log to devtools console (#4502) Co-authored-by: Bert Belder <bertbelder@gmail.com> Co-authored-by: Matt Harrison <mt.harrison86@gmail.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> |