From d33defde68b8bf3bd72a2513637a6fc6228cfb22 Mon Sep 17 00:00:00 2001 From: Jacob Richman Date: Sun, 7 Sep 2025 12:23:57 -0700 Subject: [PATCH] Mention replacements for deprecated settings in settings.json (#7913) --- packages/cli/src/config/config.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/packages/cli/src/config/config.ts b/packages/cli/src/config/config.ts index 1018cb1dc0..a911518a87 100755 --- a/packages/cli/src/config/config.ts +++ b/packages/cli/src/config/config.ts @@ -236,43 +236,43 @@ export async function parseArguments(settings: Settings): Promise { }) .deprecateOption( 'telemetry', - 'Use settings.json instead. This flag will be removed in a future version.', + 'Use the "telemetry.enabled" setting in settings.json instead. This flag will be removed in a future version.', ) .deprecateOption( 'telemetry-target', - 'Use settings.json instead. This flag will be removed in a future version.', + 'Use the "telemetry.target" setting in settings.json instead. This flag will be removed in a future version.', ) .deprecateOption( 'telemetry-otlp-endpoint', - 'Use settings.json instead. This flag will be removed in a future version.', + 'Use the "telemetry.otlpEndpoint" setting in settings.json instead. This flag will be removed in a future version.', ) .deprecateOption( 'telemetry-otlp-protocol', - 'Use settings.json instead. This flag will be removed in a future version.', + 'Use the "telemetry.otlpProtocol" setting in settings.json instead. This flag will be removed in a future version.', ) .deprecateOption( 'telemetry-log-prompts', - 'Use settings.json instead. This flag will be removed in a future version.', + 'Use the "telemetry.logPrompts" setting in settings.json instead. This flag will be removed in a future version.', ) .deprecateOption( 'telemetry-outfile', - 'Use settings.json instead. This flag will be removed in a future version.', + 'Use the "telemetry.outfile" setting in settings.json instead. This flag will be removed in a future version.', ) .deprecateOption( 'show-memory-usage', - 'Use settings.json instead. This flag will be removed in a future version.', + 'Use the "ui.showMemoryUsage" setting in settings.json instead. This flag will be removed in a future version.', ) .deprecateOption( 'sandbox-image', - 'Use settings.json instead. This flag will be removed in a future version.', + 'Use the "tools.sandbox" setting in settings.json instead. This flag will be removed in a future version.', ) .deprecateOption( 'proxy', - 'Use settings.json instead. This flag will be removed in a future version.', + 'Use the "proxy" setting in settings.json instead. This flag will be removed in a future version.', ) .deprecateOption( 'checkpointing', - 'Use settings.json instead. This flag will be removed in a future version.', + 'Use the "general.checkpointing.enabled" setting in settings.json instead. This flag will be removed in a future version.', ) .deprecateOption( 'all-files',