Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-11-05 | chore: deprecate run itests (#26444) | Mohammad Sulaiman | |
2024-10-04 | Revert "feat: warn when using --allow-run with no allow list" (#26021) | David Sherret | |
Although using `--allow-run` without an allow list gives basically no security, I think we should remove this warning because it gets in the way and the only way to disable it is via --quiet. | |||
2024-09-18 | feat: update warning message for --allow-run with no list (#25693) | Bartek Iwańczuk | |
Ref https://github.com/denoland/deno/pull/25215#discussion_r1762064605 | |||
2024-09-16 | feat: warn when using `--allow-run` with no allow list (#25215) | David Sherret | |
2024-09-03 | BREAKING(permissions): remove --allow-hrtime (#25367) | Luca Casonato | |
Remove `--allow-hrtime` and `--deny-hrtime`. We are doing this because it is already possible to get access to high resolution timers through workers and SharedArrayBuffer. Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2024-02-10 | chore: move cli/tests/ -> tests/ (#22369) | Matt Mastracci | |
This looks like a massive PR, but it's only a move from cli/tests -> tests, and updates of relative paths for files. This is the first step towards aggregate all of the integration test files under tests/, which will lead to a set of integration tests that can run without the CLI binary being built. While we could leave these tests under `cli`, it would require us to keep a more complex directory structure for the various test runners. In addition, we have a lot of complexity to ignore various test files in the `cli` project itself (cargo publish exclusion rules, autotests = false, etc). And finally, the `tests/` folder will eventually house the `test_ffi`, `test_napi` and other testing code, reducing the size of the root repo directory. For easier review, the extremely large and noisy "move" is in the first commit (with no changes -- just a move), while the remainder of the changes to actual files is in the second commit. |