Skip to content

chore(cli): bump version to 0.2.19#4642

Merged
saddlepaddle merged 1 commit into
mainfrom
chore/cli-0.2.19
May 16, 2026
Merged

chore(cli): bump version to 0.2.19#4642
saddlepaddle merged 1 commit into
mainfrom
chore/cli-0.2.19

Conversation

@saddlepaddle
Copy link
Copy Markdown
Collaborator

@saddlepaddle saddlepaddle commented May 16, 2026

Bumps @superset/cli to 0.2.19.

First CLI release that carries the in-band relay drain handler from #4594 — the host-service recognizes the {type:"drain"} message the relay sends before a SIGINT shutdown and reconnects immediately, instead of sitting out the ~75s inbound-silence watchdog on every relay deploy.

cli-v0.2.18 is already tagged, so the drain-capable build ships as 0.2.19.


Open in Stage

Summary by cubic

Bumps @superset/cli to 0.2.19. This release adds the in-band relay drain handler so the host service reconnects immediately on relay deploys, avoiding the ~75s inbound-silence watchdog.

Written for commit 684fd8a. Summary will update on new commits. Review in cubic

Summary by CodeRabbit

  • Chores
    • Version updated to 0.2.19

Review Change Stack

First CLI release carrying the in-band relay drain handler (#4594):
host-service recognizes the {type:"drain"} message and reconnects
immediately on a relay deploy instead of waiting out the inbound-
silence watchdog.
@stage-review
Copy link
Copy Markdown

stage-review Bot commented May 16, 2026

Ready to review this PR? Stage has broken it down into 1 individual chapter for you:

Title
1 Bump CLI version to 0.2.19
Open in Stage

Chapters generated by Stage for commit 684fd8a on May 16, 2026 8:03pm UTC.

@capy-ai
Copy link
Copy Markdown

capy-ai Bot commented May 16, 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 16, 2026

Caution

Review failed

The pull request is closed.

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 23398d56-2a28-4f5e-80b0-ea29d1335882

📥 Commits

Reviewing files that changed from the base of the PR and between 18cdf8e and 684fd8a.

📒 Files selected for processing (2)
  • packages/cli/cli.config.ts
  • packages/cli/package.json

📝 Walkthrough

Walkthrough

The CLI package version is incremented from 0.2.18 to 0.2.19. The VERSION constant in cli.config.ts and the version field in package.json are both updated to reflect this patch release.

Changes

CLI Version Bump

Layer / File(s) Summary
Version synchronization
packages/cli/cli.config.ts, packages/cli/package.json
The VERSION constant in cli.config.ts and the version field in package.json are both bumped from 0.2.18 to 0.2.19, keeping the CLI's internal reporting and package manifest synchronized.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

  • superset-sh/superset#4580: Both PRs bump the same VERSION constant in packages/cli/cli.config.ts and update packages/cli/package.json from one patch version to the next.
  • superset-sh/superset#4462: Both PRs update the same CLI versioning in packages/cli/cli.config.ts and bump packages/cli/package.json's version.
  • superset-sh/superset#4494: Both PRs modify the same CLI versioning in packages/cli/cli.config.ts and bump packages/cli/package.json's @superset/cli version.

Poem

🐰 A version bump, so clean and bright,
From point-two-eighteen to nineteen's light,
Two files in sync, a CLI takes flight,
The rabbit hops with joy tonight! ✨

✨ 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 chore/cli-0.2.19

Warning

There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure.

🔧 ESLint

If the error stems from missing dependencies, add them to the package.json file. For unrecoverable errors (e.g., due to private dependencies), disable the tool in the CodeRabbit configuration.

ESLint skipped: no ESLint configuration detected in root package.json. To enable, add eslint to devDependencies.


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

github-actions Bot commented May 16, 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 16, 2026

Greptile Summary

Bumps @superset/cli from 0.2.18 to 0.2.19 in both package.json and cli.config.ts. This is the first release that carries the in-band relay drain handler introduced in #4594.

  • Version string updated in packages/cli/cli.config.ts (VERSION constant) and packages/cli/package.json (version field) — both are in sync.
  • No logic changes are included in this PR; the drain-handler behavior itself was merged separately.

Confidence Score: 5/5

This PR is safe to merge — it is a two-line version bump with both files in sync and no logic changes.

The only changes are the version string in cli.config.ts and package.json, both updated consistently to 0.2.19. The actual drain-handler code shipped in a prior PR; this is purely the release tag bump.

No files require special attention.

Important Files Changed

Filename Overview
packages/cli/cli.config.ts VERSION constant bumped from 0.2.18 to 0.2.19; no other changes.
packages/cli/package.json version field bumped from 0.2.18 to 0.2.19; consistent with cli.config.ts.

Sequence Diagram

sequenceDiagram
    participant Relay
    participant HostService

    Note over Relay,HostService: Before 0.2.19 (no drain handler)
    Relay->>Relay: SIGINT received
    Relay--xHostService: connection drops silently
    HostService->>HostService: wait ~75s inbound-silence watchdog
    HostService->>Relay: reconnect after watchdog timeout

    Note over Relay,HostService: With 0.2.19 (drain handler from #4594)
    Relay->>Relay: SIGINT received
    Relay->>HostService: "{type: "drain"} message"
    HostService->>Relay: reconnect immediately
Loading

Reviews (1): Last reviewed commit: "chore(cli): bump version to 0.2.19" | Re-trigger Greptile

sazabi Bot pushed a commit that referenced this pull request May 20, 2026
First CLI release carrying the in-band relay drain handler (#4594):
host-service recognizes the {type:"drain"} message and reconnects
immediately on a relay deploy instead of waiting out the inbound-
silence watchdog.
@coderabbitai coderabbitai Bot mentioned this pull request May 22, 2026
3 tasks
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