summaryrefslogtreecommitdiff
path: root/std
AgeCommit message (Collapse)Author
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
2020-06-25fix(std/node/process): env, argv exports (#6455)Benjamin Lupton
The promise approach still required permissions to be specified at initialisation, rather than at request. Using a Proxy instance solves this permission issue. The Proxy instance approach also eliminates the need for the await. Achieving direct compatibility with Node.js. /ref pr #6392 /ref commit d16337cc9c59732fe81655482e08b72d844472e6
2020-06-25docs: replace delCookie with deleteCookie (#6467)Stanislav
2020-06-25refactor: shift copyBytes and tweak deps to reduce dependencies (#6469)Chris Knight
2020-06-24doc(std/wasi): fix example (#6464)Marcos Casagrande
2020-06-24doc(std/wasi) add a list of supported syscalls (#6460)Casper Beyer
2020-06-24feat(std/wasi): add wasi_snapshot_preview1 (#6441)Casper Beyer
2020-06-24fix(std/testing) assertArrayContains should work with any array-like (#6402)Casper Beyer
2020-06-23fix(std/node): fix readFile types, add encoding types (#6451)Benjamin Lupton
2020-06-23fix(std/node): global process should usable (#6392)Benjamin Lupton
2020-06-23fix(std/testing): assertThrows gracefully fails if non-Error thrown (#6330)Rob Waller
2020-06-21feat(std/node): support hex / base64 encoding in Buffer (#6414)Marcos Casagrande
2020-06-21BREAKING(std/encoding/hex): reorder encode & decode arguments (#6410)Marcos Casagrande
refactor to match other src/dst methods
2020-06-20Remove Deno.dir and dirs dependency (#6385)Ryan Dahl
2020-06-20docs: document and add examples of expandGlob (#6404)Yoshiya Hinosawa
2020-06-19v1.1.1Ryan Dahl
2020-06-18feat(std/log): expose logger name to LogRecord (#6316)Chris Knight
2020-06-18typo (#6356)Kiffie Liversage
2020-06-16Update assertions names in std/testing README (#6318)Vladimir Iakovlev
2020-06-16feat(std/hash): reimplement all hashes in WASM (#6292)skdltmxn
2020-06-15fix: MuxAsyncIterator throws muxed errors (#6295)Kitson Kelly
Fixes #5260
2020-06-13Fix assertEqual so that it handles URL objects (#6278)Joel Chippindale
2020-06-13fix(std/node): added tests for static methods of Buffer (#6276)David Gonzalez
2020-06-13Doc: Node buffer is now supported (#6274)Michael Yuan
2020-06-13fix(std/io): Use Deno.test in writers_test (#6273)Marcos Casagrande
2020-06-12refactor: Don't destructure the Deno namespace (#6268)Nayeem Rahman
2020-06-12fix(std/io): BufWriter/StringWriter bug (#6247)Marcos Casagrande
2020-06-12v1.1.0Bartek Iwańczuk
2020-06-12Revert "feat: add Deno.osName()" (#6261)Ryan Dahl
Deno.build.os provides the same functionality This reverts commit 6ccf9037a6b36c81ea0e6ac12d0e2dbd793f6114.
2020-06-12feat(std/log): inline and deferred statement resolution logging (#5192)Chris Knight
2020-06-12make std deno-lint clean (#6240)Ryan Dahl
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2020-06-11feat: add Deno.osName() (#5714)Rubin Bhandari
2020-06-10fix(std/archive): untar (#6217)Marcos Casagrande
- Fix `Untar` for tarballs with multiple files (Currently throwing `"checksum error"`) - Fix parsing, now all `ustar` versions should be supported. Linux `tar -cvf deno.tar dir/` is not working on master. - Added `asyncIterator` - Added README.md
2020-06-10minor fix to websocket readme (#6207)Ch3ri0ur
2020-06-09Remove redundant call to `ensureDirSync` (#6189)Casper Beyer
There's a seemingly redundant call to `ensureDirSync` right after a call to `await ensureDir`. This removes the offending call.
2020-06-09Readme cleanup in encoding and ws (#6209)Ch3ri0ur