From 2ed984ba3aa638c3f088ac1edc5c779c7d9195d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 8 Mar 2024 00:32:11 +0000 Subject: fix: respect unstable "temporal" configuration in config file (#22134) Actual fix happened in https://github.com/denoland/deno/pull/22782, but this commit adds additional tests and cleans up V8 flags passed on init. Closes https://github.com/denoland/deno/issues/22123 Closes https://github.com/denoland/deno/issues/22560 Closes https://github.com/denoland/deno/issues/22557 --- runtime/lib.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'runtime') diff --git a/runtime/lib.rs b/runtime/lib.rs index b63fd4134..ade10a9c6 100644 --- a/runtime/lib.rs +++ b/runtime/lib.rs @@ -87,12 +87,7 @@ pub static UNSTABLE_GRANULAR_FLAGS: &[( "Enable unstable net APIs", 7, ), - ( - "temporal", - "Enable unstable Temporal API", - // Not used in JS - 8, - ), + ("temporal", "Enable unstable Temporal API", 8), ( "unsafe-proto", "Enable unsafe __proto__ support. This is a security risk.", -- cgit v1.2.3