diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-09-03 10:07:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-03 11:07:02 +0200 |
commit | 71e4ac774bc18902a0d23f29d9b18b43b19bbbf2 (patch) | |
tree | 751a25bf46a9eb0c0ced483877e39c3bef7b4200 /runtime/lib.rs | |
parent | bf7571a6f93659ef087ef529225642ce85e215d4 (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/lib.rs')
-rw-r--r-- | runtime/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/lib.rs b/runtime/lib.rs index 0b3abba3d..083acf657 100644 --- a/runtime/lib.rs +++ b/runtime/lib.rs @@ -99,10 +99,11 @@ pub static UNSTABLE_GRANULAR_FLAGS: &[UnstableGranularFlag] = &[ show_in_help: true, id: 7, }, + // TODO(bartlomieju): consider removing it UnstableGranularFlag { name: ops::process::UNSTABLE_FEATURE_NAME, help_text: "Enable unstable process APIs", - show_in_help: true, + show_in_help: false, id: 8, }, UnstableGranularFlag { |