Update Fleet-maintained apps - #42984
Merged
Merged
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.
Contributor
Script Diff Resultsee/maintained-apps/outputs/bruno/darwin.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/cloudflare-warp/windows.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/filemaker-pro/darwin.json=== Install // 72d274ec -> 3354d9e3 ===
--- /tmp/old.gTroIB 2026-04-03 17:07:32.694270445 +0000
+++ /tmp/new.pTWnyx 2026-04-03 17:07:32.694270445 +0000
@@ -11,7 +11,9 @@
local timeout_duration=10
# check if the application is running
- if ! osascript -e "application id \"$bundle_id\" is running" 2>/dev/null; then
+ local app_running
+ app_running=$(osascript -e "application id \"$bundle_id\" is running" 2>/dev/null)
+ if [[ "$app_running" != "true" ]]; then
eval "export $var_name=0"
return
fi
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/logi-options+/darwin.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) === |
Add "frozen": true to several input descriptors and update maintained app outputs to match new installer versions and checksums. Changes: - ee/maintained-apps/inputs/homebrew/filemaker-pro.json: add frozen flag. - ee/maintained-apps/inputs/homebrew/logi-options+.json: add frozen flag and fix trailing comma on install_script_path. - ee/maintained-apps/inputs/winget/cloudflare-warp.json: add frozen flag. - ee/maintained-apps/outputs/cloudflare-warp/windows.json: update version, patched query, installer_url and sha256 to 26.1.150.0. - ee/maintained-apps/outputs/filemaker-pro/darwin.json: update version, patched query, installer_url, install_script_ref and sha256 to 22.0.5.500 and replace embedded install/uninstall script refs. - ee/maintained-apps/outputs/logi-options+/darwin.json: bump patched version check to 2.1.854977. Rationale: Pin/freeze these inputs to prevent automated modifications and align output metadata (versions, URLs, checksums, and script refs) with the intended installer artifacts.
Contributor
Script Diff Resultsee/maintained-apps/outputs/bruno/darwin.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/cloudflare-warp/windows.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/filemaker-pro/darwin.json=== Install // 3354d9e3 -> 72d274ec ===
--- /tmp/old.sPNCDJ 2026-04-03 18:19:31.764734480 +0000
+++ /tmp/new.Cb3ON4 2026-04-03 18:19:31.764734480 +0000
@@ -11,9 +11,7 @@
local timeout_duration=10
# check if the application is running
- local app_running
- app_running=$(osascript -e "application id \"$bundle_id\" is running" 2>/dev/null)
- if [[ "$app_running" != "true" ]]; then
+ if ! osascript -e "application id \"$bundle_id\" is running" 2>/dev/null; then
eval "export $var_name=0"
return
fi
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/logi-options+/darwin.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) === |
Contributor
|
Closing in favor of #42993. |
allenhouchins
approved these changes
Apr 3, 2026
1 task
allenhouchins
added a commit
that referenced
this pull request
Aug 1, 2026
Automated unfreeze probe. Removes `"frozen": true` and regenerates the output manifest so `test-fma-darwin-pr-only` can validate `logi-options+/darwin` at its current upstream version. Frozen since: 2026-04-03 (#42984, automated FMA update run) Version: 2.4.903778 -> 2.5.926888 Note: the regenerated manifest also picks up a newer `uninstall_script_ref`, because the frozen output missed the script-template updates that landed on main while it was pinned. Draft until validation reports. Merge only if the FMA checks are green and the validate shard actually ran for this slug. **Related issue:** NA # Checklist for submitter - [x] QA'd all new/changed functionality manually — pending CI validation, see above. --- _Generated by [Claude Code](https://claude.ai/code/session_01EBxhs5D65LRUwCEJejBLJH)_ Co-authored-by: allenhouchins <allen@fleetdm.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Automated ingestion of latest Fleet-maintained app data.