summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-08-26Remove some more unnecessary 'to_string()' calls (#7190)Bert Belder
2020-08-26refactor: remove OpError, use ErrBox everywhere (#7187)Bert Belder
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2020-08-25fix(std/wasi): return flags from fd_fdstat_get (#7112)Casper Beyer
2020-08-25test(std/wasi): add wasi-testsuite as a submodule (#7042)Casper Beyer
2020-08-25docs(std/fs): provide more context on unstable perm (#6748)Paul Jones
2020-08-24feat: update to TypeScript 4.0 (#6514)Kitson Kelly
2020-08-24fix(std/wasi): always capture syscall exceptions (#7116)Casper Beyer
This wraps all exported syscalls in an exception catching delegate to ensure that the stack is never unexpectedly unwound.
2020-08-24fix(op_crates/web): throw TypeError on invalid input types in ↵Craig Morten
TextDecoder.decode() (#7179)
2020-08-24fix(console): handle escape sequences when logging objects (#7171)Tuan Le
2020-08-24Fix incorrect comment on useDefineForClassFields (#6386)Rob Palmer
2020-08-24Typo (#7177)Danny Denenberg
2020-08-24test(cli): use assertThrows and assertThrowsAsync for chown tests (#7106)Casper Beyer
2020-08-24BREAKING(std/wasi): rename Module to Context (#7110)Casper Beyer
This commit renames Module and ModuleOptions to context to avoid stutter confusion, e.g avoid having documentation that says things like instantiate the snapshot's module's module.
2020-08-24BREAKING(std/wasi): use record for exports (#7109)Casper Beyer
2020-08-24refactor(cli/build.rs): extract ts version (#7127)Yoshiya Hinosawa
2020-08-23fix(doc): stack overflow for .d.ts files (#7167)Bartek Iwańczuk
2020-08-23upgrade: swc, dprint, deno_lint, deno_doc (#7162)Bartek Iwańczuk
2020-08-23docs(fs/walk): fix code example (#7166)木杉
2020-08-21feat(std/node): add URL export (#7132)Benjamin Lupton
2020-08-21Remove old references to libdeno (#7149)Max Drosdo.www
2020-08-21fix(URL): Don't encode "'" in non-special query strings (#7152)Nayeem Rahman
2020-08-21Split core http benchmark into 'bin_ops' and 'json_ops' variants (#7147)Bert Belder
2020-08-21v1.3.1Bartek Iwańczuk
2020-08-21fix(docs): remove Deno.dir (#7144)迷渡
2020-08-21fix: Allow isolated "%"s when parsing file URLs (#7108)Nayeem Rahman
2020-08-21Convert the remaining http_bench ops to json ops (#7143)Bert Belder
2020-08-20add links in the manual (#7120)tokiedokie
2020-08-20fix(std/node): misnamed assert exports (#7123)Schwarzkopf Balázs
2020-08-20docs(std/wasi): fix reference to the wrong object in example (#7124)Casper Beyer
2020-08-20fix: Create body stream from any valid bodySource (#7128)Kurt Mackey
Fixes #6752
2020-08-20First pass at json ops in core (#7033)Ryan Dahl
Adds Deno.core.jsonOpSync and Deno.core.jsonOpAsync
2020-08-19refactor: move cli/doc/ to separate crate (#7103)Bartek Iwańczuk
2020-08-19refactor(op_crates/web): move abort signal (#7117)Luca Casonato
2020-08-19Make Rc/Arc wrapper around State/GlobalState visible (#7104)Bert Belder
2020-08-18refactor(std/datetime): remove currentDayOfYear (#7059)Tim Reichen
2020-08-18refactor: permissions (#7074)Nayeem Rahman
2020-08-18Async op dispatcher support with 'stateful_json_op_(a)sync()' (#7095)Bert Belder
Closes: #7020
2020-08-18Fix nightly and Windows-only clippy warnings (#7095)Bert Belder
2020-08-18feat(std/node): add basic asserts (#7091)Benjamin Lupton
2020-08-18upgrade: swc, deno_lint, dprint (#7098)Bartek Iwańczuk
2020-08-18docs(contributing/artchitecture): Add Deno conference youtube link (#6859)Yasser A.Idrissi
2020-08-18Upgrade third_party and dprint plugins. (#7097)David Sherret
2020-08-18test(cli): use assertThrowsAsync for permission tests (#7092)Casper Beyer
2020-08-18remove Table of Contents in docs/contributing/style_guide.md (#7067)tokiedokie
2020-08-18refactor(doc): add helper functions for DocNode (#7083)Bartek Iwańczuk
2020-08-17fix(std/encoding/toml): Stop TOML parser from detecting numbers in strings. ↵danielwippermann
(#7064) Before this patch the TOML parser would incorrect treat the string "base64data0xdamaged" in a declaration as a hex number because the corresponding check triggers even when the "0x" is inside a double quoted string literal as long as it is followed by at least one hex character.
2020-08-17fix(std/encoding/csv): improve error message on ParseError (#7057)uki00a
2020-08-17Blob.arrayBuffer returns uint8array (#7086)crowlKats
2020-08-17Simplify deno_core_http_bench op state (#7038)Ryan Dahl
Removes unnecessary wrappers around ResourceTable and CoreIsolate. Importantly: now uses the resource table inside CoreIsolateState rather than a different one. Removes derive_deref dependency
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.