Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-10-20 | feat(std/jwt): add a JSON Web Token library (#7991) | timonson | |
Co-authored-by: Tim Reichen <timreichen@users.noreply.github.com> | |||
2020-10-20 | fix(cli/rt/performance): check for object props in startOrMeasureOptions ↵ | Jesse Jackson | |
before throwing (#7884) Fixes #7876 Co-authored-by: Ryan Dahl <ry@tinyclouds.org> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2020-10-20 | docs(cli): interfaces used as parameters should be exported (#7500) | Carter Snook | |
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2020-10-19 | fix(op_crates/web): TextEncoder should throw RangeError (#8039) | Leonard Ginters | |
This commit changes error type thrown by TextEncoder, when provided encoding is not supported matching Chromium behavior. | |||
2020-10-19 | fix(cli): Handling of relative importmaps while using watch (#7950) | Absebo | |
2020-10-19 | feat(cli/repl): add tab completion (#7827) | Casper Beyer | |
This commit adds tab completion in REPL. Currently it works only for global identifiers and object properties. | |||
2020-10-19 | feat(cli/installer): Add missing flags for deno install (#7601) | Nayeem Rahman | |
This commit adds support for following flags: - deno install --importmap - deno install --no-remote - deno install --lock - deno install --lock-write - deno install --cached-only - deno install --v8-flags - deno install --seed | |||
2020-10-19 | fix(cli/repl): ignore pair matching inside literals (#8037) | Casper Beyer | |
2020-10-19 | fix(op_crates/fetch): Body.body should be stream of Uint8Array (#8030) | Luca Casonato | |
2020-10-19 | fix(cli/repl): unterminated string literal should invalidate (#7896) | Casper Beyer | |
This adds the grave character to the pair matching so that template string literals trigger multi-line edits. | |||
2020-10-19 | docs: readTextFile / readTextFileSync throw when reading directory (#7999) | vwkd | |
2020-10-19 | docs(getting_started): fix WebAssembly example (#8028) | Casper Beyer | |
2020-10-19 | feat(std/path): Add toFileUrl() (#7971) | Nayeem Rahman | |
2020-10-19 | docs(std/datetime): document toIMF, isLeap, difference, and constants (#7931) | Yoshiya Hinosawa | |
2020-10-19 | fix(cli/repl): keyboard interrupt should continue (#7960) | Casper Beyer | |
This changes the behavior of keyboard interrupts (ctrl+c) to continue, clearing the current line instead of exiting. Exit can still be done with ctrl+d or by calling close(). | |||
2020-10-19 | fix(cli/repl): write all results to stdout (#7893) | Casper Beyer | |
This writes all evaluaton results to stdout regardless if the result is an error or not. This matches the behavior of other read-eval-print-loops like Node. | |||
2020-10-19 | fix(std/tar): fix constant condition (#8010) | Marcos Casagrande | |
2020-10-19 | docs(tools): add repl section (#8011) | Casper Beyer | |
This adds a section on the repl with the keybindings that we support out of the box. | |||
2020-10-19 | deno_core 0.64.0 (#8025) | Ryan Dahl | |
2020-10-18 | upgrade rusty_v8 (#8017) | Ryan Dahl | |
2020-10-18 | test(std/io): use a real tempdir (#8019) | Casper Beyer | |
This replaces a case of a temp file in the working tree with a tempfile in a real temporary directory avoiding pollution of the working directory. | |||
2020-10-18 | Remove github actions cache (#8020) | Ryan Dahl | |
Running into issues with cache when trying to upgrade V8. Based on the analysis in https://github.com/denoland/deno/pull/7903#issuecomment-706252380 we know the cache is not providing much benefit. | |||
2020-10-18 | refactor(lint): show hint for lint errors (#8016) | Bartek Iwańczuk | |
This commit adds formatting of optional "hint" that can be present in lint diagnostic. | |||
2020-10-18 | refactor(cli/repl): extract is_closing to a function (#8015) | Casper Beyer | |
This extracts is closing into a function so that it can easily be used as the condition for the loop. | |||
2020-10-17 | upgrade: deno_doc, deno_lint, dprint, swc (#8009) | Bartek Iwańczuk | |
2020-10-17 | refactor(core): more control over isolate creation (#8000) | Ben Noordhuis | |
Make JSRuntime::new() accept a custom v8::CreateParams object to tune the v8::Isolate it creates. Subsumes the functionality of HeapLimits, which I therefore removed. | |||
2020-10-15 | feat(cli/ops): add the sleep_sync op (#7974) | William Perron | |
2020-10-16 | fix(cli): ModuleGraph2 properly handles redirects (#7981) | Kitson Kelly | |
2020-10-15 | Reland feat(cli/console): inspect with colors regardless of Deno.noColor (#7976) | Bartek Iwańczuk | |
2020-10-14 | Revert "feat(cli/console): inspect with colors regardless of Deno.noColor ↵ | Bartek Iwańczuk | |
(#7778)" (#7973) This reverts commit f75bd89aff7cffafceb394d629995479af54a156. | |||
2020-10-14 | feat(std/fs/node): adding some functions (#7921) | ali ahmed | |
2020-10-14 | feat(cli/console): inspect with colors regardless of Deno.noColor (#7778) | TTtie | |
This commit adds the ability for users to inspect items stylized with ANSI colors regardless of the value of Deno.noColor. | |||
2020-10-14 | fix typos (#7964) | vwkd | |
2020-10-14 | fix(test): return error when awaiting unresolved promise (#7968) | Bartek Iwańczuk | |
This commit fixes test runner by awaitning "Deno.runTests()" call, which ensures proper error is returned when there's an unresolved promise that's being awaited. | |||
2020-10-14 | fix(console): fix the test cases of function inspections (#7965) | Yoshiya Hinosawa | |
2020-10-14 | refactor(cli/repl): clean up prelude injection (#7967) | Casper Beyer | |
This extracts prelude injection into a helper function and moves the prelude string literal into a top level static string to help trim some of the fat out of the run function. | |||
2020-10-14 | fix: top-level-await module execution (#7946) | Bartek Iwańczuk | |
This commit changes implementation of top-level-await in "deno_core". Previously promise returned from module evaluation was not awaited, leading to out-of-order execution of modules that have TLA. It's been fixed by changing "JsRuntime::mod_evaluate" to be an async function that resolves when the promise returned from module evaluation also resolves. When waiting for promise resolution event loop is polled repeatedly, until there are no more dynamic imports or pending ops. | |||
2020-10-14 | refactor(cli): add tsc2 (#7942) | Kitson Kelly | |
Ref #7225 | |||
2020-10-13 | Remove dead code (#7963) | Ryan Dahl | |
2020-10-13 | docs: fix links to examples (#7919) | sakas | |
2020-10-13 | docs: fix runtime docs link in README (#7926) | Grant Timmerman | |
2020-10-13 | fix(op_crates/web/url): apply backslash replacement to the pathname setter ↵ | Nayeem Rahman | |
(#7937) | |||
2020-10-13 | feat(cli/repl): add regex based syntax highlighter (#7811) | Casper Beyer | |
This commit adds a simple regex replace based highlighter to the REPL editor. It tries to match the color palette of Deno.inspect() | |||
2020-10-13 | feat: add alert, confirm, and prompt (#7507) | Yoshiya Hinosawa | |
This commit adds "alert", "confirm" and "prompt" functions from web standards. | |||
2020-10-13 | refactor(cli): rename GlobalState to ProgramState (#7914) | Bartek Iwańczuk | |
2020-10-13 | reafactor(cli): use Emit enum and rename ts_build_info (#7952) | Kitson Kelly | |
2020-10-13 | fix(std/encoding): base64 properly encodes mbc and handles Uint8Arrays (#7807) | timonson | |
Fixes #6094 Fixes #4794 | |||
2020-10-12 | chore(cli): remove dead code (#7941) | Kitson Kelly | |
2020-10-12 | refactor(cli): move info subcommand over to new module graph (#7892) | Kitson Kelly | |
2020-10-12 | feat(cli): support importmap flag with deno doc subcommand (#7821) | Valentin Anger | |
Fixes #7783 |