From 9cd1a3745de477400104c8e18d728702426dd240 Mon Sep 17 00:00:00 2001 From: Satya Patel Date: Tue, 12 May 2026 23:11:05 -0700 Subject: [PATCH] release(cli): cut v0.2.16 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changes since v0.2.15: - workspaces: `superset workspaces list` table now shows the workspace ID column. (#4463) - docs: VHS demo walkthrough recording added under `packages/cli/demo/`. (#4461) - auth: `superset auth login --api-key sk_live_…` stores an API key at `~/.superset/config.json` instead of running the OAuth flow; `whoami` and `logout` updated to recognize stored keys. (#4472) - hosts: `superset hosts list` shows `local` for the host machine you're invoking from, distinct from `online`/`no`. (#4476) - automations: `--agent` is now the host agent instance/preset id (e.g. `claude`, `codex`, `superset`) and is resolved live from the host on every run. The `--agent-config-file` flag is removed; create/update rename `agentConfig` -> `agent` end-to-end. (#4481) Push cli-v0.2.16 after this lands to fire the release pipeline. --- bun.lock | 2 +- packages/cli/cli.config.ts | 2 +- packages/cli/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bun.lock b/bun.lock index bd1b7e935f0..0aa019c9406 100644 --- a/bun.lock +++ b/bun.lock @@ -685,7 +685,7 @@ }, "packages/cli": { "name": "@superset/cli", - "version": "0.2.15", + "version": "0.2.16", "dependencies": { "@clack/prompts": "0.10.1", "@superset/cli-framework": "workspace:*", diff --git a/packages/cli/cli.config.ts b/packages/cli/cli.config.ts index b7b3b8c779a..e00df96a2c2 100644 --- a/packages/cli/cli.config.ts +++ b/packages/cli/cli.config.ts @@ -1,6 +1,6 @@ import { boolean, defineConfig, string } from "@superset/cli-framework"; -const VERSION = "0.2.15"; +const VERSION = "0.2.16"; export default defineConfig({ name: "superset", diff --git a/packages/cli/package.json b/packages/cli/package.json index 0529e756362..bd930835b8b 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@superset/cli", - "version": "0.2.15", + "version": "0.2.16", "private": true, "type": "module", "scripts": {