summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2020-09-08test(std/fs): make tests runnable from any directory (#7388)Casper Beyer
2020-09-07BREAKING(std/fs): remove writeJson and writeJsonSync (#7256)Casper Beyer
2020-09-07BREAKING(std/fs): remove readJson and readJsonSync (#7255)Casper Beyer
2020-09-07feat(info): Dependency count and sizes (#6786)KrisChambers
This commit changes "deno info" subcommand logic. - Modules are no longer loaded into V8 isolate - analysis is done using ModuleGraph. - Removed deno_core::Deps structure. - Modules are no longer type-checked and transpiled - "compiled" file is shown only if it is already available. - Added number of unique dependencies for root module. - Changed tree output: - file size is shown next to the dependency - repeated dependencies are marked with "*" - used less spaces in prefix to save terminal width
2020-09-07test(std/hash): make tests runnable from any directory (#7376)Casper Beyer
2020-09-06refactor(core): rename CoreIsolate to JsRuntime (#7373)Bartek Iwańczuk
deno_core/ - rename core_isolate.rs to runtime.rs - rename CoreIsolate to JsRuntime - rename JSError to JsError - rename JSStackFrame to JsStackFrame cli/ - update references from deno_core::CoreIsolate to deno_core::JsRuntime - rename deno_core::JSError to deno_core::JsError - rename fmt_errors::JSError to fmt_errors::JsError
2020-09-06test(std/archive): make tests runnable from any directory (#7366)Casper Beyer
2020-09-06test(std/encoding): make tests runnable from any directory (#7368)Casper Beyer
2020-09-06refactor(core): merge CoreIsolate and EsIsolate (#7370)Bartek Iwańczuk
2020-09-06Move JSON ops to deno_core (#7336)Bert Belder
2020-09-05Fix hellish mistake in manual (#7363)crowlKats
2020-09-05feat: Implement WebSocket API (#7051)crowlKats
2020-09-05feat(install): bundle before installation (#5276)Yoshiya Hinosawa
2020-09-04v1.3.3Bartek Iwańczuk
2020-09-04run cargo update (#7348)Ryan Dahl
2020-09-04fix: don't expose globalThis.__bootstrap (#7344)Kitson Kelly
2020-09-04test(std/wasi): explicitly list modules for deterministic test runs (#7245)Casper Beyer
This explicitly lists std/wasi test modules in a pre-sorted array for deterministic test runs. As a side effect it makes it a bit more visible when a test has been added or removed aside from having to look at the submodule update.
2020-09-04chore(std/wasi): enable and fix lint errors in tests (#7324)Casper Beyer
2020-09-04docs: fix anchor link (#7346)迷渡
2020-09-04fix: Handle bad redirects more gracefully (#7342)Ryan Dahl