summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-10-21feat(std/testing): Add support for object assertion against object subset ↵Simon Lecoq
(#8001) This commit add supports for a new assertion function "assertObjectMatch" which allows to test an actual object against an expected object subset (i.e. inclusivity, not equality).
2020-10-21docs(tools/repl): add special variables section (#8057)Casper Beyer
2020-10-21refactor(cli): use PathBuf instead of String for lint and fmt subcommands ↵Akshat Agarwal
(#8042)
2020-10-21feat(cli): add types for WeakRef/FinalizationRegistry (#8056)Kitson Kelly
Fixes #8051
2020-10-20test(std/wasi): reduce test duplication (#8053)Casper Beyer
This fast-forwards wasi-test-suite a couple of commits removed duplicate, or near duplicate tests with not much additional value. Other tests have been merged to reduce the number of modules to make tests topical to the syscall that is being tested.
2020-10-20bump versions for op crates (#8048)Ryan Dahl
2020-10-20feat: stabilize Deno.fsync and Deno.fdatasync (#8038)Casper Beyer
2020-10-20chore: Rename --importmap to --import-map (#7032)Nayeem Rahman
--importmap still works as an alias to --import-map but is not visible in CLI help output.
2020-10-20docs(std/jwt): Fix examples (#8044)KNnut
2020-10-20fix(std/io): remove trivial internal util.ts module (#8032)Casper Beyer
2020-10-20fix(op_crates/web): TextEncoder should return error message with original ↵aca
input (#8005)
2020-10-20fix(cli): use rid getter for stdio (#8014)Casper Beyer
This changes the rid of Deno.stdin, Deno.stdout, Deno.stderr from a mutable property into a getter to match the rid semantics of Deno.File.
2020-10-20docs: Mention how to use a specific shell for Deno.run (#7966)Josh
2020-10-20fix: codesnippet in README contains $STD_VERSION (#8045)Luca Casonato
2020-10-20fix(cli/worker): Print error stacks from the origin Worker (#7987)Nayeem Rahman
Fixes #4728
2020-10-20feat(cli): add support for bundle --no-check (#8023)Kitson Kelly
Fixes #6686
2020-10-20feat(std/jwt): add a JSON Web Token library (#7991)timonson
Co-authored-by: Tim Reichen <timreichen@users.noreply.github.com>
2020-10-20fix(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-20docs(cli): interfaces used as parameters should be exported (#7500)Carter Snook
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2020-10-19fix(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-19fix(cli): Handling of relative importmaps while using watch (#7950)Absebo
2020-10-19feat(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-19feat(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-19fix(cli/repl): ignore pair matching inside literals (#8037)Casper Beyer
2020-10-19fix(op_crates/fetch): Body.body should be stream of Uint8Array (#8030)Luca Casonato
2020-10-19fix(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-19docs: readTextFile / readTextFileSync throw when reading directory (#7999)vwkd
2020-10-19docs(getting_started): fix WebAssembly example (#8028)Casper Beyer
2020-10-19feat(std/path): Add toFileUrl() (#7971)Nayeem Rahman
2020-10-19docs(std/datetime): document toIMF, isLeap, difference, and constants (#7931)Yoshiya Hinosawa
2020-10-19fix(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-19fix(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-19fix(std/tar): fix constant condition (#8010)Marcos Casagrande
2020-10-19docs(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-19deno_core 0.64.0 (#8025)Ryan Dahl
2020-10-18upgrade rusty_v8 (#8017)Ryan Dahl
2020-10-18test(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-18Remove 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-18refactor(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-18refactor(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-17upgrade: deno_doc, deno_lint, dprint, swc (#8009)Bartek Iwańczuk
2020-10-17refactor(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-15feat(cli/ops): add the sleep_sync op (#7974)William Perron
2020-10-16fix(cli): ModuleGraph2 properly handles redirects (#7981)Kitson Kelly
2020-10-15Reland feat(cli/console): inspect with colors regardless of Deno.noColor (#7976)Bartek Iwańczuk
2020-10-14Revert "feat(cli/console): inspect with colors regardless of Deno.noColor ↵Bartek Iwańczuk
(#7778)" (#7973) This reverts commit f75bd89aff7cffafceb394d629995479af54a156.
2020-10-14feat(std/fs/node): adding some functions (#7921)ali ahmed
2020-10-14feat(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-14fix typos (#7964)vwkd
2020-10-14fix(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.