summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-09-15chore: fix clippy warnings (#7476)Bert Belder
2020-09-14chore: add some traits to ast.rs (#7479)Kitson Kelly
2020-09-14test: reenable TS decorator test (#7471)Bartek Iwańczuk
2020-09-14feat(std/node): Add AssertionError class (#7210)Schwarzkopf Balázs
2020-09-14refactor: use ParsedModule and improve MediaTypes enum (#7456)Kitson Kelly
2020-09-14test(cli/tests/https_import): use ts file in localhost instead of remote (#7431)tokiedokie
2020-09-14test(std/http): make tests runnable from any directory (#7441)Casper Beyer
This makes std/http tests runnable from any directory by spawning test processes in the module directory resolved from import.meta.url and resolving test data relative to the same module directory.
2020-09-14test(cli/tests/unit): Enable color for js_unit_tests (#7443)Nayeem Rahman
2020-09-14chore: add no_check_hello benchmark (#7458)Kitson Kelly
2020-09-14Upgrade Rust crates, pin 'webpki-roots' to version 0.19.0 (#7454)Bert Belder
2020-09-13v1.4.0Bartek Iwańczuk
2020-09-13docs: manual updates for 1.4 features and changes (#7440)Luca Casonato
2020-09-13feat(unstable): deno test --coverage (#6901)Casper Beyer
This commit adds basic support for collecting coverage data using "deno test". Currently the report is only a text added to the end of output from "deno test".
2020-09-13upgrade: deno_doc, deno_lint, dprint, swc (#7434)Bartek Iwańczuk
upgrades: - swc_ecmascript 0.7.7 - dprint-plugin-typescript 0.31.3 - deno_lint 0.2.0 - deno_doc 0.1.9 Split std_lint test into std_lint and unit_test_lint. Added lint ignores to CommonJS files in std/node.
2020-09-13upgrade: rusty_v8 0.10.0 / V8 8.7.75 (#7429)Bert Belder
2020-09-13fix(WebSocket): no panic on failed connect + handle promise rejection via ↵Luca Casonato
error event (#7437)
2020-09-12chore: remove --no-check from deno info (#7439)Luca Casonato
2020-09-12chore: add systemMemoryInfo unstable diagnostic (#7435)Luca Casonato
2020-09-12doc: improve Examples (#7428)Chris Knight
2020-09-12refactor: improve tsc diagnostics (#7420)Kitson Kelly
2020-09-12refactor: Improve placeholder module names (#7430)Nayeem Rahman
2020-09-12Revert "feat(unstable): Support data: urls (#5157)" (#7432)Bartek Iwańczuk
This reverts commit e3319f34a6ece36eab3138eae83c8d0e18fcc07c.
2020-09-11feat(unstable): Support data: urls (#5157)Valentin Anger
2020-09-11feat(unstable): deno run --watch (#7382)Bartek Iwańczuk
Co-authored-by: Sebastian Seedorf <mail@sebse.de>
2020-09-11docs: move “Debugger” to “Debugging your code” in “Getting ↵tokiedokie
started” (#7421)
2020-09-11feat(unstable): enable importsNotUsedAsValues by default (#7413)Luca Casonato
2020-09-11refactor(core): JsRuntime initialization (#7415)Bartek Iwańczuk
Removes: - "deno_core::StartupData" - "deno_core::Script" - "deno_core::OwnedScript" Changes to "JsRuntime": - remove "new_with_loader()" - remove "with_heap_limits()" - rename "IsolateOptions" to "RuntimeOptions" and make public - "JsRuntime::new()" takes "RuntimeOptions" as a single param
2020-09-10Use gotham-like state for ops (#7385)Ryan Dahl
Provides a concrete state type that can be dynamically added. This is necessary for op crates. * renames BasicState to OpState * async ops take `Rc<RefCell<OpState>>` * sync ops take `&mut OpState` * removes `OpRegistry`, `OpRouter` traits * `get_error_class_fn` moved to OpState * ResourceTable moved to OpState
2020-09-10feat(console): support CSS styling with "%c" (#7357)Nayeem Rahman
2020-09-10feat(unstable): Add Deno.systemMemoryInfo() (#7350)Akshat Agarwal
Co-authored-by: marcopacini <pacinim88@gmail.com> Co-authored-by: Casper Beyer <caspervonb@pm.me>
2020-09-10docs: add a Powershell autocomplete example (#7329)Danilo Sampaio
2020-09-09fix: panic on process.kill() after run (#7405)Bartek Iwańczuk
This commit fixes panic caused by "unimplemented!()" calls for some variants of "nix::errno::Errno". Catch-all variant now returns "Error" class name instead of panicking. Co-authored-by: Bert Belder <bertbelder@gmail.com>
2020-09-09fix(cli): suppress 'WSANOTINITIALIZED' error on Deno exit (#7408)Bert Belder
Unblocks: #6901
2020-09-09chore(std): remove std/ws connect method (#7403)Luca Casonato
2020-09-09feat(op_crates/web): Add all single byte encodings to TextDecoder (#6178)AliBasicCoder
2020-09-09test(std/examples): make tests runnable from any directory (#7399)Casper Beyer
2020-09-09fix(core): panic on big string allocation (#7395)Bartek Iwańczuk
Co-authored-by: Bert Belder <bertbelder@gmail.com>
2020-09-09build: use GitHub Actions XL runners (#7406)Luca Casonato
2020-09-09feat(fmt, lint): show number of checked files (#7312)Yusuke Tanaka
2020-09-09upgrade: swc, deno_doc, deno_lint, dprint (#7402)Bartek Iwańczuk
- deno_doc - 0.1.6 - deno_lint - 0.1.29 - dprint-plugin-typescript 0.31.1 - swc_ecmascript 0.7.3
2020-09-09fix(op_crates/web): Use "deno:" URLs for internal script specifiers (#7383)Nayeem Rahman
2020-09-09fix(tsc): config resolution using relative paths (#7392)Bartek Iwańczuk
2020-09-09test(std/mime): make tests runnable from any directory (#7398)Casper Beyer
2020-09-08test(std/node): make tests runnable from any directory (#7397)Casper Beyer
This makes std/node tests runnable from any directory by resolving the testdata directory and files relative to the module directory resolved from import.meta.url.
2020-09-08feat(console): print proxy details (#7139)uki00a
2020-09-08feat(unstable): enable isolatedModules by default (#7327)Luca Casonato
2020-09-08upgrade: deno_doc to 0.1.5 (#7391)Bartek Iwańczuk
2020-09-08fix(cli): colors mismatch (#7367)EathonYe
2020-09-08upgrade: dprint-plugin-typescript 0.31.0 (#7381)David Sherret
2020-09-08fix: Empty Response body returns 0-byte array (#7387)Casper Beyer