From 3cabb2421089f4941d7d710396ed2b133d2cd9f6 Mon Sep 17 00:00:00 2001 From: Dylan Hurd Date: Thu, 15 Jan 2026 17:29:12 -0800 Subject: [PATCH] chore(windows) Enable Powershell UTF8 feature (#9195) ## Summary We've received a lot of positive feedback about this feature, so we're going to enable it by default. --- codex-rs/core/src/features.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/codex-rs/core/src/features.rs b/codex-rs/core/src/features.rs index 620e777f4..2ea63f812 100644 --- a/codex-rs/core/src/features.rs +++ b/codex-rs/core/src/features.rs @@ -403,7 +403,17 @@ pub const FEATURES: &[FeatureSpec] = &[ FeatureSpec { id: Feature::PowershellUtf8, key: "powershell_utf8", + #[cfg(windows)] + stage: Stage::Beta { + name: "Powershell UTF-8 support", + menu_description: "Enable UTF-8 output in Powershell.", + announcement: "Codex now supports UTF-8 output in Powershell. If you are seeing problems, disable in /experimental.", + }, + #[cfg(windows)] + default_enabled: true, + #[cfg(not(windows))] stage: Stage::Experimental, + #[cfg(not(windows))] default_enabled: false, }, FeatureSpec {