diff --git a/src/cli/run.ts b/src/cli/run.ts index f745227..ebefc4d 100644 --- a/src/cli/run.ts +++ b/src/cli/run.ts @@ -45,7 +45,7 @@ export const run = new Command("run") new Option( "--component ", "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()) diff --git a/src/server/components/index.ts b/src/server/components/index.ts index e4059d3..5950dc4 100644 --- a/src/server/components/index.ts +++ b/src/server/components/index.ts @@ -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< @@ -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< @@ -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 = { @@ -102,7 +102,7 @@ type ComponentDefinitionExports> = * 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 = { @@ -220,7 +220,7 @@ function use>( * 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 = { @@ -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( @@ -369,7 +369,7 @@ export function defineComponent( /** * 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 {