summaryrefslogtreecommitdiff
path: root/std
AgeCommit message (Collapse)Author
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
2020-06-09fix(std/testing/bench): Make progress callback async (#6175)Szalay Kristóf
2020-06-09fix(std/node): emitter.removeAllListeners (#5583)blairzhao111
When given a non-registered eventName to emitter.removeAllListeners(eventName), current code would remove all listeners instead of silently skip, which is not ideal.
2020-06-09fix(cli/js/process): Strengthen socket types based on pipes (#4836)Nayeem Rahman
2020-06-08cleanup std/tar (#6185)Marcos Casagrande
2020-06-08feat(std/encoding/binary): add varnumBytes(), varbigBytes() (#5173)Oliver Lenehan
2020-06-09fix(http/server): flaky test on Windows (#6188)Marcos Casagrande
2020-06-08doc(std/fs): fix sync walk example (#6174)jersou
The example doesn't compile : Property 'filename' does not exist on type 'WalkEntry'. The property has been renamed : fileInfo.filename → fileInfo.name
2020-06-08feat(std/node) - Add util.promisify (#5540)Marcos Casagrande
2020-06-08fix(std/http): Prevent crash on UnexpectedEof and InvalidData (#6155)Marcos Casagrande
2020-06-07refactor(std/signal): Replace setTimeout with IIFE (#6153)Marcos Casagrande
2020-06-07feat(std/node) add util.types (#6159)Peter Evers
2020-06-07refactor(std): remove testing dependencies from non-test code (#5838)Chris Knight
2020-06-07refactor(std/http): rename delCookie to deleteCookie (#6088)Tim Reichen
2020-06-06feat(std/node): Buffer (#5925)Nikolai Vavilov
2020-06-06fix: use queueMicrotask instead of setTimeout (#6112)Marcos Casagrande
2020-06-06readme for std/hash (#6139)Deepak Vishwakarma
2020-06-06fix(std/io): StringReader implementation (#6148)Ryan Dahl
2020-06-05added documentation with sample for std/io mod (#6106)Deepak Vishwakarma
2020-06-05Rename abbreviated assertions in std/testing (#6118)Casper Beyer
2020-06-05fix: revert setInterval log flushing as it prevents process completion (#6127)Chris Knight
2020-06-04feat(std/hash): add sha3 (#5558)skdltmxn
2020-06-04doc: Improved ws example and README (#5636)Yusuke Sakurai
2020-06-04feat(std/testing): Allow non-void promises in assertThrowsAsync (#6052)Jon Short
2020-06-03refactor(std/testing/bench): Remove differentiating on runs count (#6084)Szalay Kristóf
2020-06-03fix(std/http): Don't use assert() for user input validation (#6092)Nayeem Rahman
2020-06-03fix(std/http/file_server): args handling only if invoked directly (#5989)matheus
2020-06-03fix(std/testing/bench): clock assertions without --allow-hrtime (#6069)Szalay Kristóf
2020-06-03docs: benchmarking (#6075)Szalay Kristóf
2020-06-03v1.0.5Ryan Dahl
2020-06-03feat(std/encoding): add base64url module (#5976)timonson
2020-06-02fix(std/testing/asserts): Format values in assertArrayContains() (#6060)Nayeem Rahman
2020-06-02feat(std/testing): benching progress callback (#5941)Szalay Kristóf
2020-06-02v1.0.4Bartek Iwańczuk
2020-06-02fix: Better use of @ts-expect-error (#6038)Kitson Kelly