deno/cli
Marvin Hagemeister 59f419bf41
fix(node/http): remoteAddress and remotePort not being set (#21998)
<!--
Before submitting a PR, please read https://deno.com/manual/contributing

1. Give the PR a descriptive title.

  Examples of good title:
    - fix(std/http): Fix race condition in server
    - docs(console): Update docstrings
    - feat(doc): Handle nested reexports

  Examples of bad title:
    - fix #7123
    - update docs
    - fix bugs

2. Ensure there is a related issue and it is referenced in the PR text.
3. Ensure there are tests that cover the changes.
4. Ensure `cargo test` passes.
5. Ensure `./tools/format.js` passes without changing files.
6. Ensure `./tools/lint.js` passes.
7. Open as a draft PR if your work is still in progress. The CI won't
run
   all steps, but you can add '[ci]' to a commit message to force it to.
8. If you would like to run the benchmarks on the CI, add the 'ci-bench'
label.
-->

Ultimately, it came down to using incorrect property names in the
`FakeSocket` constructor. The values are passed under `remoteAddress`,
not `hostname` and `remotePort` instead of `port`.

Fixes https://github.com/denoland/deno/issues/21980
2024-01-19 13:09:37 +01:00
..
args feat: Start warning on each use of a deprecated API (#21939) 2024-01-18 23:30:49 +00:00
bench chore(cli): bump deno_core (#21790) 2024-01-04 18:53:04 +00:00
cache fix(jsr): ensure proper storage of ahead of time module infos (#21918) 2024-01-13 20:56:56 -05:00
js refactor: use core.ensureFastOps() (#21888) 2024-01-10 15:37:25 -07:00
lsp fix(lsp): regression - formatting was broken on windows (#21972) 2024-01-18 15:57:30 -05:00
napi chore: forward v1.39.4 release commit to main (#21933) 2024-01-13 20:32:50 -05:00
npm chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
ops chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
schemas feat: precompile JSX (#20962) 2023-11-01 20:30:23 +00:00
standalone feat: Start warning on each use of a deprecated API (#21939) 2024-01-18 23:30:49 +00:00
tests fix(node/http): remoteAddress and remotePort not being set (#21998) 2024-01-19 13:09:37 +01:00
tools feat(jupyter): don't require --unstable flag (#21963) 2024-01-18 23:16:14 +01:00
tsc fix(types): align global deno worker type with deno.worker/webworker one (#21936) 2024-01-18 22:42:04 +00:00
util fix(lsp): regression - formatting was broken on windows (#21972) 2024-01-18 15:57:30 -05:00
auth_tokens.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
build.rs fix: android support (#19437) 2024-01-10 06:04:14 -07:00
Cargo.toml fix(lsp): regression - formatting was broken on windows (#21972) 2024-01-18 15:57:30 -05:00
cdp.rs refactor(tools/repl): reorganize code (#21810) 2024-01-05 16:14:58 +01:00
deno.ico fix(cli): add icon and metadata to deno.exe on Windows (#6693) 2020-07-15 21:54:38 +02:00
deno_std.rs chore: forward v1.39.3 to main (#21915) 2024-01-12 19:13:18 +00:00
emit.rs chore: bump deno_core (#21832) 2024-01-10 09:48:40 +05:30
entitlements.plist chore: start codesigning mac release builds (#21303) 2023-11-23 15:30:26 -07:00
errors.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
factory.rs feat: Start warning on each use of a deprecated API (#21939) 2024-01-18 23:30:49 +00:00
file_fetcher.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
graph_util.rs fix: update deno_lint and swc (#21718) 2024-01-09 23:20:52 +00:00
http_util.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
js.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
main.rs feat(unstable): add Temporal API support (#21738) 2024-01-15 01:26:57 +01:00
module_loader.rs chore: upgrade deno_core to 0.246.0 (#21904) 2024-01-14 18:28:46 -07:00
node.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
README.md docs(cli): do not need gen doc for cli (#17260) 2023-01-04 13:19:58 +01:00
resolver.rs fix(unstable/byonm): support using an import map with byonm (#21786) 2024-01-04 09:20:58 +05:30
version.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
worker.rs feat: Start warning on each use of a deprecated API (#21939) 2024-01-18 23:30:49 +00: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.