summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-09-28feat(unstable): Deno.setRaw -> Deno.stdin.setRaw (#15797)Luca Casonato
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2022-09-28feat: add --allow-sys permission flag (#16028)Yoshiya Hinosawa
2022-09-28feat: implement Web Cache API (#15829)Satya Rohith
2022-09-28refactor(runtime): don't use destructuring assignment in JS code (#16050)Bartek Iwańczuk
2022-09-27fix(npm): use ntfs junctions in node_modules folder on Windows (#16061)David Sherret
2022-09-27chore(wpt): add ability to ignore a test file (#16056)Bartek Iwańczuk
2022-09-27feat: Add requesting API name to permission prompt (#15936)Bartek Iwańczuk
Co-authored-by: Leo Kettmeir <crowlkats@toaxl.com>
2022-09-27feat: Stabilize Deno.refTimer() and Deno.unrefTimer() APIs (#16036)Bartek Iwańczuk
2022-09-27fix(cli/bench): strace numeric format (#16055)Marcos Casagrande
2022-09-27fix(cli/vendor): handle assert type json during vendoring (#16059)Sylvain Cau
2022-09-27fix(ext/fetch): blob url (#16057)Satya Rohith
Co-authored-by: Luca Casonato <hello@lcas.dev>
2022-09-27Revert "perf(cli): use -O3 instead of -Oz (#15952)" (#16053)Bartek Iwańczuk
This reverts commit 06c77a30f9c00a562ff2a34b96fe828e0d29a33f.
2022-09-27feat(ext/crypto): add x25519 and Ed25519 CFRG curves (#14119)Divy Srivastava
2022-09-27fix(runtime): refresh perm prompt 3 lines instead of 4 (#16049)Yoshiya Hinosawa
2022-09-27fix: TypeScript 4.8 update (#16040)Kitson Kelly
2022-09-26chore: use Rust 1.64.0 (#16035)Mathias Lafeldt
2022-09-26perf(ext/fetch): use content-length in InnerBody.consume (#15925)Marcos Casagrande
This fast path prevents repeated allocations when receiving a fetch body with a known size. Co-authored-by: Luca Casonato <hello@lcas.dev>
2022-09-26fix(fmt): keep type args in type queries and keep empty array expr element's ↵David Sherret
trailing comma (#16034)
2022-09-26fix(require): tryPackage uses optional chaining (#16020)Bartek Iwańczuk
2022-09-26fix(ext/console): fix error when logging a proxied Date (#16018)李瑞丰
2022-09-26perf(ext/console): break on iterableLimit & better sparse array handling ↵Marcos Casagrande
(#15935)
2022-09-24chore(ext/crypto): fix typo in import_key.rs (#16012)Ikko Ashimine
eliptic -> elliptic
2022-09-23perf: don't re-download package tarball to global cache if local ↵David Sherret
node_modules folder exists for package (#16005)
2022-09-23test(ext/fetch): enable null body status test on windows (#15995)Marcos Casagrande
2022-09-23perf: use fast ops for tty (#15976)Divy Srivastava
2022-09-23feat(ops): Fallible fast ops (#15989)Aapo Alasuutari
2022-09-22chore: forward v1.25.4 release commit to main (#16001)David Sherret
2022-09-22chore: temporarily ignore websocketstream test (#15997)David Sherret
2022-09-22fix(compile): keep non-exe extension in output name on Windows (#15994)David Sherret
2022-09-22feat(npm): add flag for creating and resolving npm packages to a local ↵David Sherret
node_modules folder (#15971)
2022-09-22feat(npm): add support for --reload=npm: and --reload=npm:<package> (#15972)Bartek Iwańczuk
2022-09-22perf(cli): use -O3 instead of -Oz (#15952)Divy Srivastava
perf(cli): use -O3 instead of -Os
2022-09-22chore: fix recent windows only clippy issues (#15993)David Sherret
2022-09-22feat: Refresh interactive permission prompt (#15907)Bartek Iwańczuk
Co-authored-by: David Sherret <dsherret@users.noreply.github.com>
2022-09-22perf: fs optimizations - part 1 (#15873)Divy Srivastava
2022-09-22chore: update wpt (#15979)Divy Srivastava
2022-09-22chore(ops): update docs on fast calls (#15985)Divy Srivastava
2022-09-22feat: allow exiting on two consecutive ctrl+c presses (#15981)Kayla Washburn
2022-09-22examples(core): panik (#15983)Aaron O'Mullan
2022-09-22feat(ops): Automatic fast ops creation (#15527)Aapo Alasuutari
2022-09-21fix(runtime): better error message with Deno.env.get/set (#15966)Yoshiya Hinosawa
2022-09-20fix(flash): panic if response if undefined (#15964)Bartek Iwańczuk
Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
2022-09-20fix(ext/webgpu): make GPUDevice.features SetLike (#15853)Vicary A
2022-09-20feat(cli): update to TypeScript 4.8 (#15064)Kitson Kelly
2022-09-19chore(runtime): upgrade netif crate (#15867)Ben Noordhuis
v0.1.3 contains code that will stop working with newer versions of libstd because the layout of some std::net types changed. Refs: https://github.com/bnoordhuis/netif/pull/10
2022-09-19perf(core): use single ObjectTemplate for ops in `initialize_ops` (#15959)Divy Srivastava
2022-09-19refactor: move out test files from root testdata directory into sub ↵David Sherret
directories (#15949)
2022-09-19perf(cli): avoid `canonicalize_path` if config file does not exist (#15957)Divy Srivastava
2022-09-19perf(cli): avoid `clap::App::clone` (#15951)Divy Srivastava
2022-09-19chore: fix clippy warnings (#15944)Ben Noordhuis
Stop allowing clippy::derive-partial-eq-without-eq and fix warnings about deriving PartialEq without also deriving Eq. In one case I removed the PartialEq because it a) wasn't necessary, and b) sketchy because it was comparing floating point numbers. IMO, that's a good argument for enforcing the lint rule, because it would most likely have been caught during review if it had been enabled.