Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-02-25 | feat(runtime): stabilize Deno.link and Deno.linkSync (#9417) | Casper Beyer | |
This commit makes "Deno.link" and "Deno.linkSync" stable. The permission required has been changed to read-write to ensure one cannot escape the sandbox. | |||
2021-02-25 | feat(runtime): stabilise permissions and add event target capabilities (#9573) | Kitson Kelly | |
2021-01-12 | feat: stabilize Deno.shutdown() and Conn#closeWrite() | Bartek Iwańczuk | |
Closes: #9099 | |||
2021-01-11 | chore: update copyright to 2021 (#9092) | Yusuke Tanaka | |
2021-01-01 | refactor(cli): runtime compiler APIs consolidated to Deno.emit() (#8799) | Kitson Kelly | |
Closes: #4752 | |||
2020-11-28 | chore: clippy future cleanups (#8514) | Kitson Kelly | |
2020-11-09 | refactor(cli): remove unnecessary format! calls (#8315) | KNnut | |
2020-11-02 | refactor(cli): migrate runtime compile/bundle to new infrastructure (#8192) | Kitson Kelly | |
Fixes #8060 | |||
2020-10-28 | fix(cli): restore tripleslash lib refs support (#8157) | Kitson Kelly | |
Fixes #8147 | |||
2020-10-26 | feat(unstable): add Deno.systemCpuInfo() (#7774) | Elias Sjögreen | |
2020-10-20 | feat: stabilize Deno.fsync and Deno.fdatasync (#8038) | Casper Beyer | |
2020-10-14 | refactor(cli): add tsc2 (#7942) | Kitson Kelly | |
Ref #7225 | |||
2020-09-21 | refactor: use futures and serde_json from deno_core (#7614) | Bartek Iwańczuk | |
2020-09-12 | chore: add systemMemoryInfo unstable diagnostic (#7435) | Luca Casonato | |
2020-09-12 | refactor: improve tsc diagnostics (#7420) | Kitson Kelly | |
2020-07-28 | chore: use matches macro for bool matches (#6904) | Kitson Kelly | |
2020-07-26 | chore: remove TODO about manual JSON parsing (#6878) | Trivikram Kamat | |
2020-06-29 | refactor: util functions take slices instead of heap values (#6547) | Valentin Anger | |
2020-05-16 | fix some unwrap() in Rust (#5485) | Yiyu Lin | |
2020-05-09 | refactor(cli): unify display of errors from Rust and JS (#5183) | Bartek Iwańczuk | |
2020-05-05 | refactor(ts): remove op_cache (#5071) | Bartek Iwańczuk | |
This PR removes op_cache and refactors how Deno interacts with TS compiler. Ultimate goal is to completely sandbox TS compiler worker; it should operate on simple request -> response basis. With this commit TS compiler no longer caches compiled sources as they are generated but rather collects all sources and sends them back to Rust when compilation is done. Additionally "Diagnostic" and its children got refactored to use "Deserialize" trait instead of manually implementing JSON deserialization. | |||
2020-04-20 | refactor(cli/fmt_errors): Improve source line formatting (#4832) | Nayeem Rahman | |
2020-04-13 | refactor(core/js_error): Align JSStackFrame with CallSite (#4715) | Nayeem Rahman | |
Renames and adds missing fields to JSStackFrame from CallSite. Fixes #4705. Cleans up base changes for line and column numbers. | |||
2020-04-03 | clippy (#4618) | Kitson Kelly | |
2020-02-24 | feat: Add Deno.formatDiagnostics (#4032) | Kitson Kelly | |
2020-01-02 | Happy new year! (#3578) | Ry Dahl | |
2019-09-17 | Update to TypeScript 3.6.3 (#2969) | Kitson Kelly | |
2019-09-15 | Rename ansi.rs to colors.rs (#2956) | Tomohito Nakayama | |
2019-07-11 | Refactor error to use dynamic dispatch and traits | Bert Belder | |
This is in preperation for dynamic import (#1789), which is more easily implemented when errors are dynamic. | |||
2019-06-19 | Combine CLI Errors (#2487) | Kitson Kelly | |
2019-06-04 | Handle compiler diagnostics in Rust (#2445) | Kitson Kelly | |