Skip to content

release(cli): cut v0.2.9#4110

Merged
saddlepaddle merged 1 commit into
mainfrom
release-cli-version
May 5, 2026
Merged

release(cli): cut v0.2.9#4110
saddlepaddle merged 1 commit into
mainfrom
release-cli-version

Conversation

@saddlepaddle
Copy link
Copy Markdown
Collaborator

@saddlepaddle saddlepaddle commented May 5, 2026

Summary

Bump @superset/cli to v0.2.9. Changes since v0.2.8:

Push the cli-v0.2.9 tag after this merges to fire the release pipeline (.github/workflows/release-cli.yml).

Test plan

  • bun run typecheck clean
  • bun run lint clean
  • After merge, git tag cli-v0.2.9 <merge-sha> && git push origin cli-v0.2.9 and confirm the Release CLI workflow publishes a draft release + updates cli-latest

Summary by cubic

Release @superset/cli v0.2.9. Adds superset agents list and improves host-service reliability (token refresh, worktree adoption, naming timeout fallback).

  • New Features

    • CLI: Added superset agents list; "presets" are now UI-only; CLI reads canonical agents from host-service.
    • Host-service: Refresh stale OAuth tokens during remote workspace ops.
    • Host-service: workspace.create can adopt an existing worktree at any path.
    • Host-service: AI workspace naming times out after 5s and falls back to a deterministic name.
  • Migration

    • After merge, push tag cli-v0.2.9 to trigger .github/workflows/release-cli.yml.

Written for commit 6665a01. Summary will update on new commits.

Summary by CodeRabbit

  • Chores
    • Bumped CLI package version to 0.2.9

Changes since v0.2.8:

- `superset agents list` (and demoted "presets" to a UI-only concept).
  CLI now reads canonical agents from host-service. (#4097)
- Host-service: refresh stale OAuth access tokens on remote workspace
  ops instead of failing the request. (#4106)
- Host-service: workspace.create now adopts an existing worktree at any
  path, not just the canonical one. (#4096)
- Host-service: AI workspace naming times out after 5s and falls back
  to a deterministic name. (#4102)

Push cli-v0.2.9 after this lands to fire the release pipeline.
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 5, 2026

Caution

Review failed

The pull request is closed.

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 51ea92c5-28ae-42fc-95e6-f5a25f580fe5

📥 Commits

Reviewing files that changed from the base of the PR and between 869dc57 and 6665a01.

⛔ Files ignored due to path filters (1)
  • bun.lock is excluded by !**/*.lock
📒 Files selected for processing (2)
  • packages/cli/cli.config.ts
  • packages/cli/package.json

📝 Walkthrough

Walkthrough

Version bump of the CLI package from 0.2.8 to 0.2.9. The VERSION constant in cli.config.ts and the version field in package.json are both updated to reflect the new release.

Changes

CLI Version Bump

Layer / File(s) Summary
Version Configuration
packages/cli/cli.config.ts, packages/cli/package.json
VERSION constant and package.json version field updated from "0.2.8" to "0.2.9".

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~1 minute

Possibly related PRs

Poem

🐰 A hop, a skip, a tiny bump,
From point-eight to point-nine we jump,
The version rises, clear and bright,
Our CLI package feels just right! 🎉

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch release-cli-version

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@saddlepaddle saddlepaddle merged commit e670950 into main May 5, 2026
10 of 11 checks passed
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 5, 2026

🚀 Preview Deployment

🔗 Preview Links

Service Status Link
Neon Database (Neon) View Branch
Vercel API (Vercel) Open Preview
Vercel Web (Vercel) Open Preview
Vercel Marketing (Vercel) Open Preview
Vercel Admin (Vercel) Open Preview
Vercel Docs (Vercel) Open Preview

Preview updates automatically with new commits

@greptile-apps
Copy link
Copy Markdown

greptile-apps Bot commented May 5, 2026

Greptile Summary

This PR bumps @superset/cli from v0.2.8 to v0.2.9, updating the version string in three locations: package.json, cli.config.ts (the hardcoded VERSION constant), and bun.lock. The lock file also picks up a previously-stale @superset/desktop entry (1.8.3 → 1.8.4), which already matched the live apps/desktop/package.json on main — so no functional change to desktop is introduced.

  • Version is bumped consistently across packages/cli/package.json, packages/cli/cli.config.ts, and the bun.lock workspace section.
  • The bun.lock incidentally syncs the @superset/desktop workspace record to 1.8.4, aligning the lock with apps/desktop/package.json which was already at that version on main.

Confidence Score: 5/5

Safe to merge — all three changes are a mechanical version string bump with no logic changes.

The only changes are incrementing the version number in package.json, cli.config.ts, and bun.lock. The lock file also reconciles a previously stale desktop workspace entry, but that entry already matched the live apps/desktop/package.json on main, so no new dependency is introduced. There is nothing here that could regress runtime behavior.

No files require special attention.

Important Files Changed

Filename Overview
packages/cli/package.json Version bumped from 0.2.8 to 0.2.9 — straightforward, no other changes.
packages/cli/cli.config.ts Hardcoded VERSION constant updated from "0.2.8" to "0.2.9" to match package.json.
bun.lock CLI workspace entry bumped to 0.2.9; desktop entry synced to 1.8.4 (was stale at 1.8.3 in the lock, but apps/desktop/package.json was already at 1.8.4 on main).

Flowchart

%%{init: {'theme': 'neutral'}}%%
flowchart TD
    A[PR: release cli v0.2.9] --> B[packages/cli/package.json version 0.2.8 to 0.2.9]
    A --> C[packages/cli/cli.config.ts VERSION 0.2.8 to 0.2.9]
    A --> D[bun.lock workspace sync]
    D --> E[superset/cli 0.2.8 to 0.2.9]
    D --> F[superset/desktop lock entry 1.8.3 to 1.8.4 - was stale]
    B & C & E --> G[Merge to main]
    G --> H[Tag cli-v0.2.9 and push]
    H --> I[release-cli.yml fires - publishes draft release and updates cli-latest]
Loading

Reviews (1): Last reviewed commit: "release(cli): cut v0.2.9" | Re-trigger Greptile

saddlepaddle added a commit that referenced this pull request May 6, 2026
Changes since v0.2.8:

- `superset agents list` (and demoted "presets" to a UI-only concept).
  CLI now reads canonical agents from host-service. (#4097)
- Host-service: refresh stale OAuth access tokens on remote workspace
  ops instead of failing the request. (#4106)
- Host-service: workspace.create now adopts an existing worktree at any
  path, not just the canonical one. (#4096)
- Host-service: AI workspace naming times out after 5s and falls back
  to a deterministic name. (#4102)

Push cli-v0.2.9 after this lands to fire the release pipeline.
@Kitenite Kitenite deleted the release-cli-version branch May 6, 2026 04:50
This was referenced May 6, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant