From 27e03b153d6417750f3d2761677e6c3d129b4e12 Mon Sep 17 00:00:00 2001 From: rakesh Date: Tue, 7 Oct 2025 16:55:31 -0700 Subject: [PATCH 1/2] remove experimental prefix --- codex-rs/cli/src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/codex-rs/cli/src/main.rs b/codex-rs/cli/src/main.rs index 7e0036a57c..46cd1894dd 100644 --- a/codex-rs/cli/src/main.rs +++ b/codex-rs/cli/src/main.rs @@ -157,9 +157,8 @@ struct LoginCommand { )] api_key: Option, - /// EXPERIMENTAL: Use device code flow (not yet supported) /// This feature is experimental and may changed in future releases. - #[arg(long = "experimental_use-device-code", hide = true)] + #[arg(long = "use-device-code", hide = true)] use_device_code: bool, /// EXPERIMENTAL: Use custom OAuth issuer base URL (advanced) From 0e058f86acfc0c91998c7d450f5c0c8b584bbbf6 Mon Sep 17 00:00:00 2001 From: rakesh Date: Tue, 7 Oct 2025 17:07:48 -0700 Subject: [PATCH 2/2] remove hiding --- codex-rs/cli/src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/codex-rs/cli/src/main.rs b/codex-rs/cli/src/main.rs index 46cd1894dd..d889823298 100644 --- a/codex-rs/cli/src/main.rs +++ b/codex-rs/cli/src/main.rs @@ -157,8 +157,7 @@ struct LoginCommand { )] api_key: Option, - /// This feature is experimental and may changed in future releases. - #[arg(long = "use-device-code", hide = true)] + #[arg(long = "use-device-code")] use_device_code: bool, /// EXPERIMENTAL: Use custom OAuth issuer base URL (advanced)