Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@superset/desktop",
"productName": "Superset",
"description": "The last developer tool you'll ever need",
"version": "0.0.56",
"version": "0.0.57",
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 | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Find any references to the old version 0.0.56
echo "=== Searching for old version 0.0.56 ==="
rg "0\.0\.56" --no-heading

echo -e "\n=== Searching for CHANGELOG or release notes ==="
fd -i "changelog|release|history|news" -type f

echo -e "\n=== Checking current package.json version ==="
cat apps/desktop/package.json | head -10

Repository: superset-sh/superset

Length of output: 720


🏁 Script executed:

#!/bin/bash
# Search for all version references across the codebase
echo "=== All version references in config files ==="
rg "version.*0\.0\." --type json --type yaml --type lock -A 1 -B 1

echo -e "\n=== Check all package.json files ==="
fd "package\.json" -x grep -H "version" {}

echo -e "\n=== Check for version in root config files ==="
ls -la | grep -E "version|VERSION"

Repository: superset-sh/superset

Length of output: 2334


Update bun.lock to sync the desktop app version to 0.0.57

The version in apps/desktop/package.json was bumped to 0.0.57, but bun.lock still references @superset/desktop at version 0.0.56. The lock file must be regenerated or manually updated to match the package.json version to prevent build and dependency resolution issues.

🤖 Prompt for AI Agents
In `@apps/desktop/package.json` at line 5, The package version in
apps/desktop/package.json was bumped to 0.0.57 but bun.lock still references
`@superset/desktop` at 0.0.56; regenerate the lockfile or update the lock entry so
they match by reinstalling dependencies to refresh bun.lock (or manually change
the `@superset/desktop` version entry in bun.lock to 0.0.57), then commit the
updated bun.lock alongside the package.json change.

"main": "./dist/main/index.js",
"resources": "src/resources",
"repository": {
Expand Down
Loading