Skip to content

Update Fleet-maintained apps - #49183

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

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

Conversation

@fleet-release

@fleet-release fleet-release commented Jul 12, 2026

Copy link
Copy Markdown
Contributor

Automated ingestion of latest Fleet-maintained app data.

Summary by CodeRabbit

  • Updates
    • Updated maintained app packages to their latest releases across macOS and Windows.
    • Refreshed version detection, download links, and integrity checks for Apidog, Claude, CMake, CodexBar, Cursor, DataGrip, Downie, Hive, Jitsi Meet, LinearMouse, Netron, Notepad, Ocenaudio, OneDrive, Unity Hub, Wireshark, Wispr Flow, and Zed.
    • Installation and removal behavior remains unchanged.

Generated automatically with cmd/maintained-apps.
@coderabbitai

coderabbitai Bot commented Jul 12, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Walkthrough

Updated 19 Fleet-maintained application metadata entries across Darwin and Windows outputs. Each update advances the application version, adjusts the patched-version detection query, and replaces the installer URL and SHA-256 checksum for the new artifact. Existing install and uninstall script references remain unchanged.

Possibly related PRs

  • fleetdm/fleet#48920: Bulk maintained-app metadata updates using the same version, patch query, installer URL, and checksum changes.
  • fleetdm/fleet#47555: Updates the Apidog maintained-app entry with the same metadata pattern.
  • fleetdm/fleet#49101: Updates the Claude Desktop maintained-app version and associated patch metadata.
🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Description check ⚠️ Warning The description is too brief and omits required template sections like related issue, checklist items, testing, and migration notes. Expand it to follow the template: add the related issue, complete applicable checklist items, and include testing plus any migration/config notes.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly matches the main change: automated updates to Fleet-maintained app data.
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.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fma-2607120018

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.

@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/hive-app/darwin.json`:
- Line 9: Update the darwin output configuration’s installer_url to use the
generic Hive-1.2.16.dmg asset instead of the arm64-specific
Hive-1.2.16-arm64.dmg, so Intel Macs are supported.
🪄 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: 8e2e584a-561d-4fca-a535-77d5b74c25c4

📥 Commits

Reviewing files that changed from the base of the PR and between 2299f02 and ad6bac5.

📒 Files selected for processing (19)
  • ee/maintained-apps/outputs/apidog/darwin.json
  • ee/maintained-apps/outputs/claude/darwin.json
  • ee/maintained-apps/outputs/cmake-app/windows.json
  • ee/maintained-apps/outputs/codexbar/darwin.json
  • ee/maintained-apps/outputs/cursor/windows.json
  • ee/maintained-apps/outputs/datagrip/darwin.json
  • ee/maintained-apps/outputs/datagrip/windows.json
  • ee/maintained-apps/outputs/downie/darwin.json
  • ee/maintained-apps/outputs/hive-app/darwin.json
  • ee/maintained-apps/outputs/jitsi-meet/darwin.json
  • ee/maintained-apps/outputs/linearmouse/darwin.json
  • ee/maintained-apps/outputs/netron/darwin.json
  • ee/maintained-apps/outputs/notepadexe/darwin.json
  • ee/maintained-apps/outputs/ocenaudio/windows.json
  • ee/maintained-apps/outputs/onedrive/windows.json
  • ee/maintained-apps/outputs/unity-hub/darwin.json
  • ee/maintained-apps/outputs/wireshark/windows.json
  • ee/maintained-apps/outputs/wispr-flow/darwin.json
  • ee/maintained-apps/outputs/zed/windows.json

"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.hive.app' AND version_compare(bundle_short_version, '1.2.16') < 0);"
},
"installer_url": "https://github.com/morapelker/hive/releases/download/v1.2.15/Hive-1.2.15-arm64.dmg",
"installer_url": "https://github.com/morapelker/hive/releases/download/v1.2.16/Hive-1.2.16-arm64.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.

🩺 Stability & Availability | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check if Hive provides a universal or x86_64 DMG alongside the arm64 one.
curl -sL "https://api.github.com/repos/morapelker/hive/releases/tags/v1.2.16" | \
  jq -r '.assets[].name' 2>/dev/null || echo "Unable to fetch release assets"

Repository: fleetdm/fleet

Length of output: 533


🏁 Script executed:

#!/bin/bash
set -euo pipefail

# Inspect the Hive maintained-app entry and related platform files.
git ls-files ee/maintained-apps/outputs/hive-app | sed -n '1,20p'

printf '\n--- darwin.json ---\n'
cat -n ee/maintained-apps/outputs/hive-app/darwin.json | sed -n '1,80p'

printf '\n--- other Hive outputs ---\n'
fd -a . ee/maintained-apps/outputs/hive-app 2>/dev/null || true

printf '\n--- release metadata ---\n'
curl -sL "https://api.github.com/repos/morapelker/hive/releases/tags/v1.2.16" | jq -r '.assets[] | [.name,.browser_download_url] | `@tsv`' | sed -n '1,40p'

Repository: fleetdm/fleet

Length of output: 8765


🏁 Script executed:

#!/bin/bash
set -euo pipefail

curl -sL "https://github.com/morapelker/hive/releases/download/v1.2.16/latest-mac.yml" | sed -n '1,120p'

Repository: fleetdm/fleet

Length of output: 947


Use the generic Hive DMG if Intel Macs are supported This pins Hive-1.2.16-arm64.dmg even though the release also ships Hive-1.2.16.dmg. If Intel Macs are in scope, switch this entry to the generic 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/hive-app/darwin.json` at line 9, Update the darwin
output configuration’s installer_url to use the generic Hive-1.2.16.dmg asset
instead of the arm64-specific Hive-1.2.16-arm64.dmg, so Intel Macs are
supported.

@github-actions

Copy link
Copy Markdown
Contributor

Closing in favor of #49184.

@github-actions github-actions Bot closed this Jul 12, 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