Skip to content

chore(desktop): bump version to 1.12.4#5179

Merged
saddlepaddle merged 1 commit into
mainfrom
rel-jun-7
Jun 8, 2026
Merged

chore(desktop): bump version to 1.12.4#5179
saddlepaddle merged 1 commit into
mainfrom
rel-jun-7

Conversation

@saddlepaddle

@saddlepaddle saddlepaddle commented Jun 7, 2026

Copy link
Copy Markdown
Collaborator

Bumps desktop app version to 1.12.4.

This PR was automatically created by the release script.


Open in Stage

Summary by cubic

Updates @superset/desktop to 1.12.4 and @superset/host-service to 0.8.20 for the release build.

Written for commit bcd108e. Summary will update on new commits.

Review in cubic

Summary by CodeRabbit

  • Chores
    • Bumped desktop application version to 1.12.4
    • Bumped host service version to 0.8.20

@stage-review

stage-review Bot commented Jun 7, 2026

Copy link
Copy Markdown

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

Title
1 Bump host-service package version
2 Bump desktop app version to 1.12.4
Open in Stage

Chapters generated by Stage for commit bcd108e on Jun 7, 2026 8:39pm UTC.

@coderabbitai

coderabbitai Bot commented Jun 7, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 2977440c-8b1d-47df-882d-1ed63ad1b907

📥 Commits

Reviewing files that changed from the base of the PR and between f899ed2 and bcd108e.

📒 Files selected for processing (2)
  • apps/desktop/package.json
  • packages/host-service/package.json

📝 Walkthrough

Walkthrough

This PR increments the version number of two packages: @superset/desktop from 1.12.3 to 1.12.4 and @superset/host-service from 0.8.19 to 0.8.20. Both changes are confined to single lines in their respective package.json files.

Changes

Package version increments

Layer / File(s) Summary
Package version increments
apps/desktop/package.json, packages/host-service/package.json
Desktop package version updated to 1.12.4; host-service package version updated to 0.8.20.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~1 minute

Possibly related PRs

Poem

🐰 A hop, a bump, a version new,
1.12.4 shines bright and true,
Host-service joins the festive cheer,
Release day whispers in our ear! 🚀

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately describes the main change (desktop version bump to 1.12.4), but it's incomplete as it doesn't mention the host-service version update also included in the changeset.
Description check ✅ Passed The description is mostly complete, providing clear context that this is an auto-generated release PR. However, most template sections (Testing, Screenshots, Additional Notes) are not filled out, though they may not be critical for an automated version bump.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch rel-jun-7

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.

@greptile-apps

greptile-apps Bot commented Jun 7, 2026

Copy link
Copy Markdown
Contributor

Greptile Summary

This is an automated patch-release version bump for the desktop app (1.12.3 → 1.12.4) and its companion host-service package (0.8.19 → 0.8.20). No logic, dependencies, or configuration changes are included.

  • apps/desktop/package.json: bumps the Electron desktop app version to 1.12.4.
  • packages/host-service/package.json: bumps the host-service package version to 0.8.20; the desktop app consumes it via workspace:* so no cross-reference update is needed.

Confidence Score: 5/5

Two-line version bump generated by the release script; no logic or dependency changes.

Both files receive only a version field increment. The desktop package references @superset/host-service via workspace:*, so no cross-reference update is required. There is nothing here that could introduce a regression.

No files require special attention.

Important Files Changed

Filename Overview
apps/desktop/package.json Version bumped from 1.12.3 to 1.12.4; no other changes
packages/host-service/package.json Version bumped from 0.8.19 to 0.8.20; no other changes

Flowchart

%%{init: {'theme': 'neutral'}}%%
flowchart TD
    A[Release Script] --> B[apps/desktop/package.json
1.12.3 to 1.12.4]
    A --> C[packages/host-service/package.json
0.8.19 to 0.8.20]
    B --> D[desktop v1.12.4]
    C --> E[host-service v0.8.20]
    D -->|workspace:*| E
Loading

Reviews (1): Last reviewed commit: "chore(desktop): bump version to 1.12.4 (..." | Re-trigger Greptile

@cubic-dev-ai cubic-dev-ai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 2 files

Architecture diagram
sequenceDiagram
    participant NPM as npm registry
    participant CI as CI/CD Pipeline
    participant Repo as Git Repository
    participant Builder as Build System
    participant Desktop as @superset/desktop
    participant Host as @superset/host-service

    Note over NPM,Host: Release Version Bump Flow

    CI->>Repo: Trigger release script
    Repo->>Repo: Update package.json versions
    Repo-->>CI: Commit changes
    
    CI->>Builder: Start build with updated versions
    
    Builder->>Desktop: Read version 1.12.4
    Builder->>Host: Read version 0.8.20
    
    alt Release build
        Builder->>Desktop: Build desktop app
        Builder->>Host: Build host service
        Desktop->>NPM: Publish @superset/desktop@1.12.4
        Host->>NPM: Publish @superset/host-service@0.8.20
    end

    Note over Builder,NPM: Version synchronization ensures<br/>matching releases across packages
Loading

Re-trigger cubic

@github-actions

github-actions Bot commented Jun 7, 2026

Copy link
Copy Markdown
Contributor

🧹 Preview Cleanup Complete

The following preview resources have been cleaned up:

  • ✅ Neon database branch

Thank you for your contribution! 🎉

@saddlepaddle saddlepaddle merged commit 23c2a48 into main Jun 8, 2026
21 checks passed
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