From c656d8b9dab8f58fa0623ffcea557ee9c57f9caa Mon Sep 17 00:00:00 2001 From: James Date: Fri, 4 Sep 2026 13:41:20 +1000 Subject: [PATCH] product name: use "Estuary" instead of "Estuary Flow" The product is "Estuary". Two of these strings are user-visible: the doc comments on the flowctl and dekaf Cli structs are pulled into --help by clap's #[command(about, ...)], so they print whenever a customer runs `flowctl --help` or `dekaf --help`. The rest are READMEs and comments. Those still matter, because agents read them and reproduce the old name when drafting new documentation. Not changed, since they are identifiers rather than the product name: LICENSE-BSL ("Estuary Flow v1"), pyproject.toml (name = "estuary-flow"), the estuary-flow-poc bucket in fixtures and seed.sql, and the estuary-flow-web tarball in CI. --- crates/dekaf/src/main.rs | 2 +- crates/flow-client-next/README.md | 2 +- crates/flowctl/README.md | 4 ++-- crates/flowctl/src/lib.rs | 2 +- go/runtime/flow_consumer.go | 2 +- mise.toml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/crates/dekaf/src/main.rs b/crates/dekaf/src/main.rs index efb7facd26c..ecbc43983ba 100644 --- a/crates/dekaf/src/main.rs +++ b/crates/dekaf/src/main.rs @@ -24,7 +24,7 @@ use tokio::io::{AsyncRead, AsyncWrite, AsyncWriteExt}; use tokio::net::TcpStream; use url::Url; -/// A Kafka-compatible proxy for reading Estuary Flow collections. +/// A Kafka-compatible proxy for reading Estuary collections. #[derive(Debug, Parser, serde::Serialize)] #[command(about, version)] pub struct Cli { diff --git a/crates/flow-client-next/README.md b/crates/flow-client-next/README.md index 1a87e97400f..b719298a22e 100644 --- a/crates/flow-client-next/README.md +++ b/crates/flow-client-next/README.md @@ -1,6 +1,6 @@ # flow-client-next -Client library for Estuary Flow control-plane APIs with auto-refreshing authentication. +Client library for Estuary control-plane APIs with auto-refreshing authentication. This crate is a replacement for `flow-client`. Dependent crates should use `use flow_client_next as flow_client;` to ease the transition. diff --git a/crates/flowctl/README.md b/crates/flowctl/README.md index 2ecb50719a7..77a779599fb 100644 --- a/crates/flowctl/README.md +++ b/crates/flowctl/README.md @@ -1,6 +1,6 @@ # Flowctl -**The command line interface for Estuary Flow** +**The command line interface for Estuary** ### Installing `flowctl` @@ -24,7 +24,7 @@ Verify that it's working by running `flowctl --version`. ### Use the `flowctl` CLI: -**Authentication to Estuary Flow** +**Authentication to Estuary** 1. Visit (https://dashboard.estuary.dev/admin) and login. 2. Find the "Access Token" at the bottom of the page, and copy it. diff --git a/crates/flowctl/src/lib.rs b/crates/flowctl/src/lib.rs index a822090eb2c..b6330073647 100644 --- a/crates/flowctl/src/lib.rs +++ b/crates/flowctl/src/lib.rs @@ -23,7 +23,7 @@ use models::authorizations::ControlClaims; use output::{Output, OutputType}; use poll::poll_while_queued; -/// A command-line tool for working with Estuary Flow. +/// A command-line tool for working with Estuary. #[derive(Debug, Parser)] #[command(author, about, version, next_display_order = None)] pub struct Cli { diff --git a/go/runtime/flow_consumer.go b/go/runtime/flow_consumer.go index 669282918e4..272409a7d0e 100644 --- a/go/runtime/flow_consumer.go +++ b/go/runtime/flow_consumer.go @@ -92,7 +92,7 @@ func (c *FlowConsumerConfig) Plane() pr.Plane { return pr.Plane_PUBLIC } -// FlowConsumer implements the Estuary Flow Consumer. +// FlowConsumer implements the Estuary Consumer. type FlowConsumer struct { // Configuration of this FlowConsumer. config *FlowConsumerConfig diff --git a/mise.toml b/mise.toml index 1da341c7ec0..789ac69ebec 100644 --- a/mise.toml +++ b/mise.toml @@ -1,4 +1,4 @@ -# Mise configuration for Estuary Flow development tasks +# Mise configuration for Estuary development tasks # See https://mise.jdx.dev for documentation # Tool versions