Skip to content

Update Fleet-maintained apps - #45964

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

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

Conversation

@fleet-release

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

Copy link
Copy Markdown
Contributor

Automated ingestion of latest Fleet-maintained app data.

Summary by CodeRabbit

  • Chores
    • Updated version metadata and installation checksums for 14+ macOS applications: 1Password, Beyond Compare, Bitwarden, Brave Browser, Bruno, Cursor, Granola, iMazing, Notion, Postman, Santa, Signal, and Zed.
    • Updated Windows Postman version metadata.
    • Improved uninstall procedures for Mattermost and WhatsApp to gracefully close applications before removal.

Review Change Stack

Generated automatically with cmd/maintained-apps.

@claude claude Bot left a comment

Copy link
Copy Markdown

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.

@github-actions

Copy link
Copy Markdown
Contributor

Script Diff Results

ee/maintained-apps/outputs/1password/darwin.json

=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===

ee/maintained-apps/outputs/beyond-compare/darwin.json

=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===

ee/maintained-apps/outputs/bitwarden/darwin.json

=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===

ee/maintained-apps/outputs/brave-browser/darwin.json

=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===

ee/maintained-apps/outputs/bruno/darwin.json

=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===

ee/maintained-apps/outputs/cursor/darwin.json

=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===

ee/maintained-apps/outputs/granola/darwin.json

=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===

ee/maintained-apps/outputs/imazing/darwin.json

=== Install Script (no changes) ===
=== Uninstall // d16e6a18 -> 44599eff ===

--- /tmp/old.7vhGE4	2026-05-21 09:05:48.819320118 +0000
+++ /tmp/new.8oaJum	2026-05-21 09:05:48.819320118 +0000
@@ -67,8 +67,8 @@
   fi
 }
 
-quit_application 'com.DigiDNA.iMazing3.5.2.24017Mac'
-quit_application 'com.DigiDNA.iMazing3.5.2.24017Mac.Mini'
+quit_application 'com.DigiDNA.iMazing3.5.3.24045Mac'
+quit_application 'com.DigiDNA.iMazing3.5.3.24045Mac.Mini'
 sudo rm -rf "$APPDIR/iMazing.app"
 trash $LOGGED_IN_USER '/Users/Shared/iMazing Mini'
 trash $LOGGED_IN_USER '/Users/Shared/iMazing'

ee/maintained-apps/outputs/mattermost/darwin.json

=== Install Script (no changes) ===
=== Uninstall // cb17ddbd -> cabd2233 ===

--- /tmp/old.xvJt3y	2026-05-21 09:05:48.880321467 +0000
+++ /tmp/new.Rhrigi	2026-05-21 09:05:48.880321467 +0000
@@ -5,6 +5,46 @@
 LOGGED_IN_USER=$(scutil <<< "show State:/Users/ConsoleUser" | awk '/Name :/ { print $3 }')
 # functions
 
+quit_application() {
+  local bundle_id="$1"
+  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
+    return
+  fi
+
+  local console_user
+  console_user=$(stat -f "%Su" /dev/console)
+  if [[ -z "$console_user" || "$console_user" == "root" || "$console_user" == "loginwindow" ]]; then
+    echo "Not logged into a non-root GUI; skipping quitting application ID '$bundle_id'."
+    return
+  fi
+
+  echo "Quitting application '$bundle_id'..."
+
+  # try to quit the application within the timeout period
+  local quit_success=false
+  SECONDS=0
+  while (( SECONDS < timeout_duration )); do
+    if osascript -e "tell application id \"$bundle_id\" to quit" >/dev/null 2>&1; then
+      if ! pgrep -f "$bundle_id" >/dev/null 2>&1; then
+        echo "Application '$bundle_id' quit successfully."
+        quit_success=true
+        break
+      fi
+    fi
+    sleep 1
+  done
+
+  if [[ "$quit_success" = false ]]; then
+    echo "Application '$bundle_id' did not quit."
+  fi
+}
+
+
 trash() {
   local logged_in_user="$1"
   local target_file="$2"
@@ -27,6 +67,7 @@
   fi
 }
 
+quit_application 'Mattermost.Desktop'
 sudo rm -rf "$APPDIR/Mattermost.app"
 trash $LOGGED_IN_USER '~/Library/Application Support/Mattermost'
 trash $LOGGED_IN_USER '~/Library/Containers/Mattermost.Desktop'

ee/maintained-apps/outputs/notion/darwin.json

=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===

ee/maintained-apps/outputs/postman/darwin.json

=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===

ee/maintained-apps/outputs/postman/windows.json

=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===

ee/maintained-apps/outputs/santa/darwin.json

=== Install // 7d1fb427 -> c224d0ec ===

--- /tmp/old.LH7hVb	2026-05-21 09:05:49.026324695 +0000
+++ /tmp/new.tGbTvm	2026-05-21 09:05:49.026324695 +0000
@@ -101,5 +101,5 @@
 hdiutil detach "$MOUNT_POINT"
 # install pkg files
 quit_and_track_application 'com.northpolesec.santa'
-sudo installer -pkg "$TMPDIR/santa-2026.3.pkg" -target /
+sudo installer -pkg "$TMPDIR/santa-2026.4.pkg" -target /
 relaunch_application 'com.northpolesec.santa'

=== Uninstall Script (no changes) ===

ee/maintained-apps/outputs/signal/darwin.json

=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===

ee/maintained-apps/outputs/whatsapp/darwin.json

=== Install Script (no changes) ===
=== Uninstall // 2dfbb01c -> 20a28a5e ===

--- /tmp/old.psLlW4	2026-05-21 09:05:49.106326464 +0000
+++ /tmp/new.ziC7IH	2026-05-21 09:05:49.106326464 +0000
@@ -5,6 +5,46 @@
 LOGGED_IN_USER=$(scutil <<< "show State:/Users/ConsoleUser" | awk '/Name :/ { print $3 }')
 # functions
 
+quit_application() {
+  local bundle_id="$1"
+  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
+    return
+  fi
+
+  local console_user
+  console_user=$(stat -f "%Su" /dev/console)
+  if [[ -z "$console_user" || "$console_user" == "root" || "$console_user" == "loginwindow" ]]; then
+    echo "Not logged into a non-root GUI; skipping quitting application ID '$bundle_id'."
+    return
+  fi
+
+  echo "Quitting application '$bundle_id'..."
+
+  # try to quit the application within the timeout period
+  local quit_success=false
+  SECONDS=0
+  while (( SECONDS < timeout_duration )); do
+    if osascript -e "tell application id \"$bundle_id\" to quit" >/dev/null 2>&1; then
+      if ! pgrep -f "$bundle_id" >/dev/null 2>&1; then
+        echo "Application '$bundle_id' quit successfully."
+        quit_success=true
+        break
+      fi
+    fi
+    sleep 1
+  done
+
+  if [[ "$quit_success" = false ]]; then
+    echo "Application '$bundle_id' did not quit."
+  fi
+}
+
+
 trash() {
   local logged_in_user="$1"
   local target_file="$2"
@@ -27,6 +67,7 @@
   fi
 }
 
+quit_application 'net.whatsapp.WhatsApp'
 sudo rm -rf "$APPDIR/WhatsApp.app"
 trash $LOGGED_IN_USER '~/Library/Application Scripts/net.whatsapp.WhatsApp*'
 trash $LOGGED_IN_USER '~/Library/Caches/net.whatsapp.WhatsApp'

ee/maintained-apps/outputs/zed/darwin.json

=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===

@coderabbitai

coderabbitai Bot commented May 21, 2026

Copy link
Copy Markdown
Contributor

Walkthrough

This PR updates version metadata for 16 Fleet-maintained macOS and Windows applications. Most changes follow a consistent pattern: bumping the app version, updating the SQL version_compare threshold to match the new version, changing the installer URL and SHA256 checksum. Four applications—iMazing, Mattermost, WhatsApp, and Santa—also include script updates, primarily adding graceful application-quit logic to uninstall procedures before bundle removal.

Possibly related PRs

  • fleetdm/fleet#45334: Part of the same "Fleet-maintained apps" data refresh and modifies the same maintained-app JSON fields (version, queries.patched thresholds, installer_url, sha256) for overlapping apps like Notion, Signal, Granola, and Zed.
  • fleetdm/fleet#45954: Bumps the 1Password maintained-app definition from 8.12.12 → 8.12.21, updating the corresponding version_compare SQL and installer metadata.
  • fleetdm/fleet#45447: Updates the same Brave Browser maintained-app manifest, bumping version and syncing queries.patched, installer_url, and sha256.
🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 inconclusive)

Check name Status Explanation Resolution
Description check ❓ Inconclusive The description is minimal and lacks required sections from the template (checklist items, testing, security validation), though it does indicate this is an automated data ingestion with a clear purpose. Clarify whether this automated PR requires the full checklist or if abbreviated documentation is acceptable for automated version updates. Add context about validation performed.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title 'Update Fleet-maintained apps' accurately summarizes the main change: updating multiple maintained application configurations across multiple platforms with new versions and metadata.
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-2605210901

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.

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
ee/maintained-apps/outputs/1password/darwin.json (1)

12-12: ⚠️ Potential issue | 🟠 Major | ⚡ Quick win

SHA256 bypass is a security risk.

The "sha256": "no_check" value disables installer integrity verification, allowing any file to be installed without cryptographic validation. If the CDN is compromised or a man-in-the-middle attack occurs, a malicious package could be installed.

Consider obtaining the official SHA256 checksum from 1Password's release notes or download page and replacing "no_check" with the actual checksum.

🤖 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/1password/darwin.json` at line 12, Replace the
insecure `"sha256": "no_check"` entry in the 1Password darwin output JSON by
fetching the official SHA256 checksum from 1Password's release/download page or
release notes and updating the `"sha256"` field with that hex checksum (ensure
it's a 64-character lowercase hex string); update the darwin.json `"sha256"`
property where it currently equals "no_check" so the installer integrity is
verified at install time.
🤖 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.

Outside diff comments:
In `@ee/maintained-apps/outputs/1password/darwin.json`:
- Line 12: Replace the insecure `"sha256": "no_check"` entry in the 1Password
darwin output JSON by fetching the official SHA256 checksum from 1Password's
release/download page or release notes and updating the `"sha256"` field with
that hex checksum (ensure it's a 64-character lowercase hex string); update the
darwin.json `"sha256"` property where it currently equals "no_check" so the
installer integrity is verified at install time.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: f365035f-5345-4680-bf72-9d502074efa5

📥 Commits

Reviewing files that changed from the base of the PR and between 68f6a5b and 6f3f084.

📒 Files selected for processing (16)
  • ee/maintained-apps/outputs/1password/darwin.json
  • ee/maintained-apps/outputs/beyond-compare/darwin.json
  • ee/maintained-apps/outputs/bitwarden/darwin.json
  • ee/maintained-apps/outputs/brave-browser/darwin.json
  • ee/maintained-apps/outputs/bruno/darwin.json
  • ee/maintained-apps/outputs/cursor/darwin.json
  • ee/maintained-apps/outputs/granola/darwin.json
  • ee/maintained-apps/outputs/imazing/darwin.json
  • ee/maintained-apps/outputs/mattermost/darwin.json
  • ee/maintained-apps/outputs/notion/darwin.json
  • ee/maintained-apps/outputs/postman/darwin.json
  • ee/maintained-apps/outputs/postman/windows.json
  • ee/maintained-apps/outputs/santa/darwin.json
  • ee/maintained-apps/outputs/signal/darwin.json
  • ee/maintained-apps/outputs/whatsapp/darwin.json
  • ee/maintained-apps/outputs/zed/darwin.json

@qodo-free-for-open-source-projects

Copy link
Copy Markdown

CI Feedback 🧐

A test triggered by this PR failed. Here is an AI-generated analysis of the failure:

Action: test-fma-pr-only

Failed stage: Filter apps.json and verify changed apps [❌]

Failed test name: ""

Failure summary:

The action failed during a macOS application validation/install step because the 1Password
(1password/darwin) installer script exited non-zero.
- At log lines 4518-4522, the workflow
attempted to download and run the install script for 1Password, but installer reported: “The install
failed ... An error occurred while running scripts from the package 1Password.pkg”, and the script
returned exit status 1.
- The validator completed with Apps with errors: [1Password] (lines
4750-4752) and then exited with exit status 1 (line 4752), causing the job to fail (Process
completed with exit code 1, line 4753).

Relevant error logs:
1:  ##[group]Runner Image Provisioner
2:  Hosted Compute Agent
...

132:  * [new branch]            11938-loadtesting-branch    -> origin/11938-loadtesting-branch
133:  * [new branch]            12007-ui-idp-metadata       -> origin/12007-ui-idp-metadata
134:  * [new branch]            12351-try-fix-for-fleet-desktop -> origin/12351-try-fix-for-fleet-desktop
135:  * [new branch]            12356-puppet-callback       -> origin/12356-puppet-callback
136:  * [new branch]            12375-query-bulk-action     -> origin/12375-query-bulk-action
137:  * [new branch]            12474-documentation         -> origin/12474-documentation
138:  * [new branch]            12614-federated-auth-support -> origin/12614-federated-auth-support
139:  * [new branch]            12687-host-issues-query     -> origin/12687-host-issues-query
140:  * [new branch]            12696-loadtest-cis-changes  -> origin/12696-loadtest-cis-changes
141:  * [new branch]            12842-fleetd-bitlocker-management -> origin/12842-fleetd-bitlocker-management
142:  * [new branch]            12842-fleetd-bitlocker-table -> origin/12842-fleetd-bitlocker-table
143:  * [new branch]            12889-faster-software       -> origin/12889-faster-software
144:  * [new branch]            13287-loadtest-changes      -> origin/13287-loadtest-changes
145:  * [new branch]            13288-poc-fleet-fips        -> origin/13288-poc-fleet-fips
146:  * [new branch]            13485-query-reports-migration -> origin/13485-query-reports-migration
147:  * [new branch]            13574-cache-failed-policy-counts -> origin/13574-cache-failed-policy-counts
148:  * [new branch]            13657-docs                  -> origin/13657-docs
...

160:  * [new branch]            146orch                     -> origin/146orch
161:  * [new branch]            14753-windows-ps1-api       -> origin/14753-windows-ps1-api
162:  * [new branch]            14957-test-dep-screen       -> origin/14957-test-dep-screen
163:  * [new branch]            14957-test-dep-screen-patch -> origin/14957-test-dep-screen-patch
164:  * [new branch]            15068-disk-encryption-ii    -> origin/15068-disk-encryption-ii
165:  * [new branch]            15082-download-api-docs     -> origin/15082-download-api-docs
166:  * [new branch]            15082-make-endpoints-consistent -> origin/15082-make-endpoints-consistent
167:  * [new branch]            15082-update-download-endpoints -> origin/15082-update-download-endpoints
168:  * [new branch]            15380-hosts-api-doc         -> origin/15380-hosts-api-doc
169:  * [new branch]            15461-ui-dep-assign-profile-responses -> origin/15461-ui-dep-assign-profile-responses
170:  * [new branch]            15463-msi-fix               -> origin/15463-msi-fix
171:  * [new branch]            15559-move-scep             -> origin/15559-move-scep
172:  * [new branch]            15633                       -> origin/15633
173:  * [new branch]            15770-mac-os-vuln           -> origin/15770-mac-os-vuln
174:  * [new branch]            15801-migration             -> origin/15801-migration
175:  * [new branch]            15912-password-reset-error-code -> origin/15912-password-reset-error-code
176:  * [new branch]            16182-log-root              -> origin/16182-log-root
...

601:  * [new branch]            7765-frontend               -> origin/7765-frontend
602:  * [new branch]            7766-backend-final-main-merge -> origin/7766-backend-final-main-merge
603:  * [new branch]            7766-backend-test           -> origin/7766-backend-test
604:  * [new branch]            7766-frontend               -> origin/7766-frontend
605:  * [new branch]            7993-figure-out-the-limits-of-our-current-search-approach -> origin/7993-figure-out-the-limits-of-our-current-search-approach
606:  * [new branch]            8021-orbit-use-specified-identifier -> origin/8021-orbit-use-specified-identifier
607:  * [new branch]            8186-vulnerable-software-false-positive-docker -> origin/8186-vulnerable-software-false-positive-docker
608:  * [new branch]            8593-gitops                 -> origin/8593-gitops
609:  * [new branch]            8708-docs                   -> origin/8708-docs
610:  * [new branch]            8708-encryption-key-api     -> origin/8708-encryption-key-api
611:  * [new branch]            8708-ingest-file-vault      -> origin/8708-ingest-file-vault
612:  * [new branch]            8708-ingest-macos-encription-key -> origin/8708-ingest-macos-encription-key
613:  * [new branch]            8708-ingest-macos-encription-key-ii -> origin/8708-ingest-macos-encription-key-ii
614:  * [new branch]            8974-native-smbios-uuid-support -> origin/8974-native-smbios-uuid-support
615:  * [new branch]            9260-cis-checks-5.10.x      -> origin/9260-cis-checks-5.10.x
616:  * [new branch]            9394-failed-to-create-device-auth-token-due-to-duplicate-key-errors -> origin/9394-failed-to-create-device-auth-token-due-to-duplicate-key-errors
617:  * [new branch]            9590-schema                 -> origin/9590-schema
...

840:  * [new branch]            allenhouchins-update-default-scripting -> origin/allenhouchins-update-default-scripting
841:  * [new branch]            allenhouchins-update-dmg-install-script -> origin/allenhouchins-update-dmg-install-script
842:  * [new branch]            allenhouchins-update-patch-policy-generation -> origin/allenhouchins-update-patch-policy-generation
843:  * [new branch]            allenhouchins-warp          -> origin/allenhouchins-warp
844:  * [new branch]            allenhouchins-windows-net-runtime-6 -> origin/allenhouchins-windows-net-runtime-6
845:  * [new branch]            allenhouchins-zoom-fma      -> origin/allenhouchins-zoom-fma
846:  * [new branch]            allenhouchins-zoom-logo-mac -> origin/allenhouchins-zoom-logo-mac
847:  * [new branch]            allenhouchins-zoom-policy-fix -> origin/allenhouchins-zoom-policy-fix
848:  * [new branch]            allenhouchins/fix-security-review-must-fixes -> origin/allenhouchins/fix-security-review-must-fixes
849:  * [new branch]            always-create-event-next-thu -> origin/always-create-event-next-thu
850:  * [new branch]            and_osq_proj                -> origin/and_osq_proj
851:  * [new branch]            andrey/loadtest-oval-vulns  -> origin/andrey/loadtest-oval-vulns
852:  * [new branch]            android-app-install-activity -> origin/android-app-install-activity
853:  * [new branch]            android-cofniguration-profiles-research -> origin/android-cofniguration-profiles-research
854:  * [new branch]            android-enroll-note         -> origin/android-enroll-note
855:  * [new branch]            android-enrollment-error    -> origin/android-enrollment-error
856:  * [new branch]            android-manual-enrollment-button -> origin/android-manual-enrollment-button
...

904:  * [new branch]            await-configuration-docs    -> origin/await-configuration-docs
905:  * [new branch]            aws-licensing-integration-proposal -> origin/aws-licensing-integration-proposal
906:  * [new branch]            backport-a41fb63            -> origin/backport-a41fb63
907:  * [new branch]            backport-c02af              -> origin/backport-c02af
908:  * [new branch]            backport-e65d6cf            -> origin/backport-e65d6cf
909:  * [new branch]            backport-ef07a406cc8dbccb4914bbd27631df74e5b13b49 -> origin/backport-ef07a406cc8dbccb4914bbd27631df74e5b13b49
910:  * [new branch]            backport-vpp-fix            -> origin/backport-vpp-fix
911:  * [new branch]            base-software-titles-loadtest -> origin/base-software-titles-loadtest
912:  * [new branch]            base-software-titles-loadtest-2 -> origin/base-software-titles-loadtest-2
913:  * [new branch]            beekeeper-fma-initial       -> origin/beekeeper-fma-initial
914:  * [new branch]            bettapizza                  -> origin/bettapizza
915:  * [new branch]            bettapizza--ghost-testimonial-update -> origin/bettapizza--ghost-testimonial-update
916:  * [new branch]            bettapizza-patch-1          -> origin/bettapizza-patch-1
917:  * [new branch]            bettapizza-patch-2          -> origin/bettapizza-patch-2
918:  * [new branch]            bettapizza-patch-3          -> origin/bettapizza-patch-3
919:  * [new branch]            better-byod-error           -> origin/better-byod-error
920:  * [new branch]            bounded-context-proposals   -> origin/bounded-context-proposals
...

949:  * [new branch]            cherry-pick-41914-to-rc-v4.83.0 -> origin/cherry-pick-41914-to-rc-v4.83.0
950:  * [new branch]            cherry-pick-42773-vitals-constants -> origin/cherry-pick-42773-vitals-constants
951:  * [new branch]            cherry-pick-8750-into-rc-minor-fleet-v4.60.0 -> origin/cherry-pick-8750-into-rc-minor-fleet-v4.60.0
952:  * [new branch]            cherry-pick-dogfood-change  -> origin/cherry-pick-dogfood-change
953:  * [new branch]            cherry-pick-dogfood-env-vars -> origin/cherry-pick-dogfood-env-vars
954:  * [new branch]            cherry-pick-fleetctl-changes-to-allow-testing -> origin/cherry-pick-fleetctl-changes-to-allow-testing
955:  * [new branch]            cherry-pick-mac-address-vital -> origin/cherry-pick-mac-address-vital
956:  * [new branch]            cherry-pick-patches         -> origin/cherry-pick-patches
957:  * [new branch]            cherry-pick-remove-overrides-in-dev-mode -> origin/cherry-pick-remove-overrides-in-dev-mode
958:  * [new branch]            cherry-pick-util            -> origin/cherry-pick-util
959:  * [new branch]            cherry-pick-webhooks        -> origin/cherry-pick-webhooks
960:  * [new branch]            cherrypick-v4.85.0-version-bump-into-main -> origin/cherrypick-v4.85.0-version-bump-into-main
961:  * [new branch]            chore-UI-update-for-CSP     -> origin/chore-UI-update-for-CSP
962:  * [new branch]            chore-add-specific-yarn-version -> origin/chore-add-specific-yarn-version
963:  * [new branch]            chore-backend-api-patterns  -> origin/chore-backend-api-patterns
964:  * [new branch]            chore-change-error-message-custom-profile -> origin/chore-change-error-message-custom-profile
965:  * [new branch]            chore-cp-chage-status-code-turn-off-mdm -> origin/chore-cp-chage-status-code-turn-off-mdm
...

1003:  * [new branch]            claude/optimize-reconciler-queries-edCDn -> origin/claude/optimize-reconciler-queries-edCDn
1004:  * [new branch]            claude/recursing-sutherland -> origin/claude/recursing-sutherland
1005:  * [new branch]            claude/serene-borg          -> origin/claude/serene-borg
1006:  * [new branch]            claude/slack-add-fma-foxit-pdf-9UpRv -> origin/claude/slack-add-fma-foxit-pdf-9UpRv
1007:  * [new branch]            claude/slack-session-Yw6M0  -> origin/claude/slack-session-Yw6M0
1008:  * [new branch]            claude/sub-pr-42006         -> origin/claude/sub-pr-42006
1009:  * [new branch]            claude/update-mock-fixtures-for-ipolicy -> origin/claude/update-mock-fixtures-for-ipolicy
1010:  * [new branch]            claude/update-mock-fixtures-policy-interface -> origin/claude/update-mock-fixtures-policy-interface
1011:  * [new branch]            cli-update-fleetd-naming    -> origin/cli-update-fleetd-naming
1012:  * [new branch]            clone-423                   -> origin/clone-423
1013:  * [new branch]            codeowner-test              -> origin/codeowner-test
1014:  * [new branch]            codeql-icon-fe-fix          -> origin/codeql-icon-fe-fix
1015:  * [new branch]            coderabbit-skip-paths       -> origin/coderabbit-skip-paths
1016:  * [new branch]            collect-abm-apns-expiration-usage-statistics -> origin/collect-abm-apns-expiration-usage-statistics
1017:  * [new branch]            conf-2644-branch-from-main  -> origin/conf-2644-branch-from-main
1018:  * [new branch]            consistent-error            -> origin/consistent-error
1019:  * [new branch]            consistent-rest-api-language-part-ii -> origin/consistent-rest-api-language-part-ii
...

1147:  * [new branch]            edwardsb-vuln-processing-fix-sandcastle -> origin/edwardsb-vuln-processing-fix-sandcastle
1148:  * [new branch]            edwardsb-vuln-processing-volume-fix -> origin/edwardsb-vuln-processing-volume-fix
1149:  * [new branch]            edwardsb/deployment-guide-updates -> origin/edwardsb/deployment-guide-updates
1150:  * [new branch]            edwardsb/restrict_console_access -> origin/edwardsb/restrict_console_access
1151:  * [new branch]            elastic_rum                 -> origin/elastic_rum
1152:  * [new branch]            enable-jit-by-default       -> origin/enable-jit-by-default
1153:  * [new branch]            enable-test-go-automation-macos -> origin/enable-test-go-automation-macos
1154:  * [new branch]            enforce-firefox-doh         -> origin/enforce-firefox-doh
1155:  * [new branch]            enforce-firefox-windows     -> origin/enforce-firefox-windows
1156:  * [new branch]            enforce-ios-26.5-update-deadline-july-2026 -> origin/enforce-ios-26.5-update-deadline-july-2026
1157:  * [new branch]            enforce-iso27001-workstations -> origin/enforce-iso27001-workstations
1158:  * [new branch]            enforce-macos-15.5-update-deadline -> origin/enforce-macos-15.5-update-deadline
1159:  * [new branch]            enforce-macos-version-workstations -> origin/enforce-macos-version-workstations
1160:  * [new branch]            enroll-android-feature-guide -> origin/enroll-android-feature-guide
1161:  * [new branch]            ericswenson0-patch-1        -> origin/ericswenson0-patch-1
1162:  * [new branch]            error-counts                -> origin/error-counts
1163:  * [new branch]            errors-perf-testing         -> origin/errors-perf-testing
1164:  * [new branch]            es-reports                  -> origin/es-reports
...

1179:  * [new branch]            eugkuo-patch-5              -> origin/eugkuo-patch-5
1180:  * [new branch]            eugkuo-patch-6-slugs-FMA    -> origin/eugkuo-patch-6-slugs-FMA
1181:  * [new branch]            example-fleetctl-profiles   -> origin/example-fleetctl-profiles
1182:  * [new branch]            exp-mdbook-docs             -> origin/exp-mdbook-docs
1183:  * [new branch]            experiment-disable-some-deletes -> origin/experiment-disable-some-deletes
1184:  * [new branch]            experiment-hardcode-counters-to-zero -> origin/experiment-hardcode-counters-to-zero
1185:  * [new branch]            experiment-no-txs           -> origin/experiment-no-txs
1186:  * [new branch]            experiment-status-tooltip   -> origin/experiment-status-tooltip
1187:  * [new branch]            experiment-with-two-branches -> origin/experiment-with-two-branches
1188:  * [new branch]            experimental_moveitem       -> origin/experimental_moveitem
1189:  * [new branch]            experimient-no-counts       -> origin/experimient-no-counts
1190:  * [new branch]            expiredcertstool            -> origin/expiredcertstool
1191:  * [new branch]            extra-dep-logs              -> origin/extra-dep-logs
1192:  * [new branch]            f84ee4c5f4                  -> origin/f84ee4c5f4
1193:  * [new branch]            faf-doc-clarification       -> origin/faf-doc-clarification
1194:  * [new branch]            failing-test                -> origin/failing-test
1195:  * [new branch]            faster-ci-checks            -> origin/faster-ci-checks
...

1234:  * [new branch]            feature-hydrant-ca          -> origin/feature-hydrant-ca
1235:  * [new branch]            feature-idp-byod            -> origin/feature-idp-byod
1236:  * [new branch]            feature-orbit-find          -> origin/feature-orbit-find
1237:  * [new branch]            feature-prioritization      -> origin/feature-prioritization
1238:  * [new branch]            feature-v4.44.1-live-queries -> origin/feature-v4.44.1-live-queries
1239:  * [new branch]            feature-windows-mdm-policy-extraction -> origin/feature-windows-mdm-policy-extraction
1240:  * [new branch]            feature/add-blank-to-osquer-link -> origin/feature/add-blank-to-osquer-link
1241:  * [new branch]            feature_14722-activity-feed-webhooks -> origin/feature_14722-activity-feed-webhooks
1242:  * [new branch]            feature_18115-crit-vuln-issues -> origin/feature_18115-crit-vuln-issues
1243:  * [new branch]            feature_19010-ipad-ios-lock-wipe-backend-changes -> origin/feature_19010-ipad-ios-lock-wipe-backend-changes
1244:  * [new branch]            feature_22078               -> origin/feature_22078
1245:  * [new branch]            finding-autofix-18be21b8    -> origin/finding-autofix-18be21b8
1246:  * [new branch]            fix                         -> origin/fix
1247:  * [new branch]            fix-35118-cis-win10-v4      -> origin/fix-35118-cis-win10-v4
1248:  * [new branch]            fix-4.84.4-k8s              -> origin/fix-4.84.4-k8s
1249:  * [new branch]            fix-40083-failed-install-retries -> origin/fix-40083-failed-install-retries
1250:  * [new branch]            fix-41290-vpp-added-status  -> origin/fix-41290-vpp-added-status
1251:  * [new branch]            fix-41337-save-env-secrets-dry-run -> origin/fix-41337-save-env-secrets-dry-run
1252:  * [new branch]            fix-43623-fma-patch-policy-gitops -> origin/fix-43623-fma-patch-policy-gitops
1253:  * [new branch]            fix-43673-my-device-sort    -> origin/fix-43673-my-device-sort
1254:  * [new branch]            fix-android-unenroll-activities -> origin/fix-android-unenroll-activities
1255:  * [new branch]            fix-blockquotes-google-groups -> origin/fix-blockquotes-google-groups
1256:  * [new branch]            fix-case-in-deploy-config-docs -> origin/fix-case-in-deploy-config-docs
1257:  * [new branch]            fix-cert-details-modal      -> origin/fix-cert-details-modal
1258:  * [new branch]            fix-checkerboard-scroll-to-right -> origin/fix-checkerboard-scroll-to-right
1259:  * [new branch]            fix-checkerboard-tooltip-nowrap -> origin/fix-checkerboard-tooltip-nowrap
1260:  * [new branch]            fix-cloudflare-warp-fma-output-json -> origin/fix-cloudflare-warp-fma-output-json
1261:  * [new branch]            fix-codeql-ci-error         -> origin/fix-codeql-ci-error
1262:  * [new branch]            fix-colima                  -> origin/fix-colima
1263:  * [new branch]            fix-color-for-mobile-sticky-nav -> origin/fix-color-for-mobile-sticky-nav
1264:  * [new branch]            fix-conflict-in-feature_19010-ipad-ios-lock-wipe -> origin/fix-conflict-in-feature_19010-ipad-ios-lock-wipe
1265:  * [new branch]            fix-contrib-docs            -> origin/fix-contrib-docs
1266:  * [new branch]            fix-cve-2026-2792-firefox-esr -> origin/fix-cve-2026-2792-firefox-esr
1267:  * [new branch]            fix-cve-validate-enrichment-canary -> origin/fix-cve-validate-enrichment-canary
1268:  * [new branch]            fix-dashboard-host-count-card-breakpoint -> origin/fix-dashboard-host-count-card-breakpoint
1269:  * [new branch]            fix-docker-publish          -> origin/fix-docker-publish
1270:  * [new branch]            fix-dogfood-workstation     -> origin/fix-dogfood-workstation
1271:  * [new branch]            fix-firefox-cve-2026-2792   -> origin/fix-firefox-cve-2026-2792
1272:  * [new branch]            fix-firefox-fma-conflict-error-msg -> origin/fix-firefox-fma-conflict-error-msg
1273:  * [new branch]            fix-flakey-orbit-test       -> origin/fix-flakey-orbit-test
...

1280:  * [new branch]            fix-iOS-iPadOS-logo-in-dark-theme -> origin/fix-iOS-iPadOS-logo-in-dark-theme
1281:  * [new branch]            fix-instability-ubuntu-latest -> origin/fix-instability-ubuntu-latest
1282:  * [new branch]            fix-ios-ipados-enrollment-label-42721 -> origin/fix-ios-ipados-enrollment-label-42721
1283:  * [new branch]            fix-list-sw-permissions     -> origin/fix-list-sw-permissions
1284:  * [new branch]            fix-mdm-enrolled-webhook    -> origin/fix-mdm-enrolled-webhook
1285:  * [new branch]            fix-mdm-redirect            -> origin/fix-mdm-redirect
1286:  * [new branch]            fix-mdm-url-truncation      -> origin/fix-mdm-url-truncation
1287:  * [new branch]            fix-missing-test-schema-update -> origin/fix-missing-test-schema-update
1288:  * [new branch]            fix-modernize               -> origin/fix-modernize
1289:  * [new branch]            fix-no-space-left-on-device-failure -> origin/fix-no-space-left-on-device-failure
1290:  * [new branch]            fix-notarization            -> origin/fix-notarization
1291:  * [new branch]            fix-orbit-notarization      -> origin/fix-orbit-notarization
1292:  * [new branch]            fix-os-settings-name-col-truncation -> origin/fix-os-settings-name-col-truncation
1293:  * [new branch]            fix-os-settings-underline-descender-clip -> origin/fix-os-settings-underline-descender-clip
1294:  * [new branch]            fix-pricing-more-info-icon-documentationurl -> origin/fix-pricing-more-info-icon-documentationurl
1295:  * [new branch]            fix-receive-from-github-error -> origin/fix-receive-from-github-error
1296:  * [new branch]            fix-sandbox-local           -> origin/fix-sandbox-local
...

1308:  * [new branch]            fix-ui-turn-on-mdm-external -> origin/fix-ui-turn-on-mdm-external
1309:  * [new branch]            fix-ui-typo-fleet-maintained-empty -> origin/fix-ui-typo-fleet-maintained-empty
1310:  * [new branch]            fix-vpp-edit-fleet-desktop-message -> origin/fix-vpp-edit-fleet-desktop-message
1311:  * [new branch]            fix-win-os-version          -> origin/fix-win-os-version
1312:  * [new branch]            fix_14825                   -> origin/fix_14825
1313:  * [new branch]            fixes-on-minor-fleet-v4.54.0 -> origin/fixes-on-minor-fleet-v4.54.0
1314:  * [new branch]            fixes-plus-4.35.1           -> origin/fixes-plus-4.35.1
1315:  * [new branch]            flaky-tests-nov-6           -> origin/flaky-tests-nov-6
1316:  * [new branch]            fleet-desktop-linux-browser -> origin/fleet-desktop-linux-browser
1317:  * [new branch]            fleet-desktop-version       -> origin/fleet-desktop-version
1318:  * [new branch]            fleet-mdm-server-url        -> origin/fleet-mdm-server-url
1319:  * [new branch]            fleet-multiple-abm-vpp-proposal -> origin/fleet-multiple-abm-vpp-proposal
1320:  * [new branch]            fleet-premium-users-usage-statistics -> origin/fleet-premium-users-usage-statistics
1321:  * [new branch]            fleet-release-infra         -> origin/fleet-release-infra
1322:  * [new branch]            fleet-server-config-1817    -> origin/fleet-server-config-1817
1323:  * [new branch]            fleet-server-log-request-errors -> origin/fleet-server-log-request-errors
1324:  * [new branch]            fleet-ship-rebuild          -> origin/fleet-ship-rebuild
...

2060:  * [new branch]            hotfix-disable-fv-rc        -> origin/hotfix-disable-fv-rc
2061:  * [new branch]            hotfix-failing-tests        -> origin/hotfix-failing-tests
2062:  * [new branch]            hotfix-query-update         -> origin/hotfix-query-update
2063:  * [new branch]            hotfix-revert-sofa-tables   -> origin/hotfix-revert-sofa-tables
2064:  * [new branch]            hotfix-v4.67.2-migration    -> origin/hotfix-v4.67.2-migration
2065:  * [new branch]            hotfix-v4.76.1              -> origin/hotfix-v4.76.1
2066:  * [new branch]            hughestaylor-patch-1        -> origin/hughestaylor-patch-1
2067:  * [new branch]            hughestaylor-patch-1-1      -> origin/hughestaylor-patch-1-1
2068:  * [new branch]            ignore-fleetctl-vulnerabilities -> origin/ignore-fleetctl-vulnerabilities
2069:  * [new branch]            improve-api-entity-naming   -> origin/improve-api-entity-naming
2070:  * [new branch]            improve-flakey-test         -> origin/improve-flakey-test
2071:  * [new branch]            improve-prometheus-metrics  -> origin/improve-prometheus-metrics
2072:  * [new branch]            include-mnt-in-gads-metric  -> origin/include-mnt-in-gads-metric
2073:  * [new branch]            increase-goreleaser-timeout-to-60m -> origin/increase-goreleaser-timeout-to-60m
2074:  * [new branch]            ingress-gateway-support     -> origin/ingress-gateway-support
2075:  * [new branch]            insert-software-installers-retry-error -> origin/insert-software-installers-retry-error
2076:  * [new branch]            integration-ci-debug        -> origin/integration-ci-debug
...

2087:  * [new branch]            irenareedy-patch-10         -> origin/irenareedy-patch-10
2088:  * [new branch]            irenareedy-patch-2          -> origin/irenareedy-patch-2
2089:  * [new branch]            irenareedy-patch-3          -> origin/irenareedy-patch-3
2090:  * [new branch]            irenareedy-patch-4          -> origin/irenareedy-patch-4
2091:  * [new branch]            irenareedy-patch-5          -> origin/irenareedy-patch-5
2092:  * [new branch]            irenareedy-patch-6          -> origin/irenareedy-patch-6
2093:  * [new branch]            irenareedy-patch-7          -> origin/irenareedy-patch-7
2094:  * [new branch]            irenareedy-patch-8          -> origin/irenareedy-patch-8
2095:  * [new branch]            irenareedy-patch-9          -> origin/irenareedy-patch-9
2096:  * [new branch]            irenareedy-thumbtack-case-study -> origin/irenareedy-thumbtack-case-study
2097:  * [new branch]            iso-27001-compliance        -> origin/iso-27001-compliance
2098:  * [new branch]            iso42001-ai-discovery-inventory -> origin/iso42001-ai-discovery-inventory
2099:  * [new branch]            issue-11545-my-device-dep-modal -> origin/issue-11545-my-device-dep-modal
2100:  * [new branch]            issue-2716-specify-query-platforms -> origin/issue-2716-specify-query-platforms
2101:  * [new branch]            issue-3271-rate-limit-distributed-writes -> origin/issue-3271-rate-limit-distributed-writes
2102:  * [new branch]            issue-4361-mail-change-should-error -> origin/issue-4361-mail-change-should-error
2103:  * [new branch]            issue-conf-1968-delete-uninstalled-software-from-main -> origin/issue-conf-1968-delete-uninstalled-software-from-main
...

2295:  * [new branch]            melpike-activity-debug-logging-43997 -> origin/melpike-activity-debug-logging-43997
2296:  * [new branch]            melpike-activity-label-host-32073 -> origin/melpike-activity-label-host-32073
2297:  * [new branch]            melpike-activity-labels-host-32073 -> origin/melpike-activity-labels-host-32073
2298:  * [new branch]            melpike-activity-lock-wipe-41683 -> origin/melpike-activity-lock-wipe-41683
2299:  * [new branch]            melpike-activity-rotate-managed-local-account-password-37142 -> origin/melpike-activity-rotate-managed-local-account-password-37142
2300:  * [new branch]            melpike-add-end-user-action-45804 -> origin/melpike-add-end-user-action-45804
2301:  * [new branch]            melpike-add-public-endpoints-44742 -> origin/melpike-add-public-endpoints-44742
2302:  * [new branch]            melpike-api-choose-byo-30871 -> origin/melpike-api-choose-byo-30871
2303:  * [new branch]            melpike-api-device-url-43895 -> origin/melpike-api-device-url-43895
2304:  * [new branch]            melpike-api-minimum-version-39085 -> origin/melpike-api-minimum-version-39085
2305:  * [new branch]            melpike-api-py-script-41470 -> origin/melpike-api-py-script-41470
2306:  * [new branch]            melpike-audit-log-mdm-cmd-45021 -> origin/melpike-audit-log-mdm-cmd-45021
2307:  * [new branch]            melpike-audit-recovery-lock-password-rotate -> origin/melpike-audit-recovery-lock-password-rotate
2308:  * [new branch]            melpike-combine-guides-30674 -> origin/melpike-combine-guides-30674
2309:  * [new branch]            melpike-create-managed-local-account-guide-37141 -> origin/melpike-create-managed-local-account-guide-37141
2310:  * [new branch]            melpike-dep-error-messaging-43916 -> origin/melpike-dep-error-messaging-43916
2311:  * [new branch]            melpike-doc-deploy-sw-41470 -> origin/melpike-doc-deploy-sw-41470
...

2447:  * [new branch]            mna-doc-change-api-structure -> origin/mna-doc-change-api-structure
2448:  * [new branch]            mna-experiment-macos-profiles-uuid -> origin/mna-experiment-macos-profiles-uuid
2449:  * [new branch]            mna-fix-22558-windows-installer-stuck-pending -> origin/mna-fix-22558-windows-installer-stuck-pending
2450:  * [new branch]            mna-fix-duplicate-lock-unlock-activity -> origin/mna-fix-duplicate-lock-unlock-activity
2451:  * [new branch]            mna-fix-failing-tests       -> origin/mna-fix-failing-tests
2452:  * [new branch]            mna-fix-flaky-integration-test -> origin/mna-fix-flaky-integration-test
2453:  * [new branch]            mna-fix-oom-fleetctl-test   -> origin/mna-fix-oom-fleetctl-test
2454:  * [new branch]            mna-loadtest-enroll-host-limit -> origin/mna-loadtest-enroll-host-limit
2455:  * [new branch]            mna-orbit-node-key          -> origin/mna-orbit-node-key
2456:  * [new branch]            mna-revert-change-to-autogenerated-activities-doc -> origin/mna-revert-change-to-autogenerated-activities-doc
2457:  * [new branch]            mna-temp-osquery-perf-loadtest -> origin/mna-temp-osquery-perf-loadtest
2458:  * [new branch]            mna11997                    -> origin/mna11997
2459:  * [new branch]            mock-associate-assets-endpoint -> origin/mock-associate-assets-endpoint
2460:  * [new branch]            monitoring-test             -> origin/monitoring-test
2461:  * [new branch]            more-conditional-access-api-updates -> origin/more-conditional-access-api-updates
2462:  * [new branch]            more-fd-errors              -> origin/more-fd-errors
2463:  * [new branch]            move-conditional-access-script-to-testing-qa -> origin/move-conditional-access-script-to-testing-qa
...

2992:  * [new branch]            sgress454/34259-end-user-auth-setup-backend -> origin/sgress454/34259-end-user-auth-setup-backend
2993:  * [new branch]            sgress454/34528-end-user-auth-setup-agent -> origin/sgress454/34528-end-user-auth-setup-agent
2994:  * [new branch]            sgress454/35376             -> origin/sgress454/35376
2995:  * [new branch]            sgress454/35452             -> origin/sgress454/35452
2996:  * [new branch]            sgress454/37127-open-macos-end-user-auth-window -> origin/sgress454/37127-open-macos-end-user-auth-window
2997:  * [new branch]            sgress454/38063-skeleton-server -> origin/sgress454/38063-skeleton-server
2998:  * [new branch]            sgress454/39344-rename-teams-to-fleet-all-changes -> origin/sgress454/39344-rename-teams-to-fleet-all-changes
2999:  * [new branch]            sgress454/39344-rename-teams-to-fleet-api-changes -> origin/sgress454/39344-rename-teams-to-fleet-api-changes
3000:  * [new branch]            sgress454/40642-update-jit-saml-prefix -> origin/sgress454/40642-update-jit-saml-prefix
3001:  * [new branch]            sgress454/43482-re-pin      -> origin/sgress454/43482-re-pin
3002:  * [new branch]            sgress454/44077-disable-datasets-backend -> origin/sgress454/44077-disable-datasets-backend
3003:  * [new branch]            sgress454/44077-disable-datasets-docs -> origin/sgress454/44077-disable-datasets-docs
3004:  * [new branch]            sgress454/44077-disable-datasets-frontend -> origin/sgress454/44077-disable-datasets-frontend
3005:  * [new branch]            sgress454/45290-drop-mobile-from-charting -> origin/sgress454/45290-drop-mobile-from-charting
3006:  * [new branch]            sgress454/add-vex-for-cve-2026-23517 -> origin/sgress454/add-vex-for-cve-2026-23517
3007:  * [new branch]            sgress454/adr-for-error-codes -> origin/sgress454/adr-for-error-codes
3008:  * [new branch]            sgress454/adr-refactor-list-hosts -> origin/sgress454/adr-refactor-list-hosts
...

3059:  * [new branch]            software-titles-loadtest    -> origin/software-titles-loadtest
3060:  * [new branch]            software-titles-loadtest-2  -> origin/software-titles-loadtest-2
3061:  * [new branch]            solutions-folder            -> origin/solutions-folder
3062:  * [new branch]            sort-seen-hosts-before-inserting -> origin/sort-seen-hosts-before-inserting
3063:  * [new branch]            spalmesano0-patch-2         -> origin/spalmesano0-patch-2
3064:  * [new branch]            spike-fleet-lint-plugin     -> origin/spike-fleet-lint-plugin
3065:  * [new branch]            spike-ui-permissions-pattern -> origin/spike-ui-permissions-pattern
3066:  * [new branch]            spokanemac-add-passcode-ddm-profile -> origin/spokanemac-add-passcode-ddm-profile
3067:  * [new branch]            spokanemac-dogfood-additional-apps -> origin/spokanemac-dogfood-additional-apps
3068:  * [new branch]            spokanemac-handbook-release-article -> origin/spokanemac-handbook-release-article
3069:  * [new branch]            spokanemac-macdevops-conference-post -> origin/spokanemac-macdevops-conference-post
3070:  * [new branch]            spokanemac-meetup-template  -> origin/spokanemac-meetup-template
3071:  * [new branch]            spokanemac-migrating-fleetdm-from-dogfood-to-terraform-on-aws -> origin/spokanemac-migrating-fleetdm-from-dogfood-to-terraform-on-aws
3072:  * [new branch]            spokanemac-release-article-issue-template -> origin/spokanemac-release-article-issue-template
3073:  * [new branch]            step4-improvements          -> origin/step4-improvements
3074:  * [new branch]            store-query-execution-and-ingestion-errors -> origin/store-query-execution-and-ingestion-errors
3075:  * [new branch]            support-breaking-osquery-downgrades -> origin/support-breaking-osquery-downgrades
...

3141:  * [new branch]            ui-self-service-sg-5-21     -> origin/ui-self-service-sg-5-21
3142:  * [new branch]            unauth-installers           -> origin/unauth-installers
3143:  * [new branch]            uniform-brex-spending-limit -> origin/uniform-brex-spending-limit
3144:  * [new branch]            untx-software               -> origin/untx-software
3145:  * [new branch]            upcoming-activities-mdm-commands -> origin/upcoming-activities-mdm-commands
3146:  * [new branch]            upcoming-commands           -> origin/upcoming-commands
3147:  * [new branch]            update-1password-and-safari-policy-versions-2601200025 -> origin/update-1password-and-safari-policy-versions-2601200025
3148:  * [new branch]            update-1password-and-safari-policy-versions-2601200610 -> origin/update-1password-and-safari-policy-versions-2601200610
3149:  * [new branch]            update-1password-and-safari-policy-versions-2602261818 -> origin/update-1password-and-safari-policy-versions-2602261818
3150:  * [new branch]            update-1password-and-safari-policy-versions-2603101819 -> origin/update-1password-and-safari-policy-versions-2603101819
3151:  * [new branch]            update-1password-and-safari-policy-versions-2604080037 -> origin/update-1password-and-safari-policy-versions-2604080037
3152:  * [new branch]            update-1password-and-safari-policy-versions-2604080637 -> origin/update-1password-and-safari-policy-versions-2604080637
3153:  * [new branch]            update-Cloudflare-WARP-FMA-with-UpgradeCode -> origin/update-Cloudflare-WARP-FMA-with-UpgradeCode
3154:  * [new branch]            update-article-format       -> origin/update-article-format
3155:  * [new branch]            update-bug-report-template  -> origin/update-bug-report-template
3156:  * [new branch]            update-build-script-error-message -> origin/update-build-script-error-message
3157:  * [new branch]            update-cancel-and-done-links -> origin/update-cancel-and-done-links
...

3232:  * [new branch]            update-santa-rules-chrome   -> origin/update-santa-rules-chrome
3233:  * [new branch]            update-solutions-folder     -> origin/update-solutions-folder
3234:  * [new branch]            update-testing-qa-apps-2511191525 -> origin/update-testing-qa-apps-2511191525
3235:  * [new branch]            update-tuf-keys             -> origin/update-tuf-keys
3236:  * [new branch]            update-tuf-md               -> origin/update-tuf-md
3237:  * [new branch]            update-usage-statistics-mobile-devices -> origin/update-usage-statistics-mobile-devices
3238:  * [new branch]            update-user-password-length-validation-test -> origin/update-user-password-length-validation-test
3239:  * [new branch]            update-vex-statements       -> origin/update-vex-statements
3240:  * [new branch]            update-why-this-way         -> origin/update-why-this-way
3241:  * [new branch]            upgrade-eslint              -> origin/upgrade-eslint
3242:  * [new branch]            upgrade-go                  -> origin/upgrade-go
3243:  * [new branch]            upgrade-typescript          -> origin/upgrade-typescript
3244:  * [new branch]            upload-msiexec-install-log  -> origin/upload-msiexec-install-log
3245:  * [new branch]            usage-stats-mobile-devices-count -> origin/usage-stats-mobile-devices-count
3246:  * [new branch]            use-dockerhub-creds         -> origin/use-dockerhub-creds
3247:  * [new branch]            user-channel-error          -> origin/user-channel-error
3248:  * [new branch]            users-table-experiment      -> origin/users-table-experiment
...

3386:  * [new branch]            website-update-tagline-personalization -> origin/website-update-tagline-personalization
3387:  * [new branch]            website-update-vulnerability-dashboard-dri -> origin/website-update-vulnerability-dashboard-dri
3388:  * [new branch]            website-upgrade-mermaid     -> origin/website-upgrade-mermaid
3389:  * [new branch]            website-usage-statistics-patch -> origin/website-usage-statistics-patch
3390:  * [new branch]            website-validate-fleet-versions -> origin/website-validate-fleet-versions
3391:  * [new branch]            wesite-fix-sales-rituals    -> origin/wesite-fix-sales-rituals
3392:  * [new branch]            willmayhone88-patch-1       -> origin/willmayhone88-patch-1
3393:  * [new branch]            win-fma-testing             -> origin/win-fma-testing
3394:  * [new branch]            win-mdm-loadtest            -> origin/win-mdm-loadtest
3395:  * [new branch]            windows-baseline            -> origin/windows-baseline
3396:  * [new branch]            windows-firefox-doh-script  -> origin/windows-firefox-doh-script
3397:  * [new branch]            windows-mdm-autopilot       -> origin/windows-mdm-autopilot
3398:  * [new branch]            windows-mdm-c-poc           -> origin/windows-mdm-c-poc
3399:  * [new branch]            windows-mdm-docs-auto-enroll -> origin/windows-mdm-docs-auto-enroll
3400:  * [new branch]            windows-mdm-load-test       -> origin/windows-mdm-load-test
3401:  * [new branch]            windows_enable_and_configure-error-message -> origin/windows_enable_and_configure-error-message
3402:  * [new branch]            workstations-to-use-edge-channels -> origin/workstations-to-use-edge-channels
...

3412:  * [new branch]            zayhanlon-patch-1           -> origin/zayhanlon-patch-1
3413:  * [new branch]            zenity-execuser             -> origin/zenity-execuser
3414:  * [new branch]            zhumo-patch-1               -> origin/zhumo-patch-1
3415:  * [new branch]            zhumo-patch-2               -> origin/zhumo-patch-2
3416:  * [new branch]            zhumo-patch-3               -> origin/zhumo-patch-3
3417:  * [new branch]            zhumo-patch-4               -> origin/zhumo-patch-4
3418:  * [new branch]            zhumo-patch-5               -> origin/zhumo-patch-5
3419:  * [new branch]            zhumo-patch-6               -> origin/zhumo-patch-6
3420:  * [new branch]            zhumo-patch-7               -> origin/zhumo-patch-7
3421:  * [new branch]            zwass-actions-reminders     -> origin/zwass-actions-reminders
3422:  * [new branch]            zwass-improve-macos-cpe     -> origin/zwass-improve-macos-cpe
3423:  * [new branch]            zwass-patch-1               -> origin/zwass-patch-1
3424:  * [new branch]            zwass-patch-2               -> origin/zwass-patch-2
3425:  * [new branch]            zwinnerman-fixup            -> origin/zwinnerman-fixup
3426:  * [new branch]            zwinnerman-livequery-tracing -> origin/zwinnerman-livequery-tracing
3427:  * [new branch]            zwinnerman-redis-error-handling -> origin/zwinnerman-redis-error-handling
3428:  * [new branch]            zwinnerman-test             -> origin/zwinnerman-test
...

4109:  Setup go version spec 1.26.3
4110:  Attempting to download 1.26.3...
4111:  matching 1.26.3...
4112:  Acquiring 1.26.3 from https://github.com/actions/go-versions/releases/download/1.26.3-25533533231/go-1.26.3-darwin-arm64.tar.gz
4113:  Extracting Go...
4114:  [command]/usr/bin/tar xz -C /Users/runner/work/_temp/bbda91c2-cb61-4c10-b8f0-5f2f9c316116 -f /Users/runner/work/_temp/a17a1f60-5d81-49aa-981d-ff7e55abc921
4115:  Successfully extracted go to /Users/runner/work/_temp/bbda91c2-cb61-4c10-b8f0-5f2f9c316116
4116:  Adding to the cache ...
4117:  Successfully cached go to /Users/runner/hostedtoolcache/go/1.26.3/arm64
4118:  Added go to the path
4119:  Successfully set up Go version 1.26.3
4120:  [command]/Users/runner/hostedtoolcache/go/1.26.3/arm64/bin/go env GOMODCACHE
4121:  [command]/Users/runner/hostedtoolcache/go/1.26.3/arm64/bin/go env GOCACHE
4122:  /Users/runner/go/pkg/mod
4123:  /Users/runner/Library/Caches/go-build
4124:  ##[warning]Restore cache failed: Dependencies file is not found in /Users/runner/work/fleet/fleet. Supported file pattern: go.mod
4125:  go version go1.26.3 darwin/arm64
...

4204:  - beyond-compare/darwin
4205:  - bitwarden/darwin
4206:  - brave-browser/darwin
4207:  - bruno/darwin
4208:  - cursor/darwin
4209:  - granola/darwin
4210:  - imazing/darwin
4211:  - mattermost/darwin
4212:  - notion/darwin
4213:  - postman/darwin
4214:  - postman/windows
4215:  - santa/darwin
4216:  - signal/darwin
4217:  - whatsapp/darwin
4218:  - zed/darwin
4219:  ##[group]Run # Default to no changes if detection step failed or didn't set output
4220:  �[36;1m# Default to no changes if detection step failed or didn't set output�[0m
4221:  �[36;1mHAS_CHANGES="true"�[0m
...

4407:  go: downloading go.opentelemetry.io/otel v1.43.0
4408:  go: downloading go.opentelemetry.io/otel/metric v1.43.0
4409:  go: downloading go.opentelemetry.io/otel/trace v1.43.0
4410:  go: downloading github.com/mattn/go-colorable v0.1.13
4411:  go: downloading github.com/edsrzf/mmap-go v1.1.0
4412:  go: downloading github.com/secDre4mer/pkcs7 v0.0.0-20240322103146-665324a4461d
4413:  go: downloading go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0
4414:  go: downloading golang.org/x/oauth2 v0.35.0
4415:  go: downloading github.com/aws/aws-sdk-go-v2/config v1.32.12
4416:  go: downloading github.com/aws/aws-sdk-go-v2 v1.41.5
4417:  go: downloading github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.35.8
4418:  go: downloading github.com/spf13/cobra v1.9.1
4419:  go: downloading github.com/spf13/viper v1.20.1
4420:  go: downloading github.com/go-kit/kit v0.12.0
4421:  go: downloading github.com/smallstep/pkcs7 v0.0.0-20240723090913-5e2c6a136dfa
4422:  go: downloading github.com/hashicorp/go-multierror v1.1.1
4423:  go: downloading github.com/micromdm/plist v0.2.3-0.20260123201933-667adaf87d87
4424:  go: downloading github.com/MicahParks/jwkset v0.11.0
4425:  go: downloading github.com/golang-jwt/jwt/v4 v4.5.2
4426:  go: downloading github.com/WatchBeam/clock v0.0.0-20170901150240-b08e6b4da7ea
4427:  go: downloading github.com/andygrunwald/go-jira v1.16.0
4428:  go: downloading github.com/cenkalti/backoff/v4 v4.3.0
4429:  go: downloading github.com/cenkalti/backoff v2.2.1+incompatible
4430:  go: downloading github.com/nukosuke/go-zendesk v0.13.1
4431:  go: downloading github.com/igm/sockjs-go/v3 v3.0.2
4432:  go: downloading github.com/mattn/go-isatty v0.0.20
4433:  go: downloading gopkg.in/yaml.v2 v2.4.0
4434:  go: downloading github.com/oschwald/maxminddb-golang v1.10.0
4435:  go: downloading golang.org/x/sys v0.43.0
4436:  go: downloading github.com/elastic/go-sysinfo v1.11.2
4437:  go: downloading github.com/pkg/errors v0.9.1
4438:  go: downloading go.elastic.co/fastjson v1.1.0
...

4490:  go: downloading github.com/pelletier/go-toml/v2 v2.2.3
4491:  go: downloading gopkg.in/yaml.v3 v3.0.1
4492:  go: downloading github.com/groob/finalizer v0.0.0-20170707115354-4c2ed49aabda
4493:  go: downloading cloud.google.com/go/iam v1.5.3
4494:  go: downloading github.com/googleapis/gax-go/v2 v2.17.0
4495:  go: downloading go.opencensus.io v0.24.0
4496:  go: downloading golang.org/x/sync v0.20.0
4497:  go: downloading google.golang.org/grpc v1.79.3
4498:  go: downloading google.golang.org/protobuf v1.36.11
4499:  go: downloading github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.8
4500:  go: downloading github.com/micromdm/nanolib v0.2.0
4501:  go: downloading github.com/nats-io/nkeys v0.4.15
4502:  go: downloading github.com/nats-io/nuid v1.0.1
4503:  go: downloading go.mozilla.org/pkcs7 v0.0.0-20210826202110-33d05740a352
4504:  go: downloading github.com/go-logfmt/logfmt v0.5.1
4505:  go: downloading github.com/joeshaw/multierror v0.0.0-20140124173710-69b34d4ec901
4506:  go: downloading cloud.google.com/go/pubsub/v2 v2.0.0
4507:  go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20260319201613-d00831a3d3e7
4508:  go: downloading cloud.google.com/go/auth v0.18.2
4509:  go: downloading google.golang.org/genproto v0.0.0-20260128011058-8636f8732409
4510:  go: downloading cloud.google.com/go/auth/oauth2adapt v0.2.8
4511:  go: downloading cloud.google.com/go/compute/metadata v0.9.0
4512:  go: downloading github.com/google/s2a-go v0.1.9
4513:  go: downloading google.golang.org/genproto/googleapis/api v0.0.0-20260203192932-546029d2fa20
4514:  go: downloading go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.61.0
4515:  go: downloading github.com/googleapis/enterprise-certificate-proxy v0.3.12
4516:  time=level=INFO msg="GOOS environment variable is not set. Using system detected: 'darwin'"
4517:  time=level=INFO msg="INSTALLATION_SEARCH_DIRECTORY environment variable is not set. Using default: '/Applications'"
4518:  time=level=INFO msg="Validating app: 1Password (1password/darwin)"
4519:  time=level=INFO msg=Downloading...
4520:  time=level=INFO msg="Executing install script..." app=1Password
4521:  time=level=ERROR msg="Error executing install script: exit status 1" app=1Password
4522:  time=level=ERROR msg="Output: \n--------------------\ninstaller: Package name is \ninstaller: Installing at base path /\ninstaller: The install failed. (The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance. An error occurred while running scripts from the package “1Password.pkg”.)\n\n--------------------" app=1Password
4523:  time=level=INFO msg="New application detected at: /Applications/1Password.app" app=1Password
4524:  time=level=INFO msg="Validating app: Beyond Compare (beyond-compare/darwin)"
4525:  time=level=INFO msg=Downloading...
4526:  time=level=INFO msg="Executing install script..." app="Beyond Compare"
4527:  time=level=INFO msg="New application detected at: /Applications/Beyond Compare.app" app="Beyond Compare"
4528:  time=level=INFO msg="Forcing LaunchServices refresh for: '/Applications/Beyond Compare.app'" app="Beyond Compare"
4529:  time=level=INFO msg="Attempting to remove quarantine for: '/Applications/Beyond Compare.app'" app="Beyond Compare"
4530:  time=level=INFO msg="Quarantine output error: checking quarantine status: exit status 1" app="Beyond Compare"
4531:  time=level=INFO msg="Quarantine status: Quarantine status: 'xattr: /Applications/Beyond Compare.app: No such xattr: com.apple.quarantine'" app="Beyond Compare"
4532:  time=level=INFO msg="Spctl output error: <nil>" app="Beyond Compare"
4533:  time=level=INFO msg="spctl status: spctl status: '/Applications/Beyond Compare.app: accepted\nsource=Notarized Developer ID'" app="Beyond Compare"
4534:  time=level=WARN msg="Error detected in post-installation steps: Error removing app quarantine: adding app to quarantine exceptions: exit status 4. Attempting to continue" app="Beyond Compare"
4535:  time=level=INFO msg="Looking for app: Beyond Compare, version: 5.2.2.32209" app="Beyond Compare"
4536:  time=level=INFO msg="Found app: 'Beyond Compare' at /Applications/Beyond Compare.app, Version: 5.2.2.32209, Bundled Version: 5020.22.20" app="Beyond Compare"
4537:  time=level=INFO msg="Executing uninstall script for app..." app="Beyond Compare"
4538:  time=level=INFO msg="Looking for app: Beyond Compare, version: 5.2.2.32209" app="Beyond Compare"
4539:  time=level=INFO msg="All checks passed for app: Beyond Compare (beyond-compare/darwin)"
4540:  time=level=INFO msg="Validating app: Bitwarden (bitwarden/darwin)"
4541:  time=level=INFO msg=Downloading...
4542:  time=level=INFO msg="Executing install script..." app=Bitwarden
4543:  time=level=INFO msg="New application detected at: /Applications/Bitwarden.app" app=Bitwarden
4544:  time=level=INFO msg="Forcing LaunchServices refresh for: '/Applications/Bitwarden.app'" app=Bitwarden
4545:  time=level=INFO msg="Attempting to remove quarantine for: '/Applications/Bitwarden.app'" app=Bitwarden
4546:  time=level=INFO msg="Quarantine output error: checking quarantine status: exit status 1" app=Bitwarden
4547:  time=level=INFO msg="Quarantine status: Quarantine status: 'xattr: /Applications/Bitwarden.app: No such xattr: com.apple.quarantine'" app=Bitwarden
4548:  time=level=INFO msg="Spctl output error: <nil>" app=Bitwarden
4549:  time=level=INFO msg="spctl status: spctl status: '/Applications/Bitwarden.app: accepted\nsource=Notarized Developer ID'" app=Bitwarden
4550:  time=level=WARN msg="Error detected in post-installation steps: Error removing app quarantine: adding app to quarantine exceptions: exit status 4. Attempting to continue" app=Bitwarden
4551:  time=level=INFO msg="Looking for app: Bitwarden, version: 2026.4.0" app=Bitwarden
4552:  time=level=INFO msg="Found app: 'Bitwarden' at /Applications/Bitwarden.app, Version: 2026.4.0, Bundled Version: 62169" app=Bitwarden
4553:  time=level=INFO msg="Executing uninstall script for app..." app=Bitwarden
4554:  time=level=INFO msg="Looking for app: Bitwarden, version: 2026.4.0" app=Bitwarden
4555:  time=level=INFO msg="All checks passed for app: Bitwarden (bitwarden/darwin)"
4556:  time=level=INFO msg="Validating app: Brave (brave-browser/darwin)"
4557:  time=level=INFO msg=Downloading...
4558:  time=level=INFO msg="Executing install script..." app=Brave
4559:  time=level=INFO msg="New application detected at: /Applications/Brave Browser.app" app=Brave
4560:  time=level=INFO msg="Forcing LaunchServices refresh for: '/Applications/Brave Browser.app'" app=Brave
4561:  time=level=INFO msg="Attempting to remove quarantine for: '/Applications/Brave Browser.app'" app=Brave
4562:  time=level=INFO msg="Quarantine output error: checking quarantine status: exit status 1" app=Brave
4563:  time=level=INFO msg="Quarantine status: Quarantine status: 'xattr: /Applications/Brave Browser.app: No such xattr: com.apple.quarantine'" app=Brave
4564:  time=level=INFO msg="Spctl output error: <nil>" app=Brave
4565:  time=level=INFO msg="spctl status: spctl status: '/Applications/Brave Browser.app: accepted\nsource=Notarized Developer ID'" app=Brave
4566:  time=level=WARN msg="Error detected in post-installation steps: Error removing app quarantine: adding app to quarantine exceptions: exit status 4. Attempting to continue" app=Brave
4567:  time=level=INFO msg="Looking for app: Brave, version: 148.1.90.124" app=Brave
4568:  time=level=INFO msg="Found app: 'Brave Browser' at /Applications/Brave Browser.app, Version: 148.1.90.124, Bundled Version: 190.124" app=Brave
4569:  time=level=INFO msg="Executing uninstall script for app..." app=Brave
4570:  time=level=INFO msg="Looking for app: Brave, version: 148.1.90.124" app=Brave
4571:  time=level=INFO msg="All checks passed for app: Brave (brave-browser/darwin)"
4572:  time=level=INFO msg="Validating app: Bruno (bruno/darwin)"
4573:  time=level=INFO msg=Downloading...
4574:  time=level=INFO msg="Executing install script..." app=Bruno
4575:  time=level=INFO msg="New application detected at: /Applications/Bruno.app" app=Bruno
4576:  time=level=INFO msg="Forcing LaunchServices refresh for: '/Applications/Bruno.app'" app=Bruno
4577:  time=level=INFO msg="Attempting to remove quarantine for: '/Applications/Bruno.app'" app=Bruno
4578:  time=level=INFO msg="Quarantine output error: checking quarantine status: exit status 1" app=Bruno
4579:  time=level=INFO msg="Quarantine status: Quarantine status: 'xattr: /Applications/Bruno.app: No such xattr: com.apple.quarantine'" app=Bruno
4580:  time=level=INFO msg="Spctl output error: <nil>" app=Bruno
4581:  time=level=INFO msg="spctl status: spctl status: '/Applications/Bruno.app: accepted\nsource=Notarized Developer ID'" app=Bruno
4582:  time=level=WARN msg="Error detected in post-installation steps: Error removing app quarantine: adding app to quarantine exceptions: exit status 4. Attempting to continue" app=Bruno
4583:  time=level=INFO msg="Looking for app: Bruno, version: 3.4.0" app=Bruno
4584:  time=level=INFO msg="Found app: 'Bruno' at /Applications/Bruno.app, Version: 3.4.0, Bundled Version: 3.4.0" app=Bruno
4585:  time=level=INFO msg="Executing uninstall script for app..." app=Bruno
4586:  time=level=INFO msg="Looking for app: Bruno, version: 3.4.0" app=Bruno
4587:  time=level=INFO msg="All checks passed for app: Bruno (bruno/darwin)"
4588:  time=level=INFO msg="Validating app: Cursor (cursor/darwin)"
4589:  time=level=INFO msg=Downloading...
4590:  time=level=INFO msg="Executing install script..." app=Cursor
4591:  time=level=INFO msg="New application detected at: /Applications/Cursor.app" app=Cursor
4592:  time=level=INFO msg="Forcing LaunchServices refresh for: '/Applications/Cursor.app'" app=Cursor
4593:  time=level=INFO msg="Attempting to remove quarantine for: '/Applications/Cursor.app'" app=Cursor
4594:  time=level=INFO msg="Quarantine output error: checking quarantine status: exit status 1" app=Cursor
4595:  time=level=INFO msg="Quarantine status: Quarantine status: 'xattr: /Applications/Cursor.app: No such xattr: com.apple.quarantine'" app=Cursor
4596:  time=level=INFO msg="Spctl output error: <nil>" app=Cursor
4597:  time=level=INFO msg="spctl status: spctl status: '/Applications/Cursor.app: accepted\nsource=Notarized Developer ID'" app=Cursor
4598:  time=level=WARN msg="Error detected in post-installation steps: Error removing app quarantine: adding app to quarantine exceptions: exit status 4. Attempting to continue" app=Cursor
4599:  time=level=INFO msg="Looking for app: Cursor, version: 3.5.17" app=Cursor
4600:  time=level=INFO msg="Found app: 'Cursor' at /Applications/Cursor.app, Version: 3.5.17, Bundled Version: 3.5.17" app=Cursor
4601:  time=level=INFO msg="Executing uninstall script for app..." app=Cursor
4602:  time=level=INFO msg="Looking for app: Cursor, version: 3.5.17" app=Cursor
4603:  time=level=INFO msg="Found app: 'SSAssistanceCursor' at /System/Library/CoreServices/RemoteManagement/ScreensharingAgent.bundle/Contents/Support/SSAssistanceCursor.app, Version: 3.9.8, Bundled Version: 709.6.105.1" app=Cursor
4604:  time=level=INFO msg="All checks passed for app: Cursor (cursor/darwin)"
4605:  time=level=INFO msg="Validating app: Granola (granola/darwin)"
4606:  time=level=INFO msg=Downloading...
4607:  time=level=INFO msg="Executing install script..." app=Granola
4608:  time=level=INFO msg="New application detected at: /Applications/Granola.app" app=Granola
4609:  time=level=INFO msg="Forcing LaunchServices refresh for: '/Applications/Granola.app'" app=Granola
4610:  time=level=INFO msg="Attempting to remove quarantine for: '/Applications/Granola.app'" app=Granola
4611:  time=level=INFO msg="Quarantine output error: checking quarantine status: exit status 1" app=Granola
4612:  time=level=INFO msg="Quarantine status: Quarantine status: 'xattr: /Applications/Granola.app: No such xattr: com.apple.quarantine'" app=Granola
4613:  time=level=INFO msg="Spctl output error: <nil>" app=Granola
4614:  time=level=INFO msg="spctl status: spctl status: '/Applications/Granola.app: accepted\nsource=Notarized Developer ID'" app=Granola
4615:  time=level=WARN msg="Error detected in post-installation steps: Error removing app quarantine: adding app to quarantine exceptions: exit status 4. Attempting to continue" app=Granola
4616:  time=level=INFO msg="Looking for app: Granola, version: 7.227.6" app=Granola
4617:  time=level=INFO msg="Found app: 'Granola' at /Applications/Granola.app, Version: 7.227.6, Bundled Version: 7.227.6" app=Granola
4618:  time=level=INFO msg="Executing uninstall script for app..." app=Granola
4619:  time=level=INFO msg="Looking for app: Granola, version: 7.227.6" app=Granola
4620:  time=level=INFO msg="All checks passed for app: Granola (granola/darwin)"
4621:  time=level=INFO msg="Validating app: iMazing (imazing/darwin)"
4622:  time=level=INFO msg=Downloading...
4623:  time=level=INFO msg="Executing install script..." app=iMazing
4624:  time=level=INFO msg="New application detected at: /Applications/iMazing.app" app=iMazing
4625:  time=level=INFO msg="Forcing LaunchServices refresh for: '/Applications/iMazing.app'" app=iMazing
4626:  time=level=INFO msg="Attempting to remove quarantine for: '/Applications/iMazing.app'" app=iMazing
4627:  time=level=INFO msg="Quarantine output error: checking quarantine status: exit status 1" app=iMazing
4628:  time=level=INFO msg="Quarantine status: Quarantine status: 'xattr: /Applications/iMazing.app: No such xattr: com.apple.quarantine'" app=iMazing
4629:  time=level=INFO msg="Spctl output error: <nil>" app=iMazing
4630:  time=level=INFO msg="spctl status: spctl status: '/Applications/iMazing.app: accepted\nsource=Notarized Developer ID'" app=iMazing
4631:  time=level=WARN msg="Error detected in post-installation steps: Error removing app quarantine: adding app to quarantine exceptions: exit status 4. Attempting to continue" app=iMazing
4632:  time=level=INFO msg="Looking for app: iMazing, version: 3.5.3" app=iMazing
4633:  time=level=INFO msg="Found app: 'iMazing' at /Applications/iMazing.app, Version: 3.5.3, Bundled Version: 24045" app=iMazing
4634:  time=level=INFO msg="Executing uninstall script for app..." app=iMazing
4635:  time=level=INFO msg="Looking for app: iMazing, version: 3.5.3" app=iMazing
4636:  time=level=INFO msg="All checks passed for app: iMazing (imazing/darwin)"
4637:  time=level=INFO msg="Validating app: Mattermost (mattermost/darwin)"
4638:  time=level=INFO msg=Downloading...
4639:  time=level=INFO msg="Executing install script..." app=Mattermost
4640:  time=level=INFO msg="New application detected at: /Applications/Mattermost.app" app=Mattermost
4641:  time=level=INFO msg="Forcing LaunchServices refresh for: '/Applications/Mattermost.app'" app=Mattermost
4642:  time=level=INFO msg="Attempting to remove quarantine for: '/Applications/Mattermost.app'" app=Mattermost
4643:  time=level=INFO msg="Quarantine output error: checking quarantine status: exit status 1" app=Mattermost
4644:  time=level=INFO msg="Quarantine status: Quarantine status: 'xattr: /Applications/Mattermost.app: No such xattr: com.apple.quarantine'" app=Mattermost
4645:  time=level=INFO msg="Spctl output error: <nil>" app=Mattermost
4646:  time=level=INFO msg="spctl status: spctl status: '/Applications/Mattermost.app: accepted\nsource=Notarized Developer ID'" app=Mattermost
4647:  time=level=WARN msg="Error detected in post-installation steps: Error removing app quarantine: adding app to quarantine exceptions: exit status 4. Attempting to continue" app=Mattermost
4648:  time=level=INFO msg="Looking for app: Mattermost, version: 6.2.0" app=Mattermost
4649:  time=level=INFO msg="Found app: 'Mattermost' at /Applications/Mattermost.app, Version: 6.2.0, Bundled Version: 259012397941" app=Mattermost
4650:  time=level=INFO msg="Executing uninstall script for app..." app=Mattermost
4651:  time=level=INFO msg="Looking for app: Mattermost, version: 6.2.0" app=Mattermost
4652:  time=level=INFO msg="All checks passed for app: Mattermost (mattermost/darwin)"
4653:  time=level=INFO msg="Validating app: Notion (notion/darwin)"
4654:  time=level=INFO msg=Downloading...
4655:  time=level=INFO msg="Executing install script..." app=Notion
4656:  time=level=INFO msg="New application detected at: /Applications/Notion.app" app=Notion
4657:  time=level=INFO msg="Forcing LaunchServices refresh for: '/Applications/Notion.app'" app=Notion
4658:  time=level=INFO msg="Attempting to remove quarantine for: '/Applications/Notion.app'" app=Notion
4659:  time=level=INFO msg="Quarantine output error: checking quarantine status: exit status 1" app=Notion
4660:  time=level=INFO msg="Quarantine status: Quarantine status: 'xattr: /Applications/Notion.app: No such xattr: com.apple.quarantine'" app=Notion
4661:  time=level=INFO msg="Spctl output error: <nil>" app=Notion
4662:  time=level=INFO msg="spctl status: spctl status: '/Applications/Notion.app: accepted\nsource=Notarized Developer ID'" app=Notion
4663:  time=level=WARN msg="Error detected in post-installation steps: Error removing app quarantine: adding app to quarantine exceptions: exit status 4. Attempting to continue" app=Notion
4664:  time=level=INFO msg="Looking for app: Notion, version: 7.18.0" app=Notion
4665:  time=level=INFO msg="Found app: 'Notion' at /Applications/Notion.app, Version: 7.18.0, Bundled Version: 7.18.0" app=Notion
4666:  time=level=INFO msg="Executing uninstall script for app..." app=Notion
4667:  time=level=INFO msg="Looking for app: Notion, version: 7.18.0" app=Notion
4668:  time=level=INFO msg="All checks passed for app: Notion (notion/darwin)"
4669:  time=level=INFO msg="Validating app: Postman (postman/darwin)"
4670:  time=level=INFO msg=Downloading...
4671:  time=level=INFO msg="Executing install script..." app=Postman
4672:  time=level=INFO msg="New application detected at: /Applications/Postman.app" app=Postman
4673:  time=level=INFO msg="Forcing LaunchServices refresh for: '/Applications/Postman.app'" app=Postman
4674:  time=level=INFO msg="Attempting to remove quarantine for: '/Applications/Postman.app'" app=Postman
4675:  time=level=INFO msg="Quarantine output error: checking quarantine status: exit status 1" app=Postman
4676:  time=level=INFO msg="Quarantine status: Quarantine status: 'xattr: /Applications/Postman.app: No such xattr: com.apple.quarantine'" app=Postman
4677:  time=level=INFO msg="Spctl output error: <nil>" app=Postman
4678:  time=level=INFO msg="spctl status: spctl status: '/Applications/Postman.app: accepted\nsource=Notarized Developer ID'" app=Postman
4679:  time=level=WARN msg="Error detected in post-installation steps: Error removing app quarantine: adding app to quarantine exceptions: exit status 4. Attempting to continue" app=Postman
4680:  time=level=INFO msg="Looking for app...

@github-actions

Copy link
Copy Markdown
Contributor

Closing in favor of #45972.

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