Skip to content

Commit

Permalink
remove "closed beta" language (#30021)
Browse files Browse the repository at this point in the history
It's not a closed beta, it's more of a quiet beta

GitOrigin-RevId: 2d93426d40c52df5c610064db7bbc7395f75134c
  • Loading branch information
thomasballinger authored and Convex, Inc. committed Sep 20, 2024
1 parent 53822fb commit ce70693
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/cli/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const run = new Command("run")
new Option(
"--component <path>",
"Path to the component in the component tree defined in convex.config.ts. " +
"Components are in closed beta. This flag is unstable and may change in subsequent releases.",
"Components are a beta feature. This flag is unstable and may change in subsequent releases.",
),
)
.addOption(new Option("--live-component-sources").hideHelp())
Expand Down
14 changes: 7 additions & 7 deletions src/server/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { setReferencePath, toReferencePath } from "./paths.js";
* A function reference is stable across code pushes but it's possible
* the Convex function it refers to might no longer exist.
*
* This is a feature of components, which are currently in closed beta.
* This is a feature of components, which are in beta.
* This API is unstable and may change in subsequent releases.
*/
export type FunctionHandle<
Expand All @@ -43,7 +43,7 @@ export type FunctionHandle<
* A function reference is stable across code pushes but it's possible
* the Convex function it refers to might no longer exist.
*
* This is a feature of components, which are currently in closed beta.
* This is a feature of components, which are in beta.
* This API is unstable and may change in subsequent releases.
*/
export async function createFunctionHandle<
Expand All @@ -70,7 +70,7 @@ interface ComponentExports {
* An object of this type should be the default export of a
* convex.config.ts file in a component definition directory.
*
* This is a feature of components, which are currently in closed beta.
* This is a feature of components, which are in beta.
* This API is unstable and may change in subsequent releases.
*/
export type ComponentDefinition<Exports extends ComponentExports = any> = {
Expand Down Expand Up @@ -102,7 +102,7 @@ type ComponentDefinitionExports<T extends ComponentDefinition<any>> =
* An object of this type should be the default export of a
* convex.config.ts file in a component-aware convex directory.
*
* This is a feature of components, which are currently in closed beta.
* This is a feature of components, which are in beta.
* This API is unstable and may change in subsequent releases.
*/
export type AppDefinition = {
Expand Down Expand Up @@ -220,7 +220,7 @@ function use<Definition extends ComponentDefinition<any>>(
* is a `@link ComponentDefinition}, but during component definition evaluation
* this is its type instead.
*
* This is a feature of components, which are currently in closed beta.
* This is a feature of components, which are in beta.
* This API is unstable and may change in subsequent releases.
*/
export type ImportedComponentDefinition = {
Expand Down Expand Up @@ -343,7 +343,7 @@ type RuntimeAppDefinition = AppDefinition &
* @param name Name must be alphanumeric plus underscores. Typically these are
* lowercase with underscores like `"onboarding_flow_tracker"`.
*
* This is a feature of components, which are currently in closed beta.
* This is a feature of components, which are in beta.
* This API is unstable and may change in subsequent releases.
*/
export function defineComponent<Exports extends ComponentExports = any>(
Expand All @@ -369,7 +369,7 @@ export function defineComponent<Exports extends ComponentExports = any>(
/**
* Attach components, reuseable pieces of a Convex deployment, to this Convex app.
*
* This is a feature of components, which are currently in closed beta.
* This is a feature of components, which are in beta.
* This API is unstable and may change in subsequent releases.
*/
export function defineApp(): AppDefinition {
Expand Down

0 comments on commit ce70693

Please sign in to comment.