| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-10-03 | Implemented readDirSync, readDir | J2P | |
| 2018-10-03 | Rename tsconfig.generated.json to tsconfig.declarations.json | Ryan Dahl | |
| 2018-09-30 | Add copyFile/copyFileSync (#863) | Kevin (Kun) "Kassimo" Qian | |
| 2018-09-30 | Add deno.truncate (#805) | ztplz | |
| 2018-09-28 | Adds basic File I/O and FD table. | Ryan Dahl | |
| Adds deno.stdin, deno.stdout, deno.stderr, deno.open(), deno.write(), deno.read(), deno.Reader, deno.Writer, deno.copy(). Fixes #721. tests/cat.ts works. | |||
| 2018-09-26 | Use the thread pool for blocking I/O | Ryan Dahl | |
| 2018-09-25 | Make Deno multithreaded. | Ryan Dahl | |
| By using the tokio default runtime. This patch makes all of the ops thread safe. Adds libdeno to JS globals to make for easier testing. Preliminary work for #733. | |||
| 2018-09-25 | Use lazy_static for HttpsConnector | Ryan Dahl | |
| And rename net.rs to http.rs Share HTTP connection. | |||
| 2018-09-25 | Implement deno.readlink() (#797) | Mani Maghsoudlou | |
| 2018-09-24 | build: always enable clang color output | Bert Belder | |
| 2018-09-22 | Implement deno.trace() (#795) | Kevin (Kun) "Kassimo" Qian | |
| 2018-09-20 | Add deno.arch/deno.platform (#773) | Kevin (Kun) "Kassimo" Qian | |
| 2018-09-18 | Implement deno.symlink() (#742) | Mani Maghsoudlou | |
| 2018-09-16 | Add the 'dirs' crate, enable the required 'winapi' features | Kevin (Kun) "Kassimo" Qian | |
| 2018-09-16 | Improve integration of dom_types | Kitson Kelly | |
| 2018-09-14 | Rename fetch_types.d.ts to dom_types.d.ts | Parsa Ghadimi | |
| 2018-09-14 | Implement Blob | Parsa Ghadimi | |
| 2018-09-12 | feat: add deno.makeTempDir | Yoshiya Hinosawa | |
| 2018-09-12 | build: rebuild bundle when npm packages are added/removed/updated | Bert Belder | |
| 2018-09-12 | Dedup js source list in BUILD.gn | Ryan Dahl | |
| 2018-09-12 | Implement deno.rename() (#731) | Mani Maghsoudlou | |
| 2018-09-12 | Add remove(), removeAll(). | Kevin (Kun) "Kassimo" Qian | |
| and removeSync(), removeAllSync(). | |||
| 2018-09-11 | Implement deno.stat() and deno.lstat() | Sajjad Hashemian | |
| 2018-09-10 | Implement deno.mkdir() | Sajjad Hashemian | |
| 2018-09-10 | Implement deno.readFile() | Ryan Dahl | |
| As an example of how to implement ops that have both sync and async versions. | |||
| 2018-09-10 | fbs_util.ts -> dispatch.ts | Ryan Dahl | |
| And send() -> sendSync() | |||
| 2018-09-09 | Add missing ts files to BUILD.gn | Ryan Dahl | |
| 2018-09-03 | Format. | Ryan Dahl | |
| 2018-09-01 | Remove lib.globals.d.ts | Kitson Kelly | |
| 2018-09-01 | Bundle most types into globals.d.ts (#642) | Kitson Kelly | |
| 2018-08-30 | Support https imports. | Ryan Dahl | |
| Adds hyper-rustls to the build. Use ring for sha1 instead of "ssh1" crate. Fixes #528. | |||
| 2018-08-30 | Downgrading tokio to registry version. | Ryan Dahl | |
| Prep for rustls. | |||
| 2018-08-29 | Implement makeTempDirSync() | Bert Belder | |
| 2018-08-29 | build: work around sccache false positives due to asm .incbin usage | Bert Belder | |
| 2018-08-26 | build: fix typescript dirs not correctly rebased | Bert Belder | |
| 2018-08-26 | build: do not bake absolute paths into deno_ns | Bert Belder | |
| 2018-08-25 | Build: make it possible to use ccache/sccache on windows | Bert Belder | |
| Also auto-detect the availability of sccache in setup.py. | |||
| 2018-08-22 | runtime.ts refactor into compiler.ts (#564) | Ryan Dahl | |
| Adds compiler_test.ts | |||
| 2018-08-20 | First pass at fetch() | Ryan Dahl | |
| With help from Thomas Ghysels <info@thomasg.be> | |||
| 2018-08-20 | Add hyper dependencies | Thomas Ghysels | |
| 2018-08-19 | chore: move libdeno files to //libdeno/ | Yoshiya Hinosawa | |
| 2018-08-18 | Rename :all target to :default | Ryan Dahl | |
| 2018-08-16 | Remove dead code: src/flatbuffer_builder.cc | Ryan Dahl | |
| 2018-08-16 | Implement deno_handle_msg_from_js in Rust | Ryan Dahl | |
| Fixes #419, #414. | |||
| 2018-08-13 | fix: change :test_cc to v8_executable | Yoshiya Hinosawa | |
| 2018-08-13 | Fix transitive rust deps. | Ryan Dahl | |
| Use a single out_dir for all rust crates. | |||
| 2018-08-11 | Rename mock_runtime_test to libdeno_test | Ryan Dahl | |
| Fixes #465 | |||
| 2018-08-10 | Fix stacktraces in deno_ns | Kitson Kelly | |
| 2018-08-09 | Add TextEncoder/TextDecoder support. | Ryan Dahl | |
| Fixes #470 This commit increases size: out/release/gen/bundle/main.js 7.3M -> 7.9M out/release/gen/bundle/main.js.map 11M -> 12M out/release/gen/snapshot_deno.bin 34M -> 37M out/release/deno 49M -> 53M Note the amount in the JS code added is quite small: 4.0K node_modules/text-encoding/index.js 4.0K node_modules/@types/text-encoding/index.d.ts 4.0K js/text_encoding.ts Unclear to me what is causing the jump in snapshot size. | |||
| 2018-08-09 | First pass at setTimeout with Tokio (#434) | Ryan Dahl | |
