Update Fleet-maintained apps#48604
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.
WalkthroughThis PR updates version metadata in fourteen Fleet-maintained app output JSON files across macOS and Windows platforms, including aws-cli, chatwise, claude, dfu-blaster-pro, franz, github, google-gemini, opencode-desktop, signal, unity-hub, whatsapp, and zed. Each update bumps the Changes
Sequence Diagram(s)Not applicable — changes are static JSON metadata updates with no runtime code flow. Possibly related PRs
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✨ 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/google-gemini/darwin.json`:
- Around line 4-7: The maintained Gemini app entry is using an outdated patched
threshold, so update the `version` and the `patched` query in the Gemini MacOS
output to match the newer upstream build. Adjust the `queries.patched`
comparison so it no longer marks intermediate releases as current, and keep the
`exists` selector for `com.google.GeminiMacOS` aligned with the updated version
value.
🪄 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: 4f02798c-c45a-49e0-ad7e-bb904e381ec3
📒 Files selected for processing (14)
ee/maintained-apps/outputs/aws-cli/windows.jsonee/maintained-apps/outputs/chatwise/darwin.jsonee/maintained-apps/outputs/claude/darwin.jsonee/maintained-apps/outputs/dfu-blaster-pro/darwin.jsonee/maintained-apps/outputs/franz/darwin.jsonee/maintained-apps/outputs/github/darwin.jsonee/maintained-apps/outputs/google-gemini/darwin.jsonee/maintained-apps/outputs/opencode-desktop/darwin.jsonee/maintained-apps/outputs/signal/darwin.jsonee/maintained-apps/outputs/signal/windows.jsonee/maintained-apps/outputs/unity-hub/darwin.jsonee/maintained-apps/outputs/whatsapp/darwin.jsonee/maintained-apps/outputs/zed/darwin.jsonee/maintained-apps/outputs/zed/windows.json
| "version": "1.80.15.516", | ||
| "queries": { | ||
| "exists": "SELECT 1 FROM apps WHERE bundle_identifier = 'com.google.GeminiMacOS';", | ||
| "patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.google.GeminiMacOS' AND version_compare(bundle_short_version, '1.80.18.522') < 0);" | ||
| "patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.google.GeminiMacOS' AND version_compare(bundle_short_version, '1.80.15.516') < 0);" |
There was a problem hiding this comment.
🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win
🧩 Analysis chain
🌐 Web query:
Google Gemini for Mac app version 1.80.15.516 vs 1.80.18.522 release order
💡 Result:
Based on available technical reports and release documentation, version 1.80.15.516 precedes version 1.80.18.522 in the Google Gemini for Mac release order. Version 1.80.15.516 was released on June 30, 2026, to introduce the new Gemini Spark feature to the desktop application [1][2]. Subsequent discussions and user reports indicate that 1.80.18.522 is a later release [3].
Citations:
- 1: https://swikblog.com/gemini-spark-google-gemini-app-macos/
- 2: https://headlinesbriefing.com/mobi/9to5mac/gemini-spark-arrives-on-macos-automates-local-tasks-65e62feb
- 3: https://forums.macrumors.com/threads/google-gemini-spark-comes-to-mac-with-local-file-automation.2484836/page-2
🏁 Script executed:
#!/bin/bash
set -euo pipefail
printf '== file context ==\n'
sed -n '1,40p' ee/maintained-apps/outputs/google-gemini/darwin.json
printf '\n== related Gemini entries ==\n'
rg -n '"bundle_identifier": "com\.google\.GeminiMacOS"|\"version\": \"1\.80\.' ee/maintained-apps/outputs/google-gemini -n
printf '\n== nearby maintained-apps outputs with same bundle identifier ==\n'
rg -n 'com\.google\.GeminiMacOS' ee/maintained-apps/outputs -g '*.json'Repository: fleetdm/fleet
Length of output: 13669
Use the newer Gemini build here Version 1.80.15.516 is older than 1.80.18.522, so this patched threshold now treats intermediate builds as current. Update the entry to the latest upstream release, or document a deliberate rollback/channel change.
🤖 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/google-gemini/darwin.json` around lines 4 - 7, The
maintained Gemini app entry is using an outdated patched threshold, so update
the `version` and the `patched` query in the Gemini MacOS output to match the
newer upstream build. Adjust the `queries.patched` comparison so it no longer
marks intermediate releases as current, and keep the `exists` selector for
`com.google.GeminiMacOS` aligned with the updated version value.
|
Closing in favor of #48608. |
Automated ingestion of latest Fleet-maintained app data.
Summary by CodeRabbit
New Features
Bug Fixes