Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-07-08 | feat(unstable): Deno.ppid (#6539) | uki00a | |
2020-07-08 | feat(cli): Add WriteFileOptions to writeTextFile & writeTextFileSync (#6280) | Marcos Casagrande | |
2020-07-07 | perf(cli/body): improve .arrayBuffer() speed (#6669) | Marcos Casagrande | |
2020-07-07 | feat(test): Add support for regex in filter flag (#6343) | Sebastien Filion | |
Currently, the documentation makes it sound like the test subcommand's filter flag could accept some kind of pattern matching value like a glob or a regex, although the function "createFilterFn" accepts a regex as an argument, there's no way to pass an actual regex value from the CLI. This commit makes it possible to pass a string that could be cast as regex when string matches "^/.*/$". With this change, a user can use the filter flag as follow: deno test --filter "/test-.+/" Also tested that `\` get escaped properly, on MacOS at least, and this is also a valid flag: deno test --filter "/test-\d+/" | |||
2020-07-06 | feat: Deno.chown() make uid, gid args optional (#4612) | dubiousjim | |
2020-07-05 | fix(cli/fetch): response constructor default properties (#6650) | Marcos Casagrande | |
2020-07-04 | Update timers to ignore Date Override (#6552) | Kyle June | |
2020-07-04 | chore: port http_server.py to rust (#6364) | Ryan Dahl | |
2020-07-04 | test(cli): enable realpath symlink tests on Windows (#6627) | Casper Beyer | |
2020-07-01 | upgrade: swc_ecma_visit, dprint, deno_lint (#6580) | Bartek Iwańczuk | |
2020-06-28 | fix(cli/body): Maximum call stack size exceeded error (#6537) | Marcos Casagrande | |
2020-06-27 | fix(cli): Buffer.bytes() ArrayBuffer size (#6511) | Marcos Casagrande | |
2020-06-26 | feat(unstable): add Deno.fdatasyncSync and fdatasync (#6403) | Casper Beyer | |
2020-06-26 | fix(cli/js/web/url): Support UNC paths on Windows (#6418) | Nayeem Rahman | |
2020-06-26 | fix(cli): strings shouldn't be interpreted as file URLs (#6412) | Casper Beyer | |
2020-06-25 | remove duplicate identifier (#6483) | Ali Hasani | |
2020-06-25 | fix: panic when process stdio rid is 0 or invalid (#6405) | Luca Casonato | |
2020-06-25 | Fix readLinkSync and readLink tests on Windows (#6463) | Casper Beyer | |
2020-06-25 | Remove stale comment referring to deleted code (#6462) | Casper Beyer | |
2020-06-25 | refactor(cli/tests/unit) to use assertThrows (#6459) | Casper Beyer | |
2020-06-24 | fix(cli/js/web/console): Improve string quoting behaviour (#6457) | Nayeem Rahman | |
2020-06-23 | fix(cli/web): Support URLSearchParam as Body (#6416) | Chris Couzens | |
The following used to fail in Deno despite working in the browser: ```javascript new Request('http://localhost/', {method: 'POST', body: new URLSearchParams({hello: 'world'})}).text().then(console.log) ``` | |||
2020-06-22 | feat(unstable): add Deno.fstatSync and fstat (#6425) | Casper Beyer | |
2020-06-21 | feat(unstable): add Deno.fsyncSync and fsync (#6411) | Casper Beyer | |
2020-06-20 | Remove Deno.dir and dirs dependency (#6385) | Ryan Dahl | |
2020-06-20 | feat(unstable): add Deno.ftruncate and ftruncateSync (#6243) | Casper Beyer | |
2020-06-19 | build: lint cli/tests/unit using deno lint (#6327) | Alan Gou | |
2020-06-18 | fix: decode path properly on win32 (#6351) | River | |
2020-06-15 | unixpacket should also return byte length on send (#6291) | Peter Evers | |
2020-06-13 | fix: DatagramConn.send should return bytes sent (#6265) | Kermit Xuan | |
2020-06-12 | refactor: Don't destructure the Deno namespace (#6268) | Nayeem Rahman | |
2020-06-12 | feat: Add TestDefinition::only (#5793) | Nayeem Rahman | |
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 | improve truncate tests (#6251) | Casper Beyer | |
2020-06-12 | fix(cli/js): broken truncate permission tests (#6249) | Casper Beyer | |
The tests for testing that `Deno.truncateSync` and `Deno.truncate` require write permissions seem to not call the functions they are testing *at all* and are calling `Deno.mkdir` and `Deno.mkdirSync` instead. This commit replaces those calls with calls to `Deno.truncateSync` and `Deno.truncate` respectively. | |||
2020-06-11 | feat: add Deno.osName() (#5714) | Rubin Bhandari | |
2020-06-11 | feat: URL support in Deno filesystem methods (#5990) | River | |
2020-06-10 | fix(URL): IPv6 hostname support (#5766) | Josh Byrnes | |
2020-06-10 | fix: Remove try-catch from Buffer.readFrom, readFromSync (#6161) | Casper Beyer | |
2020-06-10 | fix udp BorrowMutError (#6221) | Ryan Dahl | |
2020-06-10 | fix(cli/js/process): Always return a code in ProcessStatus (#5244) | Nayeem Rahman | |
2020-06-09 | fix: Deno.readSync on stdin (#6126) | Casper Beyer | |
Currently sync operations on stdin are failing because tokio::Stdin cannot be converted to a std::File. This commit replaces tokio::stdin with a raw file descriptor wrapped in a std::fs::File which can be converted to a tokio::File and back again making the synchronous version of op_read actually work. | |||
2020-06-09 | feat(cli): Add Deno.env.delete() (#5859) | Tuan Le | |
2020-06-09 | fix(cli/js/process): Strengthen socket types based on pipes (#4836) | Nayeem Rahman | |
2020-06-08 | feat(cli/js/net): make rid on listener public (#5571) | Peter Indiola | |
2020-06-08 | fix(cli/web/fetch): multipart/form-data request body support for binary ↵ | Marcos Casagrande | |
files (#5886) | |||
2020-06-05 | Rename abbreviated assertions in std/testing (#6118) | Casper Beyer | |
2020-06-05 | Revert "fix: Use # to denote line number in stack traces" (#6119) | Ryan Dahl | |
This reverts commit c4c6a8dae488a3473ee09b0e3a54943b706d8944 There is some controversy about this change because vscode doesn't interpret the fragments correctly. Needs more discussion before landing. | |||
2020-06-05 | fix: Use # to denote line number in stack traces (#6114) | Andrew Mitchell | |
This makes the URLs in stack traces actual URLs to the files. Before: https://deno.land/std/testing/asserts.ts:138:11 After: https://deno.land/std/testing/asserts.ts#138:11 | |||
2020-06-03 | fix(fetch): Support 101 status code (#6059) | Marcos Casagrande | |