chore(desktop): bump version to 1.5.3#3419
Conversation
📝 WalkthroughWalkthroughThe Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
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. Comment |
Greptile SummaryThis is an automated release PR that bumps the
Confidence Score: 5/5This PR is safe to merge — it is a single-field version bump with no functional changes. Only the No files require special attention. Important Files Changed
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])
Reviews (1): Last reviewed commit: "chore(desktop): bump version to 1.5.3" | Re-trigger Greptile |
There was a problem hiding this comment.
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
| "productName": "Superset", | ||
| "description": "The last developer tool you'll ever need", | ||
| "version": "1.5.1", | ||
| "version": "1.5.3", |
There was a problem hiding this comment.
🧩 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.
🧹 Preview Cleanup CompleteThe following preview resources have been cleaned up:
Thank you for your contribution! 🎉 |
[PR5/5] chore(upstream): デスクトップバージョンを 1.5.3 に更新 (superset-sh#3419)
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)
Bumps desktop app version to 1.5.3.
This PR was automatically created by the release script.
Summary by cubic
Updates the
@superset/desktopversion 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