summaryrefslogtreecommitdiff
path: root/runtime/js/40_process.js
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-09-03 10:07:02 +0100
committerGitHub <noreply@github.com>2024-09-03 11:07:02 +0200
commit71e4ac774bc18902a0d23f29d9b18b43b19bbbf2 (patch)
tree751a25bf46a9eb0c0ced483877e39c3bef7b4200 /runtime/js/40_process.js
parentbf7571a6f93659ef087ef529225642ce85e215d4 (diff)
BREAKING(unstable): drop support for Deno.run.{clearEnv,gid,uid} (#25371)
These are unstable options and the APIs is now deprecated. To limit amount of unstable flags we elected to have these APIs removed.
Diffstat (limited to 'runtime/js/40_process.js')
-rw-r--r--runtime/js/40_process.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/runtime/js/40_process.js b/runtime/js/40_process.js
index 0f28b9d5c..b2269ffd6 100644
--- a/runtime/js/40_process.js
+++ b/runtime/js/40_process.js
@@ -133,10 +133,7 @@ class Process {
function run({
cmd,
cwd = undefined,
- clearEnv = false,
env = { __proto__: null },
- gid = undefined,
- uid = undefined,
stdout = "inherit",
stderr = "inherit",
stdin = "inherit",
@@ -155,10 +152,7 @@ function run({
const res = opRun({
cmd: ArrayPrototypeMap(cmd, String),
cwd,
- clearEnv,
env: ObjectEntries(env),
- gid,
- uid,
stdin,
stdout,
stderr,