deno/cli
Divy Srivastava 48ccb67131
chore(ext/http): add "legacy_abort" runtime flag (#28371)
Deno.serve `Request` abort signals are aborted by default even when it
is finished successfully. This PR gates this behavior behind the
"legacy_abort" which is the default right now.

Turning the `no_legacy_abort` runtime option on is a **breaking change**
and will only abort request signals when there is a failure, thereby
cannot be used to determine if the request finished. This aligns with
`fetch` API.

Ref https://github.com/denoland/deno/issues/27005
2025-03-22 08:13:57 +05:30
..
args chore(ext/http): add "legacy_abort" runtime flag (#28371) 2025-03-22 08:13:57 +05:30
bench chore: update dlint to 0.73.0 for CI (#28169) 2025-02-19 14:07:01 +00:00
cache refactor: reduce dependency on futures crate (#28515) 2025-03-17 14:14:19 +00:00
js fix(bench): lower bench time budget when n is specified (#28454) 2025-03-10 16:17:19 -04:00
lib chore(ext/http): add "legacy_abort" runtime flag (#28371) 2025-03-22 08:13:57 +05:30
lsp feat(unstable): support using a local copy of npm packages (#28512) 2025-03-21 03:09:57 +00:00
npm feat(unstable): support using a local copy of npm packages (#28512) 2025-03-21 03:09:57 +00:00
ops feat(jupyter): make GPUTexture and GPUBuffer displayable (#28117) 2025-02-18 00:29:45 -08:00
rt chore(ext/http): add "legacy_abort" runtime flag (#28371) 2025-03-22 08:13:57 +05:30
schemas refactor(cli): update JSON schemas versions (#28252) 2025-02-24 10:11:06 -05:00
snapshot chore: forward v2.2.5 release commit to main (#28579) 2025-03-21 06:25:03 -07:00
standalone fix(node): support re-exported esm modules in cjs export analysis (#28379) 2025-03-05 16:37:46 -05:00
tools feat(unstable): support using a local copy of npm packages (#28512) 2025-03-21 03:09:57 +00:00
tsc docs: add docs for some webgpu APIs (#28548) 2025-03-20 23:35:21 +00:00
util feat(unstable): support using a local copy of npm packages (#28512) 2025-03-21 03:09:57 +00:00
build.rs chore: update to rust 1.85 (#28236) 2025-02-25 08:50:01 -08:00
Cargo.toml chore: forward v2.2.5 release commit to main (#28579) 2025-03-21 06:25:03 -07:00
cdp.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
clippy.toml refactor: do not use deno_fs::FileSystem everywhere (#27508) 2024-12-31 11:29:07 -05:00
deno.ico
emit.rs refactor: handle deno_media_type having Html and Sql variants (#28495) 2025-03-15 00:19:08 +09:00
entitlements.plist chore: start codesigning mac release builds (#21303) 2023-11-23 15:30:26 -07:00
factory.rs chore(ext/http): add "legacy_abort" runtime flag (#28371) 2025-03-22 08:13:57 +05:30
file_fetcher.rs fix(check): compiler options from workspace members (#27785) 2025-01-28 10:49:58 -05:00
graph_container.rs chore: update to rust 1.85 (#28236) 2025-02-25 08:50:01 -08:00
graph_util.rs feat(unstable): support using a local copy of npm packages (#28512) 2025-03-21 03:09:57 +00:00
http_util.rs refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
integration_tests_runner.rs refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
jsr.rs refactor(lsp): remove Send + Sync requirement (#28035) 2025-02-12 13:37:47 +00:00
main.rs chore(internal): reland eszip changes (#28294) 2025-03-05 22:25:56 +00:00
module_loader.rs refactor: reduce dependency on futures crate (#28515) 2025-03-17 14:14:19 +00:00
node.rs fix(node): support re-exported esm modules in cjs export analysis (#28379) 2025-03-05 16:37:46 -05:00
README.md docs(cli): do not need gen doc for cli (#17260) 2023-01-04 13:19:58 +01:00
registry.rs refactor: separate publish from pm subcommands (#28237) 2025-02-21 17:02:33 -05:00
resolver.rs fix(check): support sloppy imports with "compilerOptions.rootDirs" (#27973) 2025-02-05 23:08:10 +00:00
task_runner.rs refactor: reduce dependency on futures crate (#28515) 2025-03-17 14:14:19 +00:00
type_checker.rs refactor: handle deno_media_type having Html and Sql variants (#28495) 2025-03-15 00:19:08 +09:00
worker.rs chore: update to rust 1.85 (#28236) 2025-02-25 08:50:01 -08:00

Deno CLI Crate

crates

This provides the actual deno executable and the user-facing APIs.

The deno crate uses the deno_core to provide the executable.