summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2019-10-15perf: fairer ops scheduling (#3128)Bartek Iwańczuk
2019-10-14perf: eager poll async ops in Isolate (#3046)Bartek Iwańczuk
2019-10-07v0.20.0Ryan Dahl
2019-10-06Upgrade V8 to 7.9.218 (#3067)Ryan Dahl
2019-10-05remove appveyor specific code paths (#3071)Christian Moritz
2019-10-03Update rust to 1.38.0 (#3030)Andy Hayden
2019-10-02remove legacy Isolate.set_dispatch API (#3041)Bartek Iwańczuk
* migrate deno_typescript crate to Isolate.register_op API * remove dual-dispatch mechanism * update Isolate tests to new dispatch mechanism
2019-09-30feat: op registration in core (#3002)Bartek Iwańczuk
2019-09-25v0.19.0Ryan Dahl
2019-09-24Upgrade V8 for top-level-await (#3015)Ryan Dahl
2019-09-15Make deno_cli installable via crates.io (#2946)Ryan Dahl
- Fixes cargo publish on deno_typescript, deno_cli_snapshots, and deno_cli. - Combines cli_snapshots and js into one directory. - Extracts TS version at compile time rather than runtime - Bumps version awkwardly - it was necessary to test end-to-end publishing. Sorry. - Adds git submodule deno_typescript/typescript
2019-09-15Move GN root into //core/libdeno (#2943)Christian Moritz
2019-09-13v0.18.0Ryan Dahl
2019-09-13Upgrade rust cratesBert Belder
2019-09-12feat: add bindings to run microtasks from Isolate (#2793)Bartek Iwańczuk
2019-09-11fix: panic during fetch (#2925)Bartek Iwańczuk
2019-09-07Update @typescript-eslint/* to v2.1.0 (#2878)Yoshiya Hinosawa
2019-09-06build: on windows, don't pass -glldb to clang (#2874)Bert Belder
2019-09-06Remove tools/build.py (#2865)Ryan Dahl
Testing regression: ASAN build removed.
2019-09-04v0.17.0Ryan Dahl
2019-09-04perf: less aggresive dyn import polling (#2858)Bartek Iwańczuk
2019-09-02Refactor snapshot build (#2825)Ryan Dahl
Instead of using core/snapshot_creator.rs, instead two crates are introduced which allow building the snapshot during build.rs. Rollup is removed and replaced with our own bundler. This removes the Node build dependency. Modules in //js now use Deno-style imports with file extensions, rather than Node style extensionless imports. This improves incremental build time when changes are made to //js files by about 40 seconds.
2019-08-31Add window.queueMicrotask (#2844)Kevin (Kun) "Kassimo" Qian
2019-08-29third_party: downgrade 'url' crate to version 1.7.2Bert Belder
2019-08-26Clean up various flatbuffer references (#2819)Ryan Dahl
2019-08-26fix: shared queue requires aligned buffer (#2816)Bartek Iwańczuk
2019-08-22v0.16.0Ryan Dahl
2019-08-22third_party: upgrade rust cratesBert Belder
2019-08-21fix: dynamic import panic (#2792)Bartek Iwańczuk
2019-08-16Upgrade to rust 1.37.0 (#2786)Ryan Dahl
2019-08-13v0.15.0Ryan Dahl
2019-08-13Dynamic import should respect permissions (#2764)Ryan Dahl
2019-08-09Fix dynamic import base path problem for REPL and eval (#2757)Kevin (Kun) "Kassimo" Qian
2019-08-09v0.14.0Bert Belder
2019-08-09Dynamic import (#2516)Bert Belder
2019-08-07Add op_id throughout op API (#2734)Ryan Dahl
Removes the magic number hack to switch between flatbuffers and the minimal dispatcher. Adds machinery to pass the op_id through the shared_queue.
2019-08-06Fix incremental 'cargo build' (#2740)Ryan Dahl
Tip: RUSTC_WRAPPER should be unset for incremental builds to work.
2019-08-05Remove dispatch optimization (#2732)Ryan Dahl
Deno.core.dispatch() used to push the "control" buf onto the shared array buffer before calling into V8, with the idea that it was one less argument to parse. Turns out there is no more overhead passing the control ArrayBuffer directly over. Furthermore this optimization was making the refactors outlined in #2730 more complex. Therefore it is being removed.
2019-08-05Provide option to delete Deno namespace in worker (#2717)Kevin (Kun) "Kassimo" Qian
2019-08-02third_party: upgrade rust cratesBert Belder
2019-07-31Use system rustfmt instead of fixed binary (#2701)Ryan Dahl
2019-07-31v0.13.0Ryan Dahl
2019-07-30feat: add debug info to ModuleResolutionError (#2697)Bartek Iwańczuk
2019-07-24Add error handling for dynamic imports to libdeno (#2678)Bert Belder
2019-07-18only use Locker when calling into js (#2665)andy finch
2019-07-18remove v8::Locker from deno_respond (#2664)andy finch
2019-07-18Fix expected dyn before AnyError trait (#2663)andy finch
2019-07-16v0.12.0Ryan Dahl
2019-07-11Refactor error to use dynamic dispatch and traitsBert Belder
This is in preperation for dynamic import (#1789), which is more easily implemented when errors are dynamic.
2019-07-09Upgrade v8 to 7.7.200 (#2624)Ryan Dahl