Skip to content

Commit 044d6eb

Browse files
authored
Enable Oz OIDC on stable (#10468)
## Description Enables Oz OIDC federation on stable. This was already enabled on preview, which set it up for Warp-hosted agents but not self-hosted ones. ## Testing N/A - flag flip ## Agent Mode - [x] Warp Agent Mode - This PR was created via Warp's AI Agent Mode <!-- ## Changelog Entries for Stable The entries below will be used when constructing a soft-copy of the stable release changelog. Leave blank or remove the lines if no entry in the stable changelog is needed. Entries should be on the same line, without the `{{` `}}` brackets. You can use multiple lines, even of the same type. The valid suffixes are: - NEW-FEATURE: for new, relatively sizable features. Features listed here will likely have docs / social media posts / marketing launches associated with them, so use sparingly. - IMPROVEMENT: for new functionality of existing features. - BUG-FIX: for fixes related to known bugs or regressions. - IMAGE: the image specified by the URL (hosted on GCP) will be added to Dev & Preview releases. For Stable releases, see the pinned doc in the #release Slack channel. - OZ: Oz-related updates. Use `CHANGELOG-OZ`. At most 4 Oz updates are shown in-app per release. CHANGELOG-NEW-FEATURE: {{text goes here...}} CHANGELOG-IMPROVEMENT: {{text goes here...}} CHANGELOG-BUG-FIX: {{text goes here...}} CHANGELOG-BUG-FIX: {{more text goes here...}} CHANGELOG-IMAGE: {{GCP-hosted URL goes here...}} CHANGELOG-OZ: {{text goes here...}} -->
1 parent 898336e commit 044d6eb

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

app/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -574,6 +574,7 @@ default = [
574574
"cloud_mode_image_context",
575575
"agent_mode_computer_use",
576576
"oz_platform_skills",
577+
"oz_identity_federation",
577578
"sync_ambient_plans",
578579
"conversation_artifacts",
579580
"agent_view",

crates/warp_features/src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -927,7 +927,6 @@ pub const DOGFOOD_FLAGS: &[FeatureFlag] = &[
927927
// End manually enabled Code features.
928928
FeatureFlag::EditableMarkdownMermaid,
929929
FeatureFlag::CodeReviewScrollPreservation,
930-
FeatureFlag::OzIdentityFederation,
931930
FeatureFlag::AgentHarness,
932931
FeatureFlag::OzHandoff,
933932
FeatureFlag::ConversationApi,
@@ -954,7 +953,6 @@ pub const PREVIEW_FLAGS: &[FeatureFlag] = &[
954953
FeatureFlag::Orchestration,
955954
FeatureFlag::BlocklistMarkdownTableRendering,
956955
FeatureFlag::MarkdownTables,
957-
FeatureFlag::OzIdentityFederation,
958956
FeatureFlag::GitOperationsInCodeReview,
959957
];
960958

@@ -1048,7 +1046,6 @@ impl FeatureFlag {
10481046
Some("Enables rendering markdown tables inline in AI block list responses.")
10491047
}
10501048
MarkdownTables => Some("Enables rendering and interaction support for markdown tables in notebooks."),
1051-
OzIdentityFederation => Some("Enables automatic authentication from Oz to AWS and GCP"),
10521049
SettingsFile => Some("Enables configuring Warp via a user-editable `settings.toml` file, with hot reload and error reporting for invalid values."),
10531050
GitOperationsInCodeReview => Some("Enables commit, push, and create-PR actions directly from the code review panel."),
10541051
_ => None,

0 commit comments

Comments
 (0)