Skip to content

Update Fleet-maintained apps - #45109

Closed
fleet-release wants to merge 1 commit into
mainfrom
fma-2605100017
Closed

Update Fleet-maintained apps#45109
fleet-release wants to merge 1 commit into
mainfrom
fma-2605100017

Conversation

@fleet-release

@fleet-release fleet-release commented May 10, 2026

Copy link
Copy Markdown
Contributor

Automated ingestion of latest Fleet-maintained app data.

Summary by CodeRabbit

  • Chores
    • Updated Draw.io Desktop to version 30.0.0 with new installer and verification checksum.

Review Change Stack

Generated automatically with cmd/maintained-apps.

@claude claude Bot left a comment

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.

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.

@coderabbitai

coderabbitai Bot commented May 10, 2026

Copy link
Copy Markdown
Contributor

Walkthrough

This PR updates the Draw.io Desktop maintained app metadata for macOS. The version was bumped from 29.7.9 to 30.0.0 in the configuration file ee/maintained-apps/outputs/drawio/darwin.json. The update includes changes to the version comparison logic in the patched field, the installer download URL pointing to the v30.0.0 DMG release, and the associated SHA256 checksum. The application detection query and installer/uninstaller script references remain unchanged.

🚥 Pre-merge checks | ✅ 3 | ❌ 2

❌ Failed checks (1 warning, 1 inconclusive)

Check name Status Explanation Resolution
Description check ⚠️ Warning The description is minimal and lacks required template sections such as related issue, testing details, and validation checks. Complete the pull request description by filling in the template, including related issue number, testing confirmation, and relevant validation checklist items.
Title check ❓ Inconclusive The title 'Update Fleet-maintained apps' is vague and does not specify what was actually updated; it does not convey the specific change (Draw.io Desktop version bump). Provide a more specific title that identifies the app and the type of update, such as 'Update Draw.io Desktop to v30.0.0' or 'Update Fleet-maintained apps metadata'.
✅ Passed checks (3 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

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

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fma-2605100017

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.

@coderabbitai coderabbitai Bot left a comment

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.

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/drawio/darwin.json`:
- Line 9: The installer_url currently points to the ARM64-specific asset
("draw.io-arm64-30.0.0.dmg"); update the value of the "installer_url" key in the
darwin.json entry to use the universal binary for v30.0.0 by replacing the ARM64
filename with draw.io-universal-30.0.0.dmg (i.e., set installer_url to
https://github.com/jgraph/drawio-desktop/releases/download/v30.0.0/draw.io-universal-30.0.0.dmg)
so the installer works on both Intel and Apple Silicon Macs.
🪄 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: b7c36e85-48c1-4d00-82f9-793d89235cb5

📥 Commits

Reviewing files that changed from the base of the PR and between 41549d9 and 84e1b69.

📒 Files selected for processing (1)
  • ee/maintained-apps/outputs/drawio/darwin.json

"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.jgraph.drawio.desktop' AND version_compare(bundle_short_version, '30.0.0') < 0);"
},
"installer_url": "https://github.com/jgraph/drawio-desktop/releases/download/v29.7.9/draw.io-arm64-29.7.9.dmg",
"installer_url": "https://github.com/jgraph/drawio-desktop/releases/download/v30.0.0/draw.io-arm64-30.0.0.dmg",

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 | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check if the v30.0.0 release exists and what assets are available

echo "=== Checking Draw.io v30.0.0 release ==="
gh api repos/jgraph/drawio-desktop/releases/tags/v30.0.0 --jq '.assets[] | select(.name | contains(".dmg")) | {name: .name, browser_download_url: .browser_download_url, size: .size}' 2>/dev/null || echo "Release not found or API error"

echo -e "\n=== Checking if ARM64 installer URL is accessible ==="
curl -I -L "https://github.com/jgraph/drawio-desktop/releases/download/v30.0.0/draw.io-arm64-30.0.0.dmg" 2>&1 | head -n 1

Repository: fleetdm/fleet

Length of output: 1306


Use the universal binary instead of ARM64-specific installer.

The v30.0.0 release provides a universal binary (draw.io-universal-30.0.0.dmg) that supports both Intel and Apple Silicon Macs. The current configuration points to the ARM64-specific build, which will fail on Intel Macs in your fleet.

Update the installer URL to:

https://github.com/jgraph/drawio-desktop/releases/download/v30.0.0/draw.io-universal-30.0.0.dmg
🤖 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/drawio/darwin.json` at line 9, The installer_url
currently points to the ARM64-specific asset ("draw.io-arm64-30.0.0.dmg");
update the value of the "installer_url" key in the darwin.json entry to use the
universal binary for v30.0.0 by replacing the ARM64 filename with
draw.io-universal-30.0.0.dmg (i.e., set installer_url to
https://github.com/jgraph/drawio-desktop/releases/download/v30.0.0/draw.io-universal-30.0.0.dmg)
so the installer works on both Intel and Apple Silicon Macs.

@github-actions

Copy link
Copy Markdown
Contributor

Closing in favor of #45111.

@github-actions github-actions Bot closed this May 10, 2026
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