Skip to content

release(sdk): cut alpha.10#4495

Merged
saddlepaddle merged 1 commit into
mainfrom
release/sdk-alpha.10
May 13, 2026
Merged

release(sdk): cut alpha.10#4495
saddlepaddle merged 1 commit into
mainfrom
release/sdk-alpha.10

Conversation

@saddlepaddle
Copy link
Copy Markdown
Collaborator

@saddlepaddle saddlepaddle commented May 13, 2026

Summary

Changes since alpha.9:

Test plan

  • CI green
  • After merge: cd packages/sdk && bun run build && cd dist && npm publish --access public
  • Verify @superset_sh/sdk@0.0.1-alpha.10 resolves on npm

Summary by cubic

Release @superset/sdk 0.0.1-alpha.10. Adds workspace list filters and a breaking rename for automation agents; also pins dev deps bun-types@1.3.11 and typescript@5.9.3.

  • New Features

    • workspaces.list now supports projectId, projectName, and search filters to match the desktop list view.
  • Migration

    • Rename agentConfig to agent in automations.create, automations.update, and AutomationSummary. Use a string id (e.g., claude, codex, superset). The AgentConfig type is removed; the host resolves the live agent config on each run.

Written for commit 56d56be. Summary will update on new commits.

Summary by CodeRabbit

  • Chores
    • Updated SDK package version to 0.0.1-alpha.10

Review Change Stack

Changes since alpha.9:

- workspaces.list accepts `projectId`, `projectName`, and `search` to
  filter the listing — matches the desktop list view. (#4455)
- chore(deps): pin exact dev versions (`bun-types` 1.3.11, `typescript`
  5.9.3). (#4436)
- BREAKING: `automations.create` / `automations.update` /
  `AutomationSummary` rename `agentConfig` -> `agent` (string id of a
  host agent instance or preset, e.g. `claude`, `codex`, `superset`).
  The `AgentConfig` type is removed from the public surface. The host
  now resolves the live agent config on every run, so client-side
  snapshots no longer drift from `Settings → Agents` edits. (#4481)

After merge: `cd packages/sdk && bun run build && cd dist && npm publish --access public`.
@capy-ai
Copy link
Copy Markdown

capy-ai Bot commented May 13, 2026

Capy auto-review is paused for this organization because the monthly auto-review limit has been reached. Increase the limit or turn it off in billing settings to resume automatic reviews.

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 13, 2026

Caution

Review failed

The pull request is closed.

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 7f69b03f-d2a1-4778-9a8a-601901ddfde8

📥 Commits

Reviewing files that changed from the base of the PR and between 37ce68e and 56d56be.

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

📝 Walkthrough

Walkthrough

The PR updates the @superset/sdk package version from 0.0.1-alpha.9 to 0.0.1-alpha.10 in the package manifest. This is a routine version bump with no changes to package dependencies, scripts, or configuration.

Changes

SDK Version Update

Layer / File(s) Summary
Package version update
packages/sdk/package.json
Version field incremented from 0.0.1-alpha.9 to 0.0.1-alpha.10.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~1 minute

Poem

🐰 A tiny hop, a version's flight,
From nine to ten, the SDK shines bright,
Alpha releases, building the way,
One hop closer to release day! 🚀

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch release/sdk-alpha.10

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 218e43f into main May 13, 2026
10 of 11 checks passed
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 13, 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
Contributor

greptile-apps Bot commented May 13, 2026

Greptile Summary

This PR cuts the @superset_sh/sdk alpha.10 release by bumping the package version from 0.0.1-alpha.9 to 0.0.1-alpha.10 in packages/sdk/package.json and the corresponding bun.lock entry. All substantive changes (workspace filtering params, pinned dev dependencies, agentConfigagent rename) landed in earlier PRs.

  • Version bumped in packages/sdk/package.json and bun.lock; no source or dependency changes in this diff.
  • The build script produces a dist/package.json without the private: true flag, so npm publish from dist/ will work as documented in the test plan.

Confidence Score: 5/5

Safe to merge — this is a pure version bump with no logic changes.

The diff touches only the version string in packages/sdk/package.json and its corresponding bun.lock entry. The build script correctly strips private: true when generating dist/package.json, so the publish step in the test plan will work as written.

No files require special attention.

Important Files Changed

Filename Overview
packages/sdk/package.json Version bumped from 0.0.1-alpha.9 to 0.0.1-alpha.10; no other changes.
bun.lock Lockfile entry for @superset/sdk version updated to match package.json bump.

Sequence Diagram

sequenceDiagram
    participant Dev as Developer
    participant Build as bun run build
    participant Dist as dist/
    participant NPM as npm registry

    Dev->>Build: bun run scripts/build.ts
    Build->>Dist: bundle ESM (index.js)
    Build->>Dist: bundle CJS (index.cjs)
    Build->>Dist: emit .d.ts via tsc
    Build->>Dist: "write package.json (name: @superset_sh/sdk, version: 0.0.1-alpha.10, no private flag)"
    Dev->>NPM: "cd dist && npm publish --access public"
    NPM-->>Dev: "@superset_sh/sdk@0.0.1-alpha.10 published"
Loading

Reviews (1): Last reviewed commit: "release(sdk): cut alpha.10" | Re-trigger Greptile

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