Update Fleet-maintained apps - #43828
Conversation
Generated automatically with cmd/maintained-apps.
There was a problem hiding this comment.
Claude Code Review
This repository is configured for manual code reviews. Comment @claude review to trigger a review and subscribe this PR to future pushes, or @claude review once for a one-time review.
Tip: disable this comment in your organization's Code Review settings.
Script Diff Resultsee/maintained-apps/outputs/box-drive/darwin.json=== Install // c5b7498b -> 3947e5ef ===
--- /tmp/old.1x1RKx 2026-04-21 01:59:54.223103960 +0000
+++ /tmp/new.qlxUNY 2026-04-21 01:59:54.223103960 +0000
@@ -83,5 +83,5 @@
# install pkg files
quit_and_track_application 'com.box.desktop'
-sudo installer -pkg "$TMPDIR/BoxDrive-2.51.230.pkg" -target /
+sudo installer -pkg "$TMPDIR/BoxDrive-2.51.233.pkg" -target /
relaunch_application 'com.box.desktop'
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/charles/darwin.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/docker/windows.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/iterm2/darwin.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) === |
WalkthroughThis pull request updates the maintained-app metadata for four applications across macOS and Windows platforms. Box Drive macOS was updated from version 2.51.230 to 2.51.233, Charles macOS from 5.0.3 to 5.1, Docker Desktop Windows from 4.68.0 to 4.70.0, and iTerm2 macOS from 3.6.9 to 3.6.10. For each update, the corresponding version thresholds in patched queries, installer URLs, and SHA256 checksums were modified to reflect the new versions. Possibly related PRs
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 inconclusive)
✅ Passed checks (2 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 the current code and only fix it if needed.
Inline comments:
In `@ee/maintained-apps/outputs/charles/darwin.json`:
- Line 12: The JSON entry currently lists "version": "5.1" and a "sha256" of
"0530733bca4548657d8b1726433f9bb5a0e699de26c75d91e04831e9c8948db1" — confirm
whether version 5.1 actually exists and that the "url" field points to the
intended Charles Proxy installer; download the referenced installer from that
URL, compute its SHA256 (e.g., shasum -a 256) and replace the "sha256" value
with the correct digest, and if the official latest release is actually 5.0.3
update the "version" field accordingly and ensure the "url" matches the 5.0.3
installer before committing.
🪄 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: 1527c9ba-c883-4df9-b257-f175b6dd5145
📒 Files selected for processing (4)
ee/maintained-apps/outputs/box-drive/darwin.jsonee/maintained-apps/outputs/charles/darwin.jsonee/maintained-apps/outputs/docker/windows.jsonee/maintained-apps/outputs/iterm2/darwin.json
| "install_script_ref": "85242c75", | ||
| "uninstall_script_ref": "475484cb", | ||
| "sha256": "2dc3535b295ff5b3214d474fb310c2a3fd42433f11d145a5d069c88de1b0dbe0", | ||
| "sha256": "0530733bca4548657d8b1726433f9bb5a0e699de26c75d91e04831e9c8948db1", |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Description: Download and verify SHA256 checksum of Charles 5.1 installer
installer_url="https://www.charlesproxy.com/assets/release/5.1/charles-proxy-5.1.dmg"
expected_sha256="0530733bca4548657d8b1726433f9bb5a0e699de26c75d91e04831e9c8948db1"
# Download the file and compute SHA256
echo "Downloading installer to verify checksum..."
actual_sha256=$(curl -sL "$installer_url" | shasum -a 256 | awk '{print $1}')
echo "Expected SHA256: $expected_sha256"
echo "Actual SHA256: $actual_sha256"
if [ "$expected_sha256" = "$actual_sha256" ]; then
echo "✓ SHA256 checksum matches"
exit 0
else
echo "✗ SHA256 checksum mismatch!"
exit 1
fiRepository: fleetdm/fleet
Length of output: 290
🌐 Web query:
What is the latest version of Charles Proxy for macOS?
💡 Result:
The latest version of Charles Proxy for macOS is 5.0.3.
Citations:
- 1: https://www.charlesproxy.com/download/latest-release/
- 2: https://www.charlesproxy.com/latest-release/
- 3: https://www.charlesproxy.com/download/
- 4: https://www.charlesproxy.com/
- 5: https://www.charlesproxy.com/documentation/version-history/
Verify the version and SHA256 checksum for Charles Proxy installer.
The SHA256 checksum is critical for security, but version 5.1 is not the latest available version. According to official Charles Proxy sources, the latest version is 5.0.3. Confirm whether version 5.1 exists, whether the installer URL is correct, and ensure the provided checksum matches the actual file to prevent installation of tampered or incorrect files.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@ee/maintained-apps/outputs/charles/darwin.json` at line 12, The JSON entry
currently lists "version": "5.1" and a "sha256" of
"0530733bca4548657d8b1726433f9bb5a0e699de26c75d91e04831e9c8948db1" — confirm
whether version 5.1 actually exists and that the "url" field points to the
intended Charles Proxy installer; download the referenced installer from that
URL, compute its SHA256 (e.g., shasum -a 256) and replace the "sha256" value
with the correct digest, and if the official latest release is actually 5.0.3
update the "version" field accordingly and ensure the "url" matches the 5.0.3
installer before committing.
Automated ingestion of latest Fleet-maintained app data.
Summary by CodeRabbit