Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-12-03 | Turn off kPromiseResolvedAfterResolved warning | Kevin (Kun) "Kassimo" Qian | |
2018-12-03 | Add LSAN build to travis. | Ryan Dahl | |
For now it only runs test_cc and has to filter out a test which leaks. However we will expand this over time until the entire build is LSAN clean. | |||
2018-12-03 | Fix test_cc memory leaks. | Ryan Dahl | |
These were discovered using the LSAN. http://dev.chromium.org/developers/testing/leaksanitizer | |||
2018-12-03 | gn snapshot template's target_name should be target | Ryan Dahl | |
2018-12-03 | Use include_bytes! instead of incbin. | Ryan Dahl | |
This is the second attempt at this patch. The first version was reverted in 2ffd78daf9956a24098d1f959f21882e350e9d37 The problem, I suspect, was that the snapshot was represented as a source_set, which inserted a node into the dependency tree. include_bytes does properly insert the snapshot into rustc's depfile but the use of source_set confused gn. Now the that the deno executable has the create_deno_snapshot as a direct dependency, changes will be propagated. | |||
2018-12-03 | third_party: symlink //third_party/v8/build => //build | Bert Belder | |
2018-12-03 | .gitattributes: add symlink target types | Bert Belder | |
This is a first step toward removing the fix_symlinks() hack from tools/third_party.py. | |||
2018-12-03 | .gitattributes: not all files are text | Bert Belder | |
2018-11-30 | feat: Support for bigints in console | kyraNET | |
2018-11-30 | doc: Remove TS and V8 versions from README file (#1258) | Kyra | |
2018-11-30 | Cargo and GN should build into same directory. | Ryan Dahl | |
Currently gn builds into "target/debug" however cargo tells gn to build into "target/debug/build/deno-26d2b5325de0f0cf/out" This patch changes it so that they both build into "target/debug". | |||
2018-11-30 | v0.2.1 | Ryan Dahl | |
- Allow async functions in REPL (#1233) - Handle Location header relative URI (#1240) - Add deno.readAll() (#1234) - Add Process.output (#1235) - Upgrade to TypeScript 3.2.1 - Upgrade crates: tokio 0.1.13, hyper 0.12.16, ring 0.13.5 | |||
2018-11-30 | Upgrade Prettier to support BigInt syntax in TS | Ryan Dahl | |
2018-11-30 | Upgrade Rust crates | Ryan Dahl | |
2018-11-30 | travis: test rust version before rustup | Ryan Dahl | |
2018-11-30 | Use pylint. | Ryan Dahl | |
2018-11-30 | Add Process.output (#1235) | DanSnow | |
2018-11-30 | Add deno.readAll() (#1234) | DanSnow | |
2018-11-30 | Fix flaky REPL test. | Ryan Dahl | |
2018-11-30 | clippy fixes (#1250) | Andy Hayden | |
2018-11-29 | Upgrade to TypeScript 3.2 | Kitson Kelly | |
2018-11-29 | Add prebuilt/win/v8_debug.lib (#1249) | Ryan Dahl | |
The windows debug build was broken due to libc link errors. | |||
2018-11-29 | Make //build a git submodule | Ryan Dahl | |
So we can float patches before sending them upstream. https://github.com/denoland/chromium_build Remove build_extra/toolchain | |||
2018-11-29 | Replace mutex by atomics (#1238) | F001 | |
2018-11-29 | Handle Location header relative URI (#1240) | Kevin (Kun) "Kassimo" Qian | |
2018-11-29 | Move libdeno build config to libdeno/BUILD.gn | Ryan Dahl | |
2018-11-29 | Fix mac debug build. | Ryan Dahl | |
2018-11-29 | Cleanup setTimeout repl test and alphabetize tests | Andy Hayden | |
2018-11-28 | REPL unblock event loop AND fix REPL setTimeout fire problems | Kevin (Kun) "Kassimo" Qian | |
2018-11-27 | Use prebuilt V8 library by default. | Ryan Dahl | |
This still retains the ability to build V8 from scratch, with an number of configurations. The prebuilt binaries were created using DENO_BUILD_MODE=release ./tools/build.py v8 | |||
2018-11-27 | gitignore vim .swp files | Ryan Dahl | |
2018-11-27 | Don't use use_custom_libcxx=false on travis. | Ryan Dahl | |
2018-11-27 | add test for Buffer edge case | Bartek Iwańczuk | |
2018-11-27 | Add update to changelog (#1227) | Ryan Dahl | |
2018-11-27 | Don't use snapshot for src/isolate.rs tests. | Ryan Dahl | |
2018-11-27 | Disable flaky fetch tests. | Ryan Dahl | |
2018-11-26 | Typo fixes in Docs.md | Thomas Beirne | |
Just fixing a couple minor typos - formates -> formats - configuation -> configuration | |||
2018-11-23 | Revert "Use include_bytes! instead of incbin. (#1182)" | Ryan Dahl | |
Reverting because this is causing Appveyor to be red. However I hope we can reintroduce include_bytes! soon in a way that works on windows. Fixes #1208. This reverts commits 96c3641fffe8509af9351cec4580861e76d89cc9 and 92e404706b0b1a26cdaf6f8cf81aac148292557f. | |||
2018-11-20 | Split Runner from Compiler | Kitson Kelly | |
2018-11-17 | Use short install links. | Ryan Dahl | |
2018-11-16 | v0.2.0 | Ryan Dahl | |
Changes since v0.1.12: - First pass at running subprocesses (#1156) - Improve flag parsing (#1200) - Improve fetch() (#1194 #1188 #1102) - Support shebang (#1197) | |||
2018-11-16 | Remove unused bundle_hash_h | Ryan Dahl | |
It was orphaned in 92e404. | |||
2018-11-16 | First pass at running subprocesses (#1156) | Bert Belder | |
2018-11-16 | improve flag parsing | Bartek Iwańczuk | |
2018-11-16 | Support uploading data from fetch() | Ryan Dahl | |
Does not yet support streaming, only strings and TypedArrays for now. | |||
2018-11-16 | Specify exact versions in Cargo.toml | Ryan Dahl | |
To fix "cargo check" on travis, where they have silently upgraded us from Ring 0.13.2 to 0.13.4, which has some errors. | |||
2018-11-16 | Lift snapshot to be an argument of Isolate::new(). | Ryan Dahl | |
2018-11-16 | Improve docs (#1196) | Ryan Dahl | |
2018-11-16 | Support shebang | Ryan Dahl | |
2018-11-16 | Simplify NotFound code. | Ryan Dahl | |