Skip to content

chore(desktop): bump version to 1.12.0#4970

Merged
Kitenite merged 3 commits into
mainfrom
sunny-neptune
May 28, 2026
Merged

chore(desktop): bump version to 1.12.0#4970
Kitenite merged 3 commits into
mainfrom
sunny-neptune

Conversation

@Kitenite
Copy link
Copy Markdown
Collaborator

@Kitenite Kitenite commented May 28, 2026

Bumps desktop app version to 1.12.0.

This PR was automatically created by the release script.


Open in Stage

Summary by cubic

Bumped @superset/desktop to 1.12.1 and @superset/host-service to 0.8.17 for the desktop 1.12.1 patch release; no runtime changes.

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

Review in cubic

Summary by CodeRabbit

  • Chores
    • Bumped desktop application version to 1.12.1 (no other metadata or behavior changes).
    • Bumped host-service package version to 0.8.17 (no other exported/public changes).

Review Change Stack

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 28, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 6404b025-c0c7-4f46-9e37-d448b6ae6bf2

📥 Commits

Reviewing files that changed from the base of the PR and between 68d716d and b09444a.

📒 Files selected for processing (2)
  • apps/desktop/package.json
  • packages/host-service/package.json
🚧 Files skipped from review as they are similar to previous changes (1)
  • apps/desktop/package.json

📝 Walkthrough

Walkthrough

Version fields updated: apps/desktop/package.json from 1.11.31.12.1 and packages/host-service/package.json from 0.8.150.8.17. No other metadata, dependencies, scripts, or functionality changed.

Changes

Release Versions

Layer / File(s) Summary
Version increments
apps/desktop/package.json, packages/host-service/package.json
apps/desktop version updated to 1.12.1; @superset/host-service version updated to 0.8.17. No other changes.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

Poem

🐰
I hopped through JSON lines tonight,
Pushed two numbers up with delight,
Desktop and Host, both shining bright,
Small bumps to mark the release flight.

🚥 Pre-merge checks | ✅ 3 | ❌ 2

❌ Failed checks (1 warning, 1 inconclusive)

Check name Status Explanation Resolution
Title check ⚠️ Warning The PR title states 'bump version to 1.12.0' but the actual changes show versions bumped to 1.12.1 for desktop and 0.8.17 for host-service, creating a mismatch between the title and actual changes. Update the PR title to reflect the actual version changes, e.g., 'chore(desktop): bump version to 1.12.1' or clarify the version bump scope.
Description check ❓ Inconclusive The description mentions version 1.12.0 but the actual changes show 1.12.1 for desktop and 0.8.17 for host-service; however, the description is otherwise complete with auto-generated summaries and context. Clarify whether the version discrepancy (1.12.0 vs 1.12.1) is intentional or if the description needs updating to match the actual changes.
✅ Passed checks (3 passed)
Check name Status Explanation
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 sunny-neptune

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.

@stage-review
Copy link
Copy Markdown

stage-review Bot commented May 28, 2026

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

Title
1 Update host-service package version
2 Bump desktop application version to 1.12.1
Open in Stage

Chapters generated by Stage for commit b09444a on May 28, 2026 5:50pm UTC.

@capy-ai
Copy link
Copy Markdown

capy-ai Bot commented May 28, 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.

@greptile-apps
Copy link
Copy Markdown
Contributor

greptile-apps Bot commented May 28, 2026

Greptile Summary

This PR bumps the desktop app version from 1.11.3 to 1.12.0 and the host-service package from 0.8.15 to 0.8.16, generated automatically by the release script.

  • apps/desktop/package.json: minor version increment (1.11.31.12.0), signalling a new feature release.
  • packages/host-service/package.json: patch increment (0.8.150.8.16), updating the bundled host-service alongside the desktop release.

Confidence Score: 5/5

Safe to merge — only two version fields are changed by the automated release script, with no logic or configuration altered.

Both files contain purely mechanical version string updates with no functional code changed. The desktop package moves to a new minor version and the host-service to a new patch version, exactly as expected from a release script run.

No files require special attention.

Important Files Changed

Filename Overview
apps/desktop/package.json Version bumped from 1.11.3 to 1.12.0 — minor version increment consistent with a new feature release
packages/host-service/package.json Version bumped from 0.8.15 to 0.8.16 — patch increment for the host-service dependency

Sequence Diagram

sequenceDiagram
    participant Script as Release Script
    participant Desktop as apps/desktop/package.json
    participant HostSvc as packages/host-service/package.json

    Script->>Desktop: bump version 1.11.3 → 1.12.0
    Script->>HostSvc: bump version 0.8.15 → 0.8.16
Loading

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

Copy link
Copy Markdown
Contributor

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

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 ReleaseScript as "Release Script"
    participant GHRepo as "GitHub Repository"
    participant PackageRegistries as "Package Registries"
    participant Desktop as "@superset/desktop"
    participant HostService as "@superset/host-service"
    
    Note over ReleaseScript,HostService: Version Bump Flow (No Runtime Changes)
    
    ReleaseScript->>GHRepo: Update package versions
    GHRepo->>Desktop: Bump version 1.11.3 → 1.12.0
    GHRepo->>HostService: Bump version 0.8.15 → 0.8.16
    Note over Desktop: apps/desktop/package.json
    Note over HostService: packages/host-service/package.json
    Desktop->>PackageRegistries: Tag for release 1.12.0
    HostService->>PackageRegistries: Tag for release 0.8.16
    Note over Desktop,HostService: @superset/host-service 0.8.16 is a dependency\nof @superset/desktop 1.12.0
Loading

Re-trigger cubic

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 28, 2026

🧹 Preview Cleanup Complete

The following preview resources have been cleaned up:

  • ✅ Neon database branch

Thank you for your contribution! 🎉

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 28, 2026

Actionable comments posted: 0

Copy link
Copy Markdown
Contributor

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

Choose a reason for hiding this comment

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

2 issues found across 2 files (changes from recent commits).

Prompt for AI agents (unresolved issues)

Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.


<file name="apps/desktop/package.json">

<violation number="1" location="apps/desktop/package.json:5">
P2: Set the desktop package version to 1.12.0 to match the intended release.</violation>
</file>

<file name="packages/host-service/package.json">

<violation number="1" location="packages/host-service/package.json:3">
P2: Set the host-service package version to 0.8.16 to match the intended release.</violation>
</file>

Reply with feedback, questions, or to request a fix.

Re-trigger cubic

Comment thread apps/desktop/package.json
"productName": "Superset",
"description": "The last developer tool you'll ever need",
"version": "1.11.3",
"version": "1.12.1",
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.

P2: Set the desktop package version to 1.12.0 to match the intended release.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At apps/desktop/package.json, line 5:

<comment>Set the desktop package version to 1.12.0 to match the intended release.</comment>

<file context>
@@ -2,7 +2,7 @@
 	"productName": "Superset",
 	"description": "The last developer tool you'll ever need",
-	"version": "1.12.0",
+	"version": "1.12.1",
 	"main": "./dist/main/index.js",
 	"resources": "src/resources",
</file context>
Suggested change
"version": "1.12.1",
"version": "1.12.0",

{
"name": "@superset/host-service",
"version": "0.8.15",
"version": "0.8.17",
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.

P2: Set the host-service package version to 0.8.16 to match the intended release.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At packages/host-service/package.json, line 3:

<comment>Set the host-service package version to 0.8.16 to match the intended release.</comment>

<file context>
@@ -1,6 +1,6 @@
 {
 	"name": "@superset/host-service",
-	"version": "0.8.16",
+	"version": "0.8.17",
 	"private": true,
 	"type": "module",
</file context>
Suggested change
"version": "0.8.17",
"version": "0.8.16",

@Kitenite Kitenite merged commit 2bb0f5d into main May 28, 2026
20 of 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