Skip to content

chore(desktop): bump version to 0.0.75#1485

Closed
saddlepaddle wants to merge 1 commit intomainfrom
0.75
Closed

chore(desktop): bump version to 0.0.75#1485
saddlepaddle wants to merge 1 commit intomainfrom
0.75

Conversation

@saddlepaddle
Copy link
Copy Markdown
Collaborator

@saddlepaddle saddlepaddle commented Feb 14, 2026

Bumps desktop app version to 0.0.75.

This PR was automatically created by the release script.

Summary by CodeRabbit

  • Chores
    • Updated desktop application version.

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Feb 14, 2026

📝 Walkthrough

Walkthrough

The desktop package version in apps/desktop/package.json is downgraded from 0.0.76 to 0.0.75. This is a single-line configuration change with no other modifications.

Changes

Cohort / File(s) Summary
Version Update
apps/desktop/package.json
Version field downgraded from 0.0.76 to 0.0.75.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~1 minute

Possibly related PRs

Poem

🐰 A hop, a skip, a number change!
From 76 down to 75 so strange.
The desktop version takes a rest,
A small rewind—perhaps the best! ✨

🚥 Pre-merge checks | ✅ 3 | ❌ 1
❌ Failed checks (1 warning)
Check name Status Explanation Resolution
Description check ⚠️ Warning The description is minimal but lacks required template sections including Related Issues, Type of Change, Testing, and Additional Notes. Complete the PR description by adding required sections from the template, particularly identifying the change type (chore/refactor) and any testing performed.
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and accurately describes the main change: bumping the desktop app version to 0.0.75, which matches the changeset in package.json.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Merge Conflict Detection ✅ Passed ✅ No merge conflicts detected when merging into main

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

✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch 0.75

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.

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

🤖 Fix all issues with AI agents
In `@apps/desktop/package.json`:
- Line 5: The package.json "version" field was decreased to "0.0.75" which is a
downgrade; update the "version" value in apps/desktop's package.json (the
"version" key) to the correct, higher semantic version (e.g., change back to
"0.0.76" or the intended new bump) so versions monotonically increase, and then
verify the release script/branch/merge resolution that produced this change to
prevent regressions; ensure the commit message and PR title match the final
"version" value before merging.

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

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check version history and verify the downgrade claim

echo "=== Git log for apps/desktop/package.json (last 15 commits) ==="
git log --oneline -15 -- apps/desktop/package.json 2>/dev/null || echo "No git history available"

echo -e "\n=== Recent version values from git history ==="
git log -p -10 -- apps/desktop/package.json 2>/dev/null | grep -E '^\+.*"version"|^-.*"version"' | head -20 || echo "Cannot extract version history"

echo -e "\n=== Current branch and version ==="
git branch -v 2>/dev/null || echo "No branch info"
grep '"version"' apps/desktop/package.json

echo -e "\n=== Check if electron-updater is in dependencies ==="
grep -E '"electron-updater"' apps/desktop/package.json && echo "Found electron-updater" || echo "electron-updater not found"

echo -e "\n=== Full version context from current file ==="
sed -n '1,10p' apps/desktop/package.json

Repository: superset-sh/superset

Length of output: 938


🏁 Script executed:

#!/bin/bash
# Check version on main branch and earlier commits

echo "=== Version on main branch ==="
git show main:apps/desktop/package.json 2>/dev/null | grep '"version"' || echo "Cannot read main branch"

echo -e "\n=== All commits touching package.json in repository ==="
git log --all --oneline -- apps/desktop/package.json 2>/dev/null | head -20

echo -e "\n=== Detailed diff for the current commit ==="
git show ee420663 -- apps/desktop/package.json 2>/dev/null | head -50

echo -e "\n=== Previous commit before ee420663 ==="
git show ee420663^:apps/desktop/package.json 2>/dev/null | grep '"version"' || echo "Previous commit not available"

Repository: superset-sh/superset

Length of output: 2574


Version downgrade detected—contradicts PR title and breaks update delivery.

The PR title states "bump version to 0.0.75" but this changes the version from 0.0.76 (on main) down to 0.0.75, which is a downgrade, not a bump. This creates critical issues:

  1. Auto-update failure: Users already on 0.0.76 will not be notified of this release since electron-updater only triggers updates for higher version numbers.
  2. Semantic versioning violation: Version numbers should monotonically increase.
  3. Release management confusion: The version history becomes non-linear.

This suggests either the wrong branch is being merged, a merge conflict was resolved incorrectly, the release script has a bug, or an intentional rollback that requires proper documentation. The discrepancy between the commit message ("bump") and the actual change (downgrade) must be resolved before merging.

🤖 Prompt for AI Agents
In `@apps/desktop/package.json` at line 5, The package.json "version" field was
decreased to "0.0.75" which is a downgrade; update the "version" value in
apps/desktop's package.json (the "version" key) to the correct, higher semantic
version (e.g., change back to "0.0.76" or the intended new bump) so versions
monotonically increase, and then verify the release script/branch/merge
resolution that produced this change to prevent regressions; ensure the commit
message and PR title match the final "version" value before merging.

@Kitenite Kitenite closed this Feb 14, 2026
@Kitenite Kitenite deleted the 0.75 branch February 16, 2026 00:04
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.

2 participants