Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-06-27 | feat(std/datetime): add is leap and difference functions (#4857) | Ali Hasani | |
2020-06-26 | v1.1.2 | Bartek Iwańczuk | |
2020-06-26 | test(std/wasi): add read, write and metadata tests (#6494) | Casper Beyer | |
2020-06-26 | perf(std/hash): optimize for speed (O3) (#6499) | Casper Beyer | |
2020-06-26 | test(wasi/std): remove v8 flags from test runner (#6496) | Casper Beyer | |
2020-06-26 | fix(cli/js/web/url): Support UNC paths on Windows (#6418) | Nayeem Rahman | |
2020-06-25 | refactor(std/testing): Remove unuseful statement (#6486) | Yasser A.Idrissi | |
2020-06-25 | fix(std/io): Make BufWriter/BufWriterSync.flush write all chunks (#6269) | Marcos Casagrande | |
2020-06-25 | fix(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-25 | docs: replace delCookie with deleteCookie (#6467) | Stanislav | |
2020-06-25 | refactor: shift copyBytes and tweak deps to reduce dependencies (#6469) | Chris Knight | |
2020-06-24 | doc(std/wasi): fix example (#6464) | Marcos Casagrande | |
2020-06-24 | doc(std/wasi) add a list of supported syscalls (#6460) | Casper Beyer | |
2020-06-24 | feat(std/wasi): add wasi_snapshot_preview1 (#6441) | Casper Beyer | |
2020-06-24 | fix(std/testing) assertArrayContains should work with any array-like (#6402) | Casper Beyer | |
2020-06-23 | fix(std/node): fix readFile types, add encoding types (#6451) | Benjamin Lupton | |
2020-06-23 | fix(std/node): global process should usable (#6392) | Benjamin Lupton | |
2020-06-23 | fix(std/testing): assertThrows gracefully fails if non-Error thrown (#6330) | Rob Waller | |
2020-06-21 | feat(std/node): support hex / base64 encoding in Buffer (#6414) | Marcos Casagrande | |
2020-06-21 | BREAKING(std/encoding/hex): reorder encode & decode arguments (#6410) | Marcos Casagrande | |
refactor to match other src/dst methods | |||
2020-06-20 | Remove Deno.dir and dirs dependency (#6385) | Ryan Dahl | |
2020-06-20 | docs: document and add examples of expandGlob (#6404) | Yoshiya Hinosawa | |
2020-06-19 | v1.1.1 | Ryan Dahl | |
2020-06-18 | feat(std/log): expose logger name to LogRecord (#6316) | Chris Knight | |
2020-06-18 | typo (#6356) | Kiffie Liversage | |
2020-06-16 | Update assertions names in std/testing README (#6318) | Vladimir Iakovlev | |
2020-06-16 | feat(std/hash): reimplement all hashes in WASM (#6292) | skdltmxn | |
2020-06-15 | fix: MuxAsyncIterator throws muxed errors (#6295) | Kitson Kelly | |
Fixes #5260 | |||
2020-06-13 | Fix assertEqual so that it handles URL objects (#6278) | Joel Chippindale | |
2020-06-13 | fix(std/node): added tests for static methods of Buffer (#6276) | David Gonzalez | |
2020-06-13 | Doc: Node buffer is now supported (#6274) | Michael Yuan | |
2020-06-13 | fix(std/io): Use Deno.test in writers_test (#6273) | Marcos Casagrande | |
2020-06-12 | refactor: Don't destructure the Deno namespace (#6268) | Nayeem Rahman | |
2020-06-12 | fix(std/io): BufWriter/StringWriter bug (#6247) | Marcos Casagrande | |
2020-06-12 | v1.1.0 | Bartek Iwańczuk | |
2020-06-12 | Revert "feat: add Deno.osName()" (#6261) | Ryan Dahl | |
Deno.build.os provides the same functionality This reverts commit 6ccf9037a6b36c81ea0e6ac12d0e2dbd793f6114. | |||
2020-06-12 | feat(std/log): inline and deferred statement resolution logging (#5192) | Chris Knight | |
2020-06-12 | make std deno-lint clean (#6240) | Ryan Dahl | |
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2020-06-11 | feat: add Deno.osName() (#5714) | Rubin Bhandari | |
2020-06-10 | fix(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-10 | minor fix to websocket readme (#6207) | Ch3ri0ur | |
2020-06-09 | Remove 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-09 | Readme cleanup in encoding and ws (#6209) | Ch3ri0ur | |
2020-06-09 | fix(std/testing/bench): Make progress callback async (#6175) | Szalay Kristóf | |
2020-06-09 | fix(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-09 | fix(cli/js/process): Strengthen socket types based on pipes (#4836) | Nayeem Rahman | |
2020-06-08 | cleanup std/tar (#6185) | Marcos Casagrande | |
2020-06-08 | feat(std/encoding/binary): add varnumBytes(), varbigBytes() (#5173) | Oliver Lenehan | |
2020-06-09 | fix(http/server): flaky test on Windows (#6188) | Marcos Casagrande | |
2020-06-08 | doc(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 |