summaryrefslogtreecommitdiff
path: root/cli
AgeCommit message (Collapse)Author
2021-06-06fix(#10747): cannot read config option in windows (#10791)jeiea
Fixes #10747
2021-06-05refactor(web): use encoding_rs for text encoding (#10844)Luca Casonato
This commit removes all JS based text encoding / text decoding. Instead encoding now happens in Rust via encoding_rs (already in tree). This implementation retains stream support, but adds the last missing encodings. We are incredibly close to 100% WPT on text encoding now. This should reduce our baseline heap by quite a bit.
2021-06-05feat(cli/compile): Support data uri dynamic imports in `deno compile` (#9936)Divy Srivastava
2021-06-05feat: make 'deno lint' stable (#10851)Bartek Iwańczuk
2021-06-05fix(lsp): refactor, fix issues and add benchmark for code lens (#10841)Kitson Kelly
2021-06-04fix: hang in op_http_next_request (#10836)Bartek Iwańczuk
This commit adds "CancelHandle" to "ConnResource" and changes "op_http_next_request" to await for the cancel signal. In turn when async iterating over "Deno.HttpConn" the iterator breaks upon closing of the resource.
2021-06-03fix(cli): output json with trailing newline character (#10830)Yusuke Tanaka
2021-06-03feat(cli): support URL overload for `Deno.chdir` (#10793)Casper Beyer
2021-06-03feat(runtime): support URL overloads for `Deno.symlink` and ↵Casper Beyer
`Deno.symlinkSync` (#10664)
2021-06-03feat(runtime): support URL overloads for Deno.rename/Deno.renameSync (#10512)Casper Beyer
2021-06-03fix(#10775): diagnostics update on dependency changes (#10817)Kitson Kelly
Fixes #10775
2021-06-02fix(#10815): lsp only responds to formatting for md, json, jsonc (#10816)Kitson Kelly
Fixes #10815
2021-06-01feat(lsp): registry auto discovery (#10813)Kitson Kelly
Closes: #10194 Fixes: #10468
2021-06-01fix(lsp): updates to workspace config are processed sync (#10812)Kitson Kelly
2021-06-01fix(cli): represent bare imports as module graph error slots (#10804)Nayeem Rahman
Fixes #10795
2021-06-01feat: add FsWatcher interface (#10798)Yoshiya Hinosawa
2021-05-31Merge v1.10.3 into main (#10801)Bert Belder
2021-05-31v1.10.3Bert Belder
2021-05-31feat(cli): support URL overloads for `Deno.utime` and `Deno.utimeSync` (#10792)Casper Beyer
2021-05-31fix: running subcommand with coverage collection (#10802)Bartek Iwańczuk
2021-05-31fix(cli): Don't statically error on dynamic unmapped bare specifiers (#10618)Nayeem Rahman
Fixes #10168 Fixes #10615 Fixes #10616
2021-05-31fix(#10765): lsp import fixes include extensions (#10778)Kitson Kelly
Fixes #10765
2021-05-31chore: upgrade Tokio to 1.6.1 (#10782)Yusuke Tanaka
2021-05-31fix(#10733): empty tsconfig.json file does not cause error (#10734)Romain Prignon
Fixes #10733
2021-05-31fix(fetch): make prototype properties writable (#10769)Luca Casonato
2021-05-31feat(lsp): show hints from `deno_lint` in addition to messages (#10739)Yusuke Tanaka
2021-05-31fix(extension/file): update File constructor following the spec (#10760)Yoshiya Hinosawa
2021-05-31docs(cli/dts): tag test permission example as typescript (#10753)Casper Beyer
2021-05-31feat(lsp): diagnostics for deno types and triple-slash refs (#10699)Kitson Kelly
Fixes #9823
2021-05-31fix(cli/test): don't use reserved symbol `:` in specifier (#10751)Casper Beyer
2021-05-31fix(cli/upgrade): modify download size paddings (#10639)CGQAQ
2021-05-31fix(docs): rename read to readSync (#10732)迷渡
Signed-off-by: 迷渡 <justjavac@gmail.com>
2021-05-31fix(test): ensure coverage dir exists (#10717)Yoshiya Hinosawa
2021-05-31fix(runtime/http): fix empty blob response (#10689)Yoshiya Hinosawa
2021-05-31chore(lsp): provide test for lsp deadlock issue (#10679)Kitson Kelly
Resolves: #10587
2021-05-31fix(cli/tools/test_runner): --doc should not require permissions (#10719)Casper Beyer
2021-05-31fix(lsp): re-enable the per resource configuration without a deadlock (#10625)Kitson Kelly
Fixes #10603
2021-05-31fix(cli/dts): fix missing error class (NotSupported) in types (#10713)Carter Snook
2021-05-31fix(cli): always allow documentation modules to be checked (#10581)Casper Beyer
2021-05-31test(cli/dts): typecheck examples in declaration files (#10707)Casper Beyer
This commits adds two integration tests that typecheck examples in the docstrings in Deno declaration files.
2021-05-31fix(cli/tools/test_runner): use file_fetcher.fetch to get sources (#10708)Casper Beyer
2021-05-31fix(cli): canonicalize coverage dir (#10364)Casper Beyer
2021-05-31docs(cli/dts): fix plugin example (#10647)Casper Beyer
2021-05-31fix(runtime/http): expose nextRequest() errors in respondWith() (#10384)Nayeem Rahman
2021-05-31fix(#10695): deps diagnostics include data property (#10696)Kitson Kelly
Fixes #10695
2021-05-31docs(cli/dts): make worker example pass (#10703)Casper Beyer
2021-05-31docs: fix unix socket examples (#10705)Casper Beyer
2021-05-31fix(deno install): support `file:` scheme URLs (#10562)Satya Rohith
2021-05-31docs(cli/dts): fix typo in `TestDefinition.only` description (#10697)Casper Beyer
2021-05-31fix(runtime): support source maps with Deno.emit() and bundle (#10510)Satya Rohith
Closes: #10413