summaryrefslogtreecommitdiff
path: root/std
AgeCommit message (Collapse)Author
2020-07-09fix(std/http): properly return port 80 in _parseAddrFromStr (#6635)Evan Bertrand
2020-07-08feat: add --no-check option (#6456)Kitson Kelly
This commit adds a "--no-check" option to following subcommands: - "deno cache" - "deno info" - "deno run" - "deno test" The "--no-check" options allows to skip type checking step and instead directly transpiles TS sources to JS sources. This solution uses `ts.transpileModule()` API and is just an interim solution before implementing it fully in Rust.
2020-07-07fix(std): base64 in workers (#6681)Marcos Casagrande
2020-07-07test(std/wasi): add std file read and write tests (#6671)Casper Beyer
2020-07-06Fix definition of URL constructor (#6653)Ryan Dahl
2020-07-06Fix scope in std/md5 (#6662)crowlKats
2020-07-05std/log - Expose Logger type and improve public interface for get & set log ↵Paul Thompson
levels (#6617)
2020-07-05fix(std/tesing/asserts): assertEquals/NotEquals should use milliseconds in ↵uki00a
Date (#6644)
2020-07-05fix(std/wasi): return errno::success from fd_tell (#6636)Casper Beyer
2020-07-05test(std/wasi) add std::fs::File seek test (#6648)Casper Beyer
2020-07-05fix(std/mime): boundary random hex values (#6646)Anton Dmytriichuk
2020-07-05re-enable follow symlinks walk test on Windows (#6626)Casper Beyer
2020-07-05feat(std/wasi): implement fd_readdir (#6631)Casper Beyer
2020-07-05test(std/node): include windows in link tests (#6620)Casper Beyer
2020-07-05test(std/wasi): explicitly assert each expected arg (#6633)Casper Beyer
2020-07-05fix(std/node): add encoding argument to Buffer.byteLength (#6639)Marcos Casagrande
2020-07-05feat(std/node): add buf.equals method (#6640)Marcos Casagrande
2020-07-03v1.1.3Bartek Iwańczuk
2020-07-02improve(std/asserts): allow assert functions to specify type parameter (#6413)WJH
2020-07-02test(std/wasi): add create directory and file tests (#6603)Casper Beyer
2020-07-01upgrade: swc_ecma_visit, dprint, deno_lint (#6580)Bartek Iwańczuk
2020-06-30Update std/http/cookie types to not require full ServerRequest object (#6577)Kitson Kelly
2020-06-30fix(std/log): print "{msg}" when log an empty line (#6381)Water Zheng
2020-06-29test(std/wasi): add rename test (#6573)Casper Beyer
2020-06-29test(std/wasi): add hard-link test (#6571)Casper Beyer
2020-06-29feat(std/wasi): implement fd_sync (#6560)Casper Beyer
2020-06-29fix(std/node): do not use absolute urls (#6562)Ryan Dahl
2020-06-29feat(std/wasi) implement fd_filestat_set_size (#6558)Casper Beyer
2020-06-29feat(std/wasi): implement fd_datasync (#6556)Casper Beyer
2020-06-29fix(std/http): Support ipv6 parsing (#5263)Oron Sharabi
2020-06-29feat(std/wasi) implement fd_filestat_get (#6555)Casper Beyer
2020-06-28feat(std/node): Add Buffer.isEncoding (#6521)Marcos Casagrande
2020-06-28docs(std): update paragraph about the tagging process (#6519)Casper Beyer
2020-06-28feat(std/node): Add Buffer.allocUnsafe (#6533)Marcos Casagrande
2020-06-27fix(std/io): export streams.ts & added docs (#6535)Marcos Casagrande
2020-06-27feat(std/io): add fromStreamReader, fromStreamWriter (#5789)Marcos Casagrande
2020-06-27feat(std/node): support hex/base64 encoding in fs.readFile/fs.writeFile (#6512)Marcos Casagrande
2020-06-27test(std/node): Add Buffer tests (#6524)Marcos Casagrande
2020-06-27fix(std/node): add fill & encoding args to Buffer.alloc (#6526)Marcos Casagrande
2020-06-27fix(std/wasi): use lookupflags for path_filestat_get (#6530)Casper Beyer
2020-06-27fix(std/wasi): path_filestat_get padding (#6509)Casper Beyer
2020-06-27fix(std/http): Catch errors on file_server response.send (#6285)Jim van der Voort
2020-06-27feat(std/datetime): add is leap and difference functions (#4857)Ali Hasani
2020-06-26v1.1.2Bartek Iwańczuk
2020-06-26test(std/wasi): add read, write and metadata tests (#6494)Casper Beyer
2020-06-26perf(std/hash): optimize for speed (O3) (#6499)Casper Beyer
2020-06-26test(wasi/std): remove v8 flags from test runner (#6496)Casper Beyer
2020-06-26fix(cli/js/web/url): Support UNC paths on Windows (#6418)Nayeem Rahman
2020-06-25refactor(std/testing): Remove unuseful statement (#6486)Yasser A.Idrissi
2020-06-25fix(std/io): Make BufWriter/BufWriterSync.flush write all chunks (#6269)Marcos Casagrande