summaryrefslogtreecommitdiff
path: root/cli/rt
AgeCommit message (Collapse)Author
2020-09-23fix(cli/console): quote non-alphanumeric symbols (#7641)Casper Beyer
This quotes and escapes symbol descriptions that contains characters outside of the basic alpha-numeric identifier range.
2020-09-23fix(cli/console): enclose symbol keys in brackets (#7642)Casper Beyer
This encloses symbol keys when used in objects with brackets (e.g [Symbol("Symbol.iterator")]).
2020-09-22fix: clearing timers race condition (#7617)Bartek Iwańczuk
2020-09-22refactor(cli/fmt_errors): Color stack traces in Rust (#7628)Nayeem Rahman
2020-09-22fix(cli/console): quote object symbol keys that are invalid identifiers (#7553)Casper Beyer
2020-09-21fix(cli/repl): interpret object literals as expressions (#7591)Casper Beyer
2020-09-21chore: add copyright (#7593)tokiedokie
2020-09-19fix(cli/rt): make some web API constructors illegal at runtime (#7468)Nayeem Rahman
2020-09-18fix(cli/repl): format evaluation results with the object specifier (#7561)Casper Beyer
2020-09-18fix(cli/console): surround non alpha-numeric object keys with quotes (#7550)Casper Beyer
2020-09-18refactor: move FileReader to op_crates/web (#7554)Bartek Iwańczuk
2020-09-18fix(cli/console): always quote and escape inspected strings (#7546)Casper Beyer
2020-09-18refactor: deno_fetch op crate (#7524)Bartek Iwańczuk
2020-09-17refactor: Move URL to op_crates/web (#7544)Bartek Iwańczuk
2020-09-17fix(cli/console): escape non printable characters in object entries (#7533)Casper Beyer
2020-09-17refactor: use Symbol.for instead of Symbol in cli/rt/ (#7537)Bartek Iwańczuk
2020-09-17refactor: 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-17refactor: disable URL.createObjectUrl (#7543)Bartek Iwańczuk
2020-09-17fix: Use Buffer.writeSync in MultipartBuilder (#7542)Ryan Dahl
2020-09-17refactor: make fetch use op_fetch_read instead of op_read (#7529)Ryan Dahl
2020-09-16refactor: 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-16simplify global properties (#7502)Ryan Dahl
2020-09-13fix(WebSocket): no panic on failed connect + handle promise rejection via ↵Luca Casonato
error event (#7437)
2020-09-12refactor: improve tsc diagnostics (#7420)Kitson Kelly
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-09fix(op_crates/web): Use "deno:" URLs for internal script specifiers (#7383)Nayeem Rahman
2020-09-08feat(console): print proxy details (#7139)uki00a
2020-09-08fix: Empty Response body returns 0-byte array (#7387)Casper Beyer
2020-09-05feat: Implement WebSocket API (#7051)crowlKats
2020-09-04fix: don't expose globalThis.__bootstrap (#7344)Kitson Kelly
2020-09-01simplify deno_web init (#7313)Ryan Dahl
2020-09-01fix(URLSearchParams): fix handling of + character (#7314)Yoshiya Hinosawa
2020-09-01fix: use millisecond precision for Deno.futime and Deno.utime (#7299)Casper Beyer
2020-08-31feat(unstable): add Deno.futime and Deno.futimeSync (#7266)Casper Beyer
2020-08-29fix(URL): Add missing part assignment (#7239)Nayeem Rahman
2020-08-28refactor: migrate ops to new dispatch wrapper (#7118)Bartek Iwańczuk
2020-08-26Simplify ErrBox-to-class mapping & hook it up to core json ops (#7195)Bert Belder
2020-08-26refactor: remove OpError, use ErrBox everywhere (#7187)Bert Belder
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2020-08-24fix(console): handle escape sequences when logging objects (#7171)Tuan Le
2020-08-21fix(URL): Don't encode "'" in non-special query strings (#7152)Nayeem Rahman
2020-08-21fix: Allow isolated "%"s when parsing file URLs (#7108)Nayeem Rahman
2020-08-20fix: Create body stream from any valid bodySource (#7128)Kurt Mackey
Fixes #6752
2020-08-19refactor(op_crates/web): move abort signal (#7117)Luca Casonato
2020-08-18Async op dispatcher support with 'stateful_json_op_(a)sync()' (#7095)Bert Belder
Closes: #7020
2020-08-17Blob.arrayBuffer returns uint8array (#7086)crowlKats
2020-08-17Fix handling of multiple spaces in URLSearchParams (#7068)Joel Chippindale
This ensures that all spaces are set to be "+" in the string rather than just the first and brings deno into line with how browsers handle spaces in URLSearchParams, see #7001.
2020-08-14refactor(cli/rt): inline single line single use open helper functions (#7046)Casper Beyer
2020-08-12feat: Support file URLs in Deno.run for executable (#6994)Nayeem Rahman
2020-08-12fix: URLSearchParams.toString() behaviour is different from browsers (#7017)Prabhanjan