summaryrefslogtreecommitdiff
path: root/core/bindings.rs
AgeCommit message (Expand)Author
2022-01-07chore: update copyright to 2022 (#13306)Ryan Dahl
2021-12-18refactor: use `once_cell` instead of `lazy_static` (#13135)Divy Srivastava
2021-12-15feat: Add support for import assertions and JSON modules (#12866)Bartek Iwańczuk
2021-12-12fix(core): improve error on invalid op id (#13056)Bartek Iwańczuk
2021-12-03fix(core): throw on invalid callConsole args (#12973)Aaron O'Mullan
2021-11-28feat(core): intercept unhandled promise rejections (#12910)Ben Noordhuis
2021-11-25feat(core): Add ability to "ref" and "unref" pending ops (#12889)Bartek Iwańczuk
2021-11-16feat(core): Deno.core.setNextTickCallback (#12771)Bartek Iwańczuk
2021-11-16refactor: re-export anyhow from deno_core (#12777)Ryan Dahl
2021-11-08feat(compat): add .code to dyn import error (#12633)Yoshiya Hinosawa
2021-11-02chore: update to Rust edition 2021 (#12578)Bartek Iwańczuk
2021-10-27chore: update to rusty_v8 0.33.0 (#12564)Luca Casonato
2021-10-24fix(core): avoid op_state.borrow_mut() for OpsTracker (#12525)Aaron O'Mullan
2021-10-19fix(core/bindings): use is_instance_of_error() instead of is_native_error() (...Nayeem Rahman
2021-10-10refactor(metrics): move to core (#12386)Aaron O'Mullan
2021-10-05feat(core): native binding names (#12290)Aaron O'Mullan
2021-10-04refactor(core): split opcall into sync/async (#12312)Aaron O'Mullan
2021-10-01feat(core): implement Deno.core.isProxy() (#12288)Aaron O'Mullan
2021-09-29feat: support serializing `WebAssembly.Module` objects (#12140)Andreu Botella
2021-09-13refactor(core): Turn the `wasm_streaming_feed` binding into ops (#11985)Andreu Botella
2021-08-25feat: ArrayBuffer in structured clone transfer (#11840)Luca Casonato
2021-08-15refactor(ops): return BadResource errors in ResourceTable calls (#11710)Aaron O'Mullan
2021-08-09feat(extensions/web): add structuredClone function (#11572)Leo K
2021-07-30chore: upgrade Rust to 1.54.0 (#11554)Yusuke Tanaka
2021-07-08perf(core): avoid extra alloc in Deno.core.encode() (#11323)Aaron O'Mullan
2021-07-06feat: support SharedArrayBuffer sharing between workers (#11040)Luca Casonato
2021-07-03feat: enable WebAssembly.instantiateStreaming and wasm async compilation (#11...Andreu Botella
2021-06-29fix(core/modules): Fix concurrent loading of dynamic imports (#11089)Nayeem Rahman
2021-06-27feat(inspector): pipe console messages between terminal and inspector (#11134)Bartek Iwańczuk
2021-06-26fix: MessagePort in message for postMessage transfers (#11103)Luca Casonato
2021-06-17chore: upgrade Rust to 1.53.0 (#11021)Yusuke Tanaka
2021-06-06tests: run wpt scripts with Deno.core.evalContext (#10852)Luca Casonato
2021-05-19refactor(core): move ModuleMap to separate RefCell (#10656)Bartek Iwańczuk
2021-05-11feat(runtime/worker): Structured cloning worker message passing (#9323)Tim Ramlot
2021-05-06refactor(ops): replace `ZeroCopyBuf` arg by 2nd generic deserializable arg (#...Aaron O'Mullan
2021-05-02refactor(core): convert core.print() to a builtin op (#10436)Aaron O'Mullan
2021-05-01fix(core): fix typo in error message of print function (#10456)Aditya Pandit
2021-04-30cleanup(core): use ZeroCopyBuf for serialize & encode bindings (#10435)Aaron O'Mullan
2021-04-30cleanup(core): replace OpResponse with OpResult (#10434)Aaron O'Mullan
2021-04-23refactor(core): rename send() to opcall() (#10307)Aaron O'Mullan
2021-04-21refactor(core): kill recv() and init() (#10299)Aaron O'Mullan
2021-04-18refactor(core): remove ZeroCopyBuf's dep on the bindings mod (#10232)Aaron O'Mullan
2021-04-12feat: Add Deno.memoryUsage() (#9986)Aaron O'Mullan
2021-04-11core: avoid async op future reboxing to bundle PromiseId (#10123)Aaron O'Mullan
2021-04-04perf(serde_v8): introduce Serializable boxable object (#9983)Aaron O'Mullan
2021-03-31refactor: new optimized op-layer using serde_v8 (#9843)Aaron O'Mullan
2021-03-26remove macro_use (#9884)Ryan Dahl
2021-03-26refactor(core): simplify heapStats() by using serde_v8 (#9901)Aaron O'Mullan
2021-03-25Introduce serde_v8 (#9722)Aaron O'Mullan
2021-03-23feat(core): Deno.core.heapStats() (#9659)Aaron O'Mullan