summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-12-20ci: change S3 access keyBert Belder
2018-12-20ci: start sccache early and throw away the S3 access keyBert Belder
This avoids accidentally leaking the key in the build log.
2018-12-20build: fix mac linking problemBert Belder
2018-12-20build: fold config("win_crt_agnostic") into config("deno_config")Bert Belder
2018-12-19Add examples/ directory (denoland/deno_std#28)Ryan Dahl
Previously https://github.com/denoland/deno_examples Original: https://github.com/denoland/deno_std/commit/14be9a0e82d1b54d5b0f04291d9154d1d7da29f7
2018-12-19Add colors example (denoland/deno_std#31)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/3dfbfdbf293d11466ab60ccb88962627643f9df1
2018-12-19Add logging module (denoland/deno_std#33)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/25b88bcf8c260865d2b6b68f539c4772bac095ee
2018-12-19Add flags module (denoland/deno_std#32)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/b15b0d20d722ad16ebba363c0e8e35bbbc869f20
2018-12-19Fix prettier version (denoland/deno_std#27)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/772698f4d2b65d81118f6f70232a4eccb1becc83
2018-12-19appveyor: make Cargo use sccache when building depsBert Belder
2018-12-19ci: build with Cargo before building with NinjaBert Belder
2018-12-19build: make `cargo build` workBert Belder
2018-12-19log: bump default minimum log level to "warn"Bert Belder
2018-12-19build: build rustls with the same features between gn/ninja and cargoBert Belder
2018-12-19Add illegal header name and value guards (#1375)Kevin (Kun) "Kassimo" Qian
2018-12-18Add colors module (denoland/deno_std#30)Kitson Kelly
Original: https://github.com/denoland/deno_std/commit/54787f172c62df7c98d8e9e534c40e317825e614
2018-12-19build: fix RLS-invoked 'cargo check' buildBert Belder
2018-12-18migrate deno_path to deno_std (denoland/deno_std#26)木杉
Previously https://github.com/zhmushan/deno_path Original: https://github.com/denoland/deno_std/commit/1a35f9daf5aa1c10c61d62cccbe7f9ae3c615a0e
2018-12-18travis: Set CARGO_HOME to third_party/rust_crates (#1370)Ryan Dahl
Adds prebuilt hyperfine and sccache binaries Only build test_cc for LSAN Add Cargo.lock Only run benchmarks in master
2018-12-18http: Request body & Streaming (denoland/deno_std#23)Kevin (Kun) "Kassimo" Qian
Original: https://github.com/denoland/deno_std/commit/e0e677bb02ad1587743373fe59efcaba1f89d1ed
2018-12-18Fix URLSearchParams set() and constructor() (#1368)迷渡
2018-12-18Add examples to website.Ryan Dahl
2018-12-18Remove MakefileRyan Dahl
Original: https://github.com/denoland/deno_std/commit/2ae63d35d0dcb3da77c8323418264346db012fa6
2018-12-18Add format script.Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/85ff88b0cc076d1a79fd15ddf4475270765bcfda
2018-12-18Rename project to deno_stdRyan Dahl
Move typescript files to net/ Original: https://github.com/denoland/deno_std/commit/99e276eb89fbe0003bfa8d9e7b907ff3ef19ee47
2018-12-18Load sccache from S3 on CIRyan Dahl
2018-12-18Remove prebuilt v8 supportBert Belder
2018-12-18Enable jumbo build in release. (#1362)Ryan Dahl
2018-12-17Implement append() to join 2 Uint8Array (denoland/deno_std#25)Kevin (Kun) "Kassimo" Qian
Original: https://github.com/denoland/deno_std/commit/6f2811c27594b10dc7c6064eaa82cd0534b7a018
2018-12-17Add BufReader.readFull (denoland/deno_std#24)Kevin (Kun) "Kassimo" Qian
Original: https://github.com/denoland/deno_std/commit/abeb19890e5d6a0cd3461c4aefc920006ef284bd
2018-12-17Remove buffer.ts and use the one built in to deno.Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/5abec6efc5028bb281c29f5df40c0d87a4b8ebeb
2018-12-17Add URL implementation (#1359)Kitson Kelly
2018-12-17Remove from test_cc SnapshotterInitializesCorrectly (#1361)Ryan Dahl
Unfortunately V8 has a debug-only assert that checks that a SnapshotCreator actually created a snapshot: https://github.com/denoland/deno_third_party/blob/7d8c9aa769778140e1619f545e706bf34545509e/v8/src/api.cc#L571 This was not being triggered in Linux & Mac debug builds because we were using the prebuilt release V8 build. It was being triggered in Windows debug build because there is a prebuilt v8_debug.lib. However the Windows error went unnoticed because we only run release builds in CI.
2018-12-17Add console.count and console.time (#1358)迷渡
2018-12-17First pass at streaming http response (denoland/deno_std#16)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/269665873a9219423085418d605b8af8ac2565dc
2018-12-14ci: update deno version to v0.2.3zhmushan
Original: https://github.com/denoland/deno_std/commit/20714fe47a3a2b2bbb8a3b8553d0e6f4ad1cb76f
2018-12-14v0.2.3Ryan Dahl
- console.assert should not throw error (#1335) - Support more modes in deno.open (#1282, #1336) - Simplify code fetch logic (#1322) - readDir entry mode (#1326) - Use stderr for exceptions (#1303) - console.log formatting improvements (#1327, #1299) - Expose TooLarge error code for buffers (#1298)
2018-12-14`console.assert` should not throw error (#1335)迷渡
2018-12-14remove repeative permission checks (#1350)F001
2018-12-14Fix typo in tests (#1342)迷渡
2018-12-13Improve text on benchmark site. (#1323)Ryan Dahl
2018-12-13Check that IsolateState is thread safe. (#1321)Ryan Dahl
2018-12-13Merge deno_new_snapshotter behavior into deno_new (#1318)Ryan Dahl
2018-12-13Fix deno.open permission check (#1336)Kevin (Kun) "Kassimo" Qian
2018-12-13Read version from Cargo.toml (#1267)Goffert van Gool
2018-12-13Fix typo in errors.ts JSDocTim Wang
2018-12-13travis: remove use_sysrootRyan Dahl
2018-12-12fix typo on websiteAllen Hai
2018-12-12Fix file server crash (denoland/deno_std#20)Bartek Iwańczuk
Fix denoland/deno_std#19 Original: https://github.com/denoland/deno_std/commit/d9ab8eb0033ae73551e4979598293c5bd41b417d
2018-12-12Fix travis badgeRyan Dahl
Original: https://github.com/denoland/deno_std/commit/dbff42070bf8a94bb6a2af3d63ebffc7e77ab56b