summaryrefslogtreecommitdiff
path: root/cli/tests/error_worker_permissions_remote.ts.out
AgeCommit message (Collapse)Author
2021-03-17refactor: clean up permission handling (#9367)crowlKats
2020-12-30BREAKING(unstable): Use hosts for net allowlists (#8845)Nayeem Rahman
Allowlist checking already uses hosts but for some reason requests, revokes and the runtime permissions API use URLs. - BREAKING(lib.deno.unstable.d.ts): Change NetPermissionDescriptor::url to NetPermissionDescriptor::host - fix(runtime/permissions): Don't add whole URLs to the allowlist on request - fix(runtime/permissions): Harden strength semantics: ({ name: "net", host: "127.0.0.1" } is stronger than { name: "net", host: "127.0.0.1:8000" }) for blocklisting - refactor(runtime/permissions): Use tuples for hosts, make the host optional in Permissions::{query_net, request_net, revoke_net}()
2020-10-27fix(cli): restore permission check on workers (#8123)Kitson Kelly
Fixes #8120