Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-04-28 | BREAKING: Remove Deno.EOF, use null instead (#4953) | Nayeem Rahman | |
2020-03-23 | feat: Support Unix Domain Sockets (#4176) | João Souto | |
2020-01-09 | feat: Deno.args now does not include script (#3628) | Ry Dahl | |
Previously Deno.args was ["script.js", "arg1", "arg2"] Now it is just ["arg1", "arg2"] BREAKING CHANGE | |||
2019-10-28 | Use top-level for-await in various places (#3217) | Andy Hayden | |
2019-09-20 | dial/listen API change (#3000) | Ryan Dahl | |
Previously: dial("tcp", "deno.land:80") Now: dial({ hostname: "deno.land", port: 80, transport: "tcp" }) Similarly with listen(). | |||
2019-07-06 | io: change Reader interface (#2591) | Yoshiya Hinosawa | |
Instead of returning { nread: number, eof: bool }, read() returns EOF | number. | |||
2019-05-14 | Rename HTTP benchmarks (#2350) | Ryan Dahl | |