Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-17 | refactor: use Symbol.for instead of Symbol in cli/rt/ (#7537) | Bartek Iwańczuk | |
2020-09-17 | refactor: move op_resources and op_close to deno_core (#7539) | Bartek Iwańczuk | |
Moves op_close and op_resources to deno_core::ops and exports them. Adds serde dependency to deno_core and reexports it. Moves JS implementation of those ops to Deno.core and reexports them in Deno. | |||
2020-09-17 | refactor: disable URL.createObjectUrl (#7543) | Bartek Iwańczuk | |
2020-09-17 | chore: remove readJson/writeJson from manual (#7541) | Luca Casonato | |
2020-09-17 | fix: Use Buffer.writeSync in MultipartBuilder (#7542) | Ryan Dahl | |
2020-09-17 | refactor: make fetch use op_fetch_read instead of op_read (#7529) | Ryan Dahl | |
2020-09-16 | test(std/wasi): add sched_yield test (#7511) | Casper Beyer | |
2020-09-16 | refactor: remove dispatch_json.js from cli/rt and cli/tsc (#7521) | Bartek Iwańczuk | |
Instead use Deno.core.jsonOpSync and Deno.core.jsonOpAsync | |||
2020-09-16 | Re-export deno_core::url (#7525) | Ryan Dahl | |
Also re-exports deno_core::futures and deno_core::serde_json but these are not yet used in the CLI. | |||
2020-09-16 | Remove unnecessary extern statements | Ryan Dahl | |
2020-09-16 | Remove unnecessary serde_derive dependency | Ryan Dahl | |
2020-09-16 | Revert "feat(install): bundle before installation" (#7522) | Bert Belder | |
This reverts the changes introduced by PR #5276, which made `deno install «script»` automatically bundle the script's dependencies. It broke the `deno install` command for a large number of scripts. This reverts commit 34e98fa59cd70f7ce64e587bef41fac536a3076b. Closes: #7492 | |||
2020-09-16 | simplify global properties (#7502) | Ryan Dahl | |
2020-09-16 | refactor(unstable): deno info --json output (#7417) | bartOssh | |
Provide flat JSON structured output. Fix BrokenPipe error when piping out to "head". | |||
2020-09-16 | Revert "fix(cli/http_utils): accept a single key-multiple values headers ↵ | Bartek Iwańczuk | |
(#7375)" (#7515) This reverts commit f5c84920c225579af9c249bdac4a59a046ef8683. | |||
2020-09-16 | fix(std/testing): assertion diff color (#7499) | Pig Fang | |
2020-09-16 | docs: fix typo assertAsyncThrows -> assertThrowsAsync (#7506) | Sidd Sridharan | |
2020-09-16 | ci: remove wasm target installation step (#7512) | Casper Beyer | |
2020-09-15 | Remove http_client from CliState, store in OpState directly (#7497) | Ryan Dahl | |
2020-09-15 | cli/msg.rs -> cli/media_type.rs | Ryan Dahl | |
2020-09-15 | Don't expose ErrWithV8Handle from deno_core | Ryan Dahl | |
2020-09-15 | fix(std/datetime): timezone bug (#7466) | Tim Reichen | |
2020-09-15 | docs(lint): ignore diagnostic in whole file (#7489) | Bartek Iwańczuk | |
2020-09-15 | fix(cli/http_utils): accept a single key-multiple values headers (#7375) | tokiedokie | |
2020-09-15 | refactor(cli/tests): change std_path to root_path in std_tests() (#7438) | tokiedokie | |
2020-09-15 | remove stub implementation of v3 in std/uuid (#7488) | Casper Beyer | |
2020-09-14 | Make JsRuntimeState private (#7484) | Ryan Dahl | |
2020-09-14 | fix typo miliseconds -> milliseconds (#7469) | tasshi / Masaharu TASHIRO | |
2020-09-14 | docs(std/testing) add a description of assertNotMatch(). (#7470) | Piyotaro, Kiiroi (きいろい ぴよ太郎) | |
2020-09-14 | refactor: Remove dependency on downcast_rs. (#7475) | Scott Olson | |
We don't seem to use downcast_rs in any essential way. We can just use the standard library `Any` directly. | |||
2020-09-14 | refactor(core): remove JsRuntime::set_js_error_create_fn (#7478) | Bartek Iwańczuk | |
Instead use RuntimeOptions.js_error_create_fn | |||
2020-09-14 | docs(testing): describe coverage blackboxing rules (#7483) | Casper Beyer | |
2020-09-14 | Rename deno::state::State to deno::state::CliState (#7480) | Ryan Dahl | |
2020-09-14 | Remove unnecessary wildcard from ts_decorators test (#7485) | Ryan Dahl | |
2020-09-15 | refactor: use the 'anyhow' crate instead of 'ErrBox' (#7476) | Bert Belder | |
2020-09-15 | chore: fix clippy warnings (#7476) | Bert Belder | |
2020-09-14 | chore: add some traits to ast.rs (#7479) | Kitson Kelly | |
2020-09-14 | test: reenable TS decorator test (#7471) | Bartek Iwańczuk | |
2020-09-14 | feat(std/node): Add AssertionError class (#7210) | Schwarzkopf Balázs | |
2020-09-14 | refactor: use ParsedModule and improve MediaTypes enum (#7456) | Kitson Kelly | |
2020-09-14 | test(cli/tests/https_import): use ts file in localhost instead of remote (#7431) | tokiedokie | |
2020-09-14 | test(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-14 | test(cli/tests/unit): Enable color for js_unit_tests (#7443) | Nayeem Rahman | |
2020-09-14 | chore: add no_check_hello benchmark (#7458) | Kitson Kelly | |
2020-09-14 | Upgrade Rust crates, pin 'webpki-roots' to version 0.19.0 (#7454) | Bert Belder | |
2020-09-13 | v1.4.0 | Bartek Iwańczuk | |
2020-09-13 | docs: manual updates for 1.4 features and changes (#7440) | Luca Casonato | |
2020-09-13 | feat(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-13 | upgrade: 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-13 | upgrade: rusty_v8 0.10.0 / V8 8.7.75 (#7429) | Bert Belder | |