release(cli): cut v0.2.12#4209
Conversation
Changes since v0.2.11: - workspaces: add `superset workspaces update <id> --name "..."` for renaming. Branch/host moves stay desktop-only — they require host-side git orchestration that isn't safe to drive from the cloud directly. (#4189) - organization: new `superset organization members list` command (also exposed via SDK + mcp-v2). Read-only — add/remove keep their existing UI flows. (#4197) - tasks: new `superset tasks statuses list` command surfacing the organization's configured task statuses. (#4197) - host-service: paste a closed/merged PR URL or `#N` into the v2 new-workspace modal and the dropdown actually returns the PR instead of "No open pull requests found." Direct lookups now ignore the open-only state filter that bounds text-search results. (#4190) Push cli-v0.2.12 after this lands to fire the release pipeline.
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (2)
📝 WalkthroughWalkthroughThe CLI package version is incremented from 0.2.11 to 0.2.12 in both the build-time configuration constant and the npm package manifest. ChangesCLI Version Bump
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
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. Comment |
Greptile SummaryThis PR cuts CLI release v0.2.12, bumping the version string in three places (
Confidence Score: 5/5Safe to merge — all three changes are identical single-line version string replacements with no logic or dependency modifications. The entire diff is three one-line version string updates across the package manifest, the runtime config constant, and the lock file. All three are consistent with each other and with the stated release version. There is nothing here that could introduce a regression. No files require special attention.
|
| Filename | Overview |
|---|---|
| packages/cli/package.json | Version bumped from 0.2.11 to 0.2.12; no other changes. |
| packages/cli/cli.config.ts | VERSION constant updated from "0.2.11" to "0.2.12"; no other changes. |
| bun.lock | Lock file entry for @superset/cli updated to reflect the new 0.2.12 version; no dependency changes. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[PR 4209 merged] --> B[Push cli-v0.2.12 tag]
B --> C[Release pipeline triggered]
C --> D[Build superset/cli v0.2.12]
D --> E[Publish artifact]
subgraph files [Version sources bumped]
F[package.json]
G[cli.config.ts]
H[bun.lock]
end
A -.-> F
A -.-> G
A -.-> H
Reviews (1): Last reviewed commit: "release(cli): cut v0.2.12" | Re-trigger Greptile
🚀 Preview Deployment🔗 Preview Links
Preview updates automatically with new commits |
Summary
Cuts CLI v0.2.12.
Changes since v0.2.11:
superset workspaces update <id> --name "..."for renaming. Branch/host moves stay desktop-only; they require host-side git orchestration that isn't safe to drive from the cloud directly. (feat(cli/sdk/mcp): add workspaces update for renaming #4189)superset organization members listcommand (also surfaced via SDK + mcp-v2). Read-only — add/remove keep their existing UI flows. (feat(slack): add slack-mcp-v2 flag + align mcp-v2/cli/sdk surface #4197)superset tasks statuses listcommand surfacing the organization's configured task statuses. (feat(slack): add slack-mcp-v2 flag + align mcp-v2/cli/sdk surface #4197)#Ninto the v2 new-workspace modal and the dropdown actually returns the PR instead of "No open pull requests found." Direct lookups now ignore the open-only state filter that bounds text-search results. (fix(desktop): return direct-lookup PR/issue regardless of state #4190)Test plan
bun run typecheck --filter=@superset/clipassessuperset workspaces update <id> --name "..."smokes locallysuperset organization members listandsuperset tasks statuses listsmoke locallycli-v0.2.12tag to fire the release pipelineSummary by cubic
Release
@superset/cliv0.2.12. Adds workspace rename and read-only org/task listing commands, plus improved PR lookup in the v2 new-workspace modal.New Features
superset workspaces update <id> --name "..."to rename workspaces. Branch/host moves remain desktop-only.superset organization members listto list members (read-only; add/remove stays in UI).superset tasks statuses listto list configured task statuses.Bug Fixes
#Nnow returns the PR; direct lookups ignore the open-only filter.Written for commit bcbec86. Summary will update on new commits.
Summary by CodeRabbit