Simon Lecoq

Results 85 comments of Simon Lecoq

> If we support `accept`, then probably for consistency we should also support basically every other header such as `accept-encoding`, `content-language`, `content-range`, `cookie` etc. Matching them is not trivial: it...

> I guess the behavior for wildcards like `accept-encoding: *` would be that they only match exactly `accept-encoding: *`, not `accept-encoding: gzip`? So inside the `accept-encoding: *` route the dev...

I think astral should indeed add it by default when `CI`/`GITHUB_ACTIONS` env is set On the default github runner (ubuntu-latest) I'm getting errors for it: ``` [2195:2195:0530/070737.422919:FATAL:zygote_host_impl_linux.cc(126)] No usable sandbox!...

@kt3k Should I reopen my previous pr then ?

Also there's no userland workaround since #27050 is still open ```ts vscode ➜ /workspaces/metrics (x2025) $ deno eval 'Deno.permissions.query({name:"import"})' error: Uncaught (in promise) TypeError: The provided value "import" is not...

I'm pretty sure the error comes from `prepare_load()` in `cli/module_loader.rs`. There is a branch to consider workers as dynamic modules to trigger permissions checks: https://github.com/denoland/deno/blob/1ef0d0838ee6785da0458dc09ad936c00364741a/cli/module_loader.rs#L1104 But I'm pretty sure the...

I agree with @Leokuma, maybe the deno init should just be an alias that list available examples from `@std/examples` or [docs.deno.com/examples](https://docs.deno.com/examples/) Anyways changing the signature will indeed break the deno...

Hi @yesnault, here's a minimal reproduction: ```yml # reproducer.yml testcases: - steps: - type: user-exec ``` ```yml # lib/user-exec.yml executor: user-exec steps: - type: exec script: ping -c 1 127.0.0.1...

I think it might not be implemented, because iirc the `expect` namespace is supposed to be jest compliant However it's actually possible to extend the capabilities of `expect` with custom...

Just to say I'm looking forward to these refactor/features I've quickly took a look at the linked pull requests and feel like this would make developing TUI apps easier with...