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.48",
"version": "0.0.49",
Copy link

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
# Check for version consistency across the monorepo

# Search for all package.json files and their versions
echo "=== Package.json files with version fields ==="
fd -e json package.json --exec jq -r '.name as $name | .version as $version | if $version then "\($name // "unknown"): \($version)" else empty end' {} \;

# Search for potential hardcoded version references to 0.0.48
echo -e "\n=== Potential references to old version 0.0.48 ==="
rg "0\.0\.48" --type-add 'config:*.{json,ts,js,yml,yaml}' -t config 2>/dev/null || echo "No matches found"

# Search for other 0.0.x version patterns
echo -e "\n=== All 0.0.x version patterns in config files ==="
rg "0\.0\.\d+" --type-add 'config:*.{json,ts,js,yml,yaml}' -t config 2>/dev/null || echo "No matches found"

# Search for version exports or constants
echo -e "\n=== Version constants in code ==="
rg "version.*=.*['\"]0\.0\." --type ts --type js -C 1 2>/dev/null || echo "No matches found"

Repository: superset-sh/superset

Length of output: 3577


Update MINIMUM_DESKTOP_VERSION constant to match the new version.

The version bump in apps/desktop/package.json is correct (0.0.48 → 0.0.49), but the hardcoded minimum version constant in apps/api/src/app/api/desktop/version/route.ts still references the old version:

const MINIMUM_DESKTOP_VERSION = "0.0.48";

This needs to be updated to "0.0.49" to maintain version consistency and prevent API compatibility issues.

🤖 Prompt for AI Agents
In @apps/desktop/package.json at line 5, Update the MINIMUM_DESKTOP_VERSION
constant (currently "0.0.48") to "0.0.49" in the desktop version route code (the
constant named MINIMUM_DESKTOP_VERSION), so it matches the bumped package.json
version and avoids API compatibility mismatches.

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