Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-10-09 | ci: add workaround for MacOS + Cargo + Github Actions cache bug (#7898) | Bert Belder | |
2020-10-09 | ci: fix rusty_v8 binary download unavailable (#7898) | Bert Belder | |
A recent change in rustc or cargo made it so that rusty_v8's `build.rs`, which is responsible for downloading `librusty_v8.a`, does not get rebuilt or re-run when its build output directory is restored from the Github Actions cache. However, rusty_v8's custom build script does not save the download to its build output directory; it puts the file in `target/debug|release/gn_out/obj` instead. To get CI going again we opted to add `target/*/gn_out` to the Github Actions cache. A more robust fix would be make rusty_v8 save the download to the cargo-designated output directory. | |||
2020-10-09 | build: invalidate GHA cache (#7894) | Bartek Iwańczuk | |
2020-10-09 | fix(op_crates/fetch): Stringify and parse Request URLs (#7838) | Nayeem Rahman | |
Fixes #7837 | |||
2020-10-08 | Fix typos (#7882) | crowlKats | |
2020-10-08 | docs(std/bytes): add missing docs to README (#7885) | Yoshiya Hinosawa | |
2020-10-08 | upgrade: Rust 1.47.0 (#7886) | Bartek Iwańczuk | |
2020-10-08 | v1.4.5 | Bartek Iwańczuk | |
2020-10-08 | fix: update worker types to better align to lib.dom.d.ts (#7843) | Kitson Kelly | |
2020-10-08 | fix(cli/rt/error_stack): Improve message line formatting (#7860) | Nayeem Rahman | |
2020-10-08 | fix(cli/fs) Small change in filter expression (#7865) | Simon Rask | |
2020-10-07 | refactor(core): JsRuntime is not a Future (#7855) | Bartek Iwańczuk | |
This commit rewrites deno_core::JsRuntime to not implement Future trait. Instead there are two separate methods: - JsRuntime::poll_event_loop() - does single tick of event loop - JsRuntime::run_event_loop() - runs event loop to completion | |||
2020-10-07 | fix(cli/rt/console): Don't require a prototype to detect a class instance ↵ | Nayeem Rahman | |
(#7869) | |||
2020-10-07 | upgrade: deno_doc, deno_lint, dprint, swc (#7862) | Bartek Iwańczuk | |
2020-10-07 | docs(std/encoding/csv): update the usage of ParseOptions (#7857) | Cedric Vangout | |
2020-10-07 | upgrade: rusty_v8 0.11.0, V8 8.7.220.3 (#7859) | Bartek Iwańczuk | |
2020-10-07 | refactor: rename isolate to js_runtime (#7858) | Bartek Iwańczuk | |
This commit renames occurrences of "isolate" variable name to "js_runtime". This was outstanding debt after renaming deno_core::CoreIsolate to JsRuntime. | |||
2020-10-07 | refactor(core): JsRuntime doesn't defer to OwnedIsolate (#7853) | Bartek Iwańczuk | |
Remove Deref and DeferMut implementations for JsRuntime. | |||
2020-10-07 | fix(cli/ops/fs): Don't force Windows paths separate paths with forward slash ↵ | Nayeem Rahman | |
(#7833) | |||
2020-10-07 | refactor(cli): remove TextDocument (#7850) | Kitson Kelly | |
2020-10-07 | refactor(cli/inspector): use &str for post_message (#7851) | Casper Beyer | |
This changes the signature of InspectorSession.post_message to take a &str rather than a String avoiding the need call str.to_string at each call site. | |||
2020-10-07 | refactor(cli): cleanups to new module graph (#7846) | Kitson Kelly | |
2020-10-07 | docs(README): fix code block type (#7845) | Yasser A.Idrissi | |
2020-10-07 | docs: fix deno.land/manual example and clarify linting of code (#7842) | Steven Guerrero | |
Fixes #7841 | |||
2020-10-06 | refactor(cli/repl): tightly integrate event loop (#7834) | Casper Beyer | |
2020-10-06 | chore: update contributing.md and PR template (#7820) | Bartek Iwańczuk | |
2020-10-06 | fix(core): module execution with top level await (#7672) | Bartek Iwańczuk | |
This commit fixes implementation of top level await in "deno_core". Previously promise returned from module execution was ignored causing to execute modules out-of-order. With this commit promise returned from module execution is stored on "JsRuntime" and event loop is polled until the promise resolves. | |||
2020-10-06 | feat(std/node/fs): adding readdir, rename, and some others (#7666) | ali ahmed | |
2020-10-06 | fix(std/node/fs): allow appendFileSync to accept Uint8Array as type for data ↵ | ali ahmed | |
(#7835) | |||
2020-10-05 | chore: add a bundle benchmark (#7828) | Kitson Kelly | |
2020-10-05 | perf(cli/console): Don't add redundant ANSI codes (#7823) | Nayeem Rahman | |
2020-10-05 | fix(core): handle unregistered errors in core better (#7817) | Kitson Kelly | |
2020-10-05 | refactor(core): JsRuntime::poll (#7825) | Bartek Iwańczuk | |
This commit does reorganization of "JsRuntime::poll" to allow fixing of top-level-await bug. | |||
2020-10-05 | chore: add lockfile tests (#7816) | JavascriptMick | |
Fixes #7653 | |||
2020-10-04 | docs(std): version all imports in README (#7442) | tokiedokie | |
Use $STD_VERSION in std/ README files to automatically display proper version. | |||
2020-10-04 | chore(std/http): rename http_bench.ts -> bench.ts (#7509) | tokiedokie | |
2020-10-04 | docs: end sentences with a period in markdown (#7813) | Trivikram Kamat | |
2020-10-04 | docs: update location of unit tests folder (#7814) | Trivikram Kamat | |
2020-10-03 | docs(std/encoding): add missing JSDoc (#7809) | Atakan Ermiş | |
2020-10-03 | docs(std/wasi): remove outdated testing section (#7812) | Casper Beyer | |
2020-10-03 | feat(unstable): revert "enable importsNotUsedAsValues by default #7413" (#7800) | Nayeem Rahman | |
This reverts commit fbb18d40d3cfd0d24262e8e73b97f22770734572. | |||
2020-10-03 | docs(std/wasi): fix usage example (#7808) | Casper Beyer | |
The usage example is a bit out of date and not compatible with the stricter definition of the WebAssembly namespace. This fixes that and makes it a bit cleaner. | |||
2020-10-03 | v1.4.4 | Bartek Iwańczuk | |
2020-10-03 | fix(cli/repl): put the thread to sleep when idle (#7804) | Casper Beyer | |
2020-10-03 | fix(cli): update type definitions to align to TS dom (#7791) | CGQAQ | |
Fixes #7746 | |||
2020-10-02 | fix(cli/repl): enable colors on inspected values (#7798) | Casper Beyer | |
2020-10-02 | v1.4.3 | Bartek Iwańczuk | |
2020-10-02 | upgrade: swc, deno_doc, deno_lint, dprint (#7793) | Bartek Iwańczuk | |
2020-10-02 | feat(cli/repl): enable await and let re-declarations (#7784) | Casper Beyer | |
This enables `replMode` during evaluations which allows for top level await and let re-declarations. | |||
2020-10-02 | fix(cli/repl): use a default referrer when empty (#7794) | Casper Beyer | |
This makes use of a default referrer when its empty in repl mode so that dynamic imports work in the global evaluation context. Co-authored-by: Bartek Iwanczuk <biwanczuk@gmail.com> |