Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-07-19 | Port internal TS code to JS (#6793) | Bartek Iwańczuk | |
Co-authored-by: Ryan Dahl <ry@tinyclouds.org> | |||
2020-07-14 | Use dprint for internal formatting (#6682) | David Sherret | |
2020-07-08 | feat: add --no-check option (#6456) | Kitson Kelly | |
This commit adds a "--no-check" option to following subcommands: - "deno cache" - "deno info" - "deno run" - "deno test" The "--no-check" options allows to skip type checking step and instead directly transpiles TS sources to JS sources. This solution uses `ts.transpileModule()` API and is just an interim solution before implementing it fully in Rust. | |||
2020-07-06 | clean up code in cli/js (#6611) | Stanislav | |
2020-06-13 | fix: DatagramConn.send should return bytes sent (#6265) | Kermit Xuan | |
2020-06-08 | feat(cli/js/net): make rid on listener public (#5571) | Peter Indiola | |
2020-05-13 | default to 0.0.0.0 for Deno.listen (#5203) | Pavan Kumar | |
2020-05-13 | Update to TypeScript 3.9 (#4510) | Kitson Kelly | |
2020-04-30 | Unstable methods should not appear in runtime or d.ts (#4957) | Luca Casonato | |
Co-authored-by: Kitson Kelly <me@kitsonkelly.com> | |||
2020-04-29 | refactor: Deno.listener closes when breaking out of async iterator (#4976) | Bartek Iwańczuk | |
2020-04-28 | refactor: factor out datagram from Deno.listen(), make it unstable (#4968) | Bartek Iwańczuk | |
This commit changes Deno.listen() API by factoring out datagram listeners to Deno.listenDatagram(). New Deno.listenDatagram() is unstable. | |||
2020-04-28 | Remove Conn.closeRead (#4970) | Ryan Dahl | |
2020-04-28 | BREAKING: Remove Deno.EOF, use null instead (#4953) | Nayeem Rahman | |
2020-04-28 | BREAKING: address renamed to path in UnixAddr UnixConnectOptions ↵ | Ali Hasani | |
UnixListenOptions (#4959) | |||
2020-04-15 | fix(cli/js/net): Make generator return types iterable (#4661) | Nayeem Rahman | |
2020-03-28 | Update to Prettier 2 and use ES Private Fields (#4498) | Kitson Kelly | |
2020-03-23 | feat: Support Unix Domain Sockets (#4176) | João Souto | |
2020-03-13 | Remove doc strings from cli/js TS files (#4329) | crowlKats | |
Co-authored-by: Ryan Dahl <ry@tinyclouds.org> | |||
2020-03-10 | refactor(cli/js/net): Cleanup iterable APIs (#4236) | Nayeem Rahman | |
Listener and UDPConn are AsyncIterables instead of AsyncIterators. The [Symbol.asyncIterator]()s are defined as generators and the next() methods are gone. "Listener/Socket has been closed" errors are now BadResource. | |||
2020-03-10 | refactor: Cleanup options object parameters (#4296) | Nayeem Rahman | |
2020-03-10 | reorg: move JS ops implementations to cli/js/ops/, part 3 (#4302) | Bartek Iwańczuk | |
Following JS ops were moved to separate files in cli/js/ops directory: - net - tls - fs | |||
2020-03-09 | reorg: move JS ops implementations to cli/js/ops/, part 2 (#4283) | Bartek Iwańczuk | |
Following JS ops were moved to separate files in cli/js/ops directory: - io - process - worker_host - web_worker - plugins - timers - signal - permissions | |||
2020-03-08 | reorg: move JS ops implementations to cli/js/ops/, part 1 (#4264) | Bartek Iwańczuk | |
Following JS ops were moved to separate files in cli/js/ops directory: - compiler - dispatch_json - dispatch_minimal - errors - fetch - fs_events - os - random - repl - resources - runtime_compiler - runtime - tty | |||
2020-02-25 | Clean up how we use opIds (#4118) | Ryan Dahl | |
2020-02-21 | feat: support UDP sockets (#3946) | hazæ41 | |
2020-01-18 | stabilize net Addr (#3709) | Bartek Iwańczuk | |
Co-authored-by: xiaoxintang <15707971810@163.com> | |||
2020-01-18 | rename dial to connect and dialTLS to connectTLS (#3710) | Bartek Iwańczuk | |
2020-01-02 | Happy new year! (#3578) | Ry Dahl | |
2019-12-29 | net: expose shutdown() and ShutdownMode (#3558) | Kevin (Kun) "Kassimo" Qian | |
2019-11-09 | net: Check for closing status when iterating Listener (#3309) | Nayeem Rahman | |
std/http/server.ts: Use listener.next() instead of listener.accept() | |||
2019-10-21 | feat: Deno.listenTLS (#3152) | Bartek Iwańczuk | |
2019-10-04 | Merge deno_cli_snapshots into deno_cli (#3064) | Ryan Dahl | |