Skip to content

chore(desktop): bump version to 1.5.3#3419

Merged
Kitenite merged 1 commit into
mainfrom
cedar-tamarind
Apr 13, 2026
Merged

chore(desktop): bump version to 1.5.3#3419
Kitenite merged 1 commit into
mainfrom
cedar-tamarind

Conversation

@Kitenite
Copy link
Copy Markdown
Collaborator

@Kitenite Kitenite commented Apr 13, 2026

Bumps desktop app version to 1.5.3.

This PR was automatically created by the release script.


Summary by cubic

Updates the @superset/desktop version from 1.5.1 to 1.5.3 to prepare the 1.5.3 desktop patch release. No runtime changes; version metadata only.

Written for commit 647c43b. Summary will update on new commits.

Summary by CodeRabbit

  • Chores
    • Updated package version to 1.5.3

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Apr 13, 2026

📝 Walkthrough

Walkthrough

The @superset/desktop package version in apps/desktop/package.json was incremented from 1.5.1 to 1.5.3. No scripts, dependencies, or public interfaces were modified.

Changes

Cohort / File(s) Summary
Version Bump
apps/desktop/package.json
Incremented package version from 1.5.1 to 1.5.3.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

Poem

🐰 A hop, a skip, a version rise,
From one-five-one to one-five-three,
The desktop sings with joyful sighs,
Each increment brings harmony! ✨

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely describes the main change: bumping the desktop package version from 1.5.1 to 1.5.3.
Description check ✅ Passed The description provides essential context (version bump details, auto-generated note), but omits most template sections like Related Issues, Type of Change, Testing, and Additional Notes.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ 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 cedar-tamarind

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
Copy link
Copy Markdown

greptile-apps Bot commented Apr 13, 2026

Greptile Summary

This is an automated release PR that bumps the @superset/desktop package version to 1.5.3 in apps/desktop/package.json. No logic, dependencies, or scripts were changed — only the "version" field was updated.

  • Version field in apps/desktop/package.json updated to "1.5.3"
  • Change was generated by the release script, consistent with the repo's release workflow
  • No functional impact; purely a metadata change to trigger a new Electron build/release

Confidence Score: 5/5

This PR is safe to merge — it is a single-field version bump with no functional changes.

Only the version field in apps/desktop/package.json was modified from the previous value to 1.5.3. No dependencies, scripts, or logic were altered. The change was produced automatically by the release script, following the established release workflow. There are zero logical, security, or functional risks.

No files require special attention.

Important Files Changed

Filename Overview
apps/desktop/package.json Version field bumped from previous release to 1.5.3; no dependency or script changes introduced.

Flowchart

%%{init: {'theme': 'neutral'}}%%
flowchart TD
    A([Release Script Triggered]) --> B[Bump version in apps/desktop/package.json]
    B --> C[Open PR against main]
    C --> D{PR Review}
    D -->|Approved & Merged| E[CI builds Electron app v1.5.3]
    E --> F[electron-builder --publish always]
    F --> G([New desktop release published])
Loading

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

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@apps/desktop/package.json`:
- Line 5: Check whether the version jump in apps/desktop/package.json (the
"version" field set to "1.5.3") was intentional by: verifying if a v1.5.2 tag or
commit exists in the repo and the changelog/release notes mention 1.5.2,
inspecting the CI/release workflow or release script that bumps/tags versions
for skipped releases, and confirming with the releaser; if 1.5.2 was omitted
unintentionally, either create the missing v1.5.2 tag/release (with its
commit/changelog) or revert/adjust the "version" in package.json and the release
script to the correct next version so tags, changelog, and package.json stay
consistent.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: dfc1afbe-8692-4ae8-b6aa-d5d993579697

📥 Commits

Reviewing files that changed from the base of the PR and between 039edf2 and 647c43b.

📒 Files selected for processing (1)
  • apps/desktop/package.json

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

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Check git tags and package.json history to verify if 1.5.2 was ever released

# Check if version 1.5.2 exists in git tags
echo "=== Checking for v1.5.2 tag ==="
git tag -l | grep -E "v?1\.5\.2" || echo "No 1.5.2 tag found"

# Check package.json version history
echo -e "\n=== Recent version history in package.json ==="
git log -10 --oneline --all -- apps/desktop/package.json

# Show the actual version changes
echo -e "\n=== Version field changes in last 10 commits ==="
git log -10 --all -p -- apps/desktop/package.json | grep -A1 -B1 '"version"'

Repository: superset-sh/superset

Length of output: 1536


Confirm whether the version increment from 1.5.1 to 1.5.3 was intentional.

The version history shows a direct jump from 1.5.1 to 1.5.3 with no v1.5.2 tag or corresponding commit in the repository. While the skip is confirmed, please verify whether this was intentional (e.g., 1.5.2 was prepared but not released) or if the release script needs adjustment.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@apps/desktop/package.json` at line 5, Check whether the version jump in
apps/desktop/package.json (the "version" field set to "1.5.3") was intentional
by: verifying if a v1.5.2 tag or commit exists in the repo and the
changelog/release notes mention 1.5.2, inspecting the CI/release workflow or
release script that bumps/tags versions for skipped releases, and confirming
with the releaser; if 1.5.2 was omitted unintentionally, either create the
missing v1.5.2 tag/release (with its commit/changelog) or revert/adjust the
"version" in package.json and the release script to the correct next version so
tags, changelog, and package.json stay consistent.

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 1 file

@Kitenite Kitenite merged commit bb12c09 into main Apr 13, 2026
11 checks passed
@github-actions
Copy link
Copy Markdown
Contributor

🧹 Preview Cleanup Complete

The following preview resources have been cleaned up:

  • ⚠️ Neon database branch
  • ⚠️ Electric Fly.io app

Thank you for your contribution! 🎉

MocA-Love pushed a commit to MocA-Love/superset that referenced this pull request Apr 14, 2026
MocA-Love pushed a commit to MocA-Love/superset that referenced this pull request Apr 14, 2026
MocA-Love added a commit to MocA-Love/superset that referenced this pull request Apr 14, 2026
[PR5/5] chore(upstream): デスクトップバージョンを 1.5.3 に更新 (superset-sh#3419)
MocA-Love pushed a commit to MocA-Love/superset that referenced this pull request Apr 14, 2026
All 9 upstream commits have been individually cherry-picked via PR#159~#163:

| Upstream | Our PR | Description |
|---|---|---|
| d656b7e (superset-sh#3415) | #159 (PR#1) | terminal clipboard handling |
| 31fcf19 (superset-sh#3416) | #162 (PR#4) | v1 split pane startup sizing fix |
| 039edf2 (superset-sh#3403) | #161 (PR#3) | Cmd+Alt+Arrow spatial pane focus |
| b18a00c (superset-sh#3421) | #159 (PR#1) | v2 right sidebar toggle reactive |
| 3dd1de2 (superset-sh#3420) | #161 (PR#3) | v2 diff viewer + tab title resolution |
| b42a114 (superset-sh#3418) | #159 (PR#1) | CodeMirror hotkey enablement |
| c925f4d (superset-sh#3422) | #160 (PR#2) | unbound defaults + restore prev/next tab/workspace |
| bb12c09 (superset-sh#3419) | #163 (PR#5) | version bump 1.5.3 |
| 47efa73 (superset-sh#3432) | #159 (PR#1) | pending/update-required error selectable |

Fork-specific features preserved:
- auto-updater (IS_FORK, GitHub Releases API)
- QuitMode/cleanupMainWindowResources lifecycle
- GitHubSyncService, SpreadsheetViewer
- BROWSER_RELOAD / BROWSER_HARD_RELOAD / SEARCH_IN_FILES hotkeys
- HotkeyCategory "Browser"
- v1 deep-link navigation (useSearch/WorkspaceSearchParams)
- v1 tRPC-based PREV/NEXT_WORKSPACE handlers
- v1 CLOSE_TERMINAL/CLOSE_TAB hotkey handlers
- v2 extra state (rightSidebarOpenViewWidth, showPresetsBar)
@Kitenite Kitenite deleted the cedar-tamarind branch May 6, 2026 04:53
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