Update Fleet-maintained apps#47585
Conversation
Generated automatically with cmd/maintained-apps.
CI Feedback 🧐A test triggered by this PR failed. Here is an AI-generated analysis of the failure:
|
WalkthroughVersion metadata was updated for 13 maintained applications across 14 JSON output files. For each app, the Possibly related PRs
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 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 |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@ee/maintained-apps/outputs/dockside/darwin.json`:
- Line 9: The installer_url and corresponding sha256 in the darwin.json file
reference a non-existent Dockside release version v2.9.10. Verify the correct
intended version from the official PrajwalSD/Dockside GitHub repository (current
documented versions are 2.8.5 and 2.9.3), then update the installer_url field at
line 9 to point to the correct release download link and update the sha256 field
at line 12 with the accurate checksum for that verified release to prevent
installation failures.
🪄 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: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Run ID: 12ef0060-4a04-4ebe-8e01-85946bb71b54
📒 Files selected for processing (14)
ee/maintained-apps/outputs/boltai/darwin.jsonee/maintained-apps/outputs/codexbar/darwin.jsonee/maintained-apps/outputs/cursor/windows.jsonee/maintained-apps/outputs/dockside/darwin.jsonee/maintained-apps/outputs/dropshare/darwin.jsonee/maintained-apps/outputs/firealpaca/darwin.jsonee/maintained-apps/outputs/hive-app/darwin.jsonee/maintained-apps/outputs/nvidia-geforce-now/darwin.jsonee/maintained-apps/outputs/opencode-desktop/darwin.jsonee/maintained-apps/outputs/stats/darwin.jsonee/maintained-apps/outputs/syncovery/darwin.jsonee/maintained-apps/outputs/tableplus/darwin.jsonee/maintained-apps/outputs/typora/darwin.jsonee/maintained-apps/outputs/zettlr/darwin.json
| "patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.hachipoo.Dockside' AND version_compare(bundle_short_version, '2.9.10') < 0);" | ||
| }, | ||
| "installer_url": "https://github.com/PrajwalSD/Dockside/releases/download/v2.9.8/Dockside.dmg", | ||
| "installer_url": "https://github.com/PrajwalSD/Dockside/releases/download/v2.9.10/Dockside.dmg", |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Verify Dockside installer URL and SHA256
URL="https://github.com/PrajwalSD/Dockside/releases/download/v2.9.10/Dockside.dmg"
EXPECTED_SHA256="78ac0c119bd8e263517c7c596b9150e8c47ace707b5f80a2c1d77063e4edb1d7"
# Check URL accessibility
echo "Checking URL accessibility..."
HTTP_STATUS=$(curl -sI -L -w "%{http_code}" -o /dev/null "$URL")
if [ "$HTTP_STATUS" -eq 200 ]; then
echo "✓ URL is accessible (HTTP $HTTP_STATUS)"
else
echo "✗ URL returned HTTP $HTTP_STATUS"
exit 1
fi
# Download and verify checksum
echo "Downloading installer and verifying SHA256..."
ACTUAL_SHA256=$(curl -sL "$URL" | shasum -a 256 | awk '{print $1}')
if [ "$ACTUAL_SHA256" = "$EXPECTED_SHA256" ]; then
echo "✓ SHA256 checksum matches"
else
echo "✗ SHA256 mismatch"
echo " Expected: $EXPECTED_SHA256"
echo " Actual: $ACTUAL_SHA256"
exit 1
fiRepository: fleetdm/fleet
Length of output: 336
🏁 Script executed:
cat -n ee/maintained-apps/outputs/dockside/darwin.jsonRepository: fleetdm/fleet
Length of output: 6521
🌐 Web query:
Dockside v2.9.10 release GitHub Dockside.dmg SHA256 checksum
💡 Result:
There is no official public release of Dockside v2.9.10, nor a corresponding SHA256 checksum available for a file by that name [1][2]. The Dockside macOS application (a utility for managing files near the Dock) is hosted on GitHub under the repository PrajwalSD/Dockside [1]. As of June 15, 2026, the official release history for this project indicates that the versioning has not reached 2.9.10 [1]. Previous documented versions include 2.8.5 [3] and 2.9.3 [2]. Please be aware that there are multiple projects named "Dockside." Another prominent project with this name is an open-source online IDE (newsnowlabs/dockside) [4][5], which is unrelated to the macOS utility app and uses a different versioning system [4]. To ensure you are downloading authentic software, only obtain installers from the official repository or the developer's website [1][3]. If you have encountered a file labeled as v2.9.10 from an unofficial or third-party site, it should be treated with caution, as it may not be authorized by the developer [2].
Citations:
- 1: https://github.com/PrajwalSD/Dockside
- 2: https://cmacked.com/app/dockside/
- 3: https://github.com/Homebrew/homebrew-cask/blob/91a1605c8ddba80743be09a9679607cad0282f88/Casks/d/dockside.rb
- 4: https://github.com/newsnowlabs/dockside
- 5: https://dockside.io/
Remove or replace installer_url and sha256 with valid Dockside v2.9.10 release information.
The referenced release version v2.9.10 does not exist in the official PrajwalSD/Dockside repository. Current documented versions are 2.8.5 and 2.9.3. This will cause installation failures in production. Verify the intended version and obtain the correct installer URL and checksum from the official GitHub repository.
Also applies to: 12-12
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@ee/maintained-apps/outputs/dockside/darwin.json` at line 9, The installer_url
and corresponding sha256 in the darwin.json file reference a non-existent
Dockside release version v2.9.10. Verify the correct intended version from the
official PrajwalSD/Dockside GitHub repository (current documented versions are
2.8.5 and 2.9.3), then update the installer_url field at line 9 to point to the
correct release download link and update the sha256 field at line 12 with the
accurate checksum for that verified release to prevent installation failures.
|
Closing in favor of #47586. |
Automated ingestion of latest Fleet-maintained app data.
Summary by CodeRabbit