Skip to content

Commit 0692aba

Browse files
authored
docs: Promote turbo query from experimental to stable (#12421)
## Summary - Removes the runtime "query command is experimental" warning from the CLI - Removes the `ExperimentalBadge` from the `turbo query` reference page - Removes `turbo query` from the experimental APIs list in the support policy ## Testing Run `turbo query` and confirm the experimental warning no longer prints. <sub>CLOSES TURBO-5367</sub>
1 parent 8aca047 commit 0692aba

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

apps/docs/content/docs/reference/query.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ related:
1111

1212
import { ExperimentalBadge } from "@/components/geistdocs/experimental-badge";
1313

14-
<ExperimentalBadge />
14+
<ExperimentalBadge>Pre-release</ExperimentalBadge>
1515

1616
Run GraphQL queries against your monorepo.
1717

apps/docs/content/docs/support-policy.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ We encourage you to help us test experimental APIs in side projects, proof-of-co
106106

107107
**APIs currently in the Experimental phase:**
108108

109-
- [`turbo query`](/docs/reference/query)
110109
- [`turbo boundaries`](/docs/reference/boundaries) and [Tags](/docs/reference/boundaries#tags)
111110
- [`--experimental-write-cache` for `turbo watch`](/docs/reference/watch#caching)
112111
- [`--output=json` for `turbo ls --affected` flag](/docs/reference/ls)

crates/turborepo-lib/src/cli/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1792,7 +1792,6 @@ async fn run_main(
17921792
let Some(ref query_server) = query_server else {
17931793
return Err(error::Error::QueryNotAvailable);
17941794
};
1795-
warn!("query command is experimental and may change in the future");
17961795
let subcommand = subcommand.clone();
17971796
let query = query.clone();
17981797
let variables = variables.clone();

0 commit comments

Comments
 (0)