Skip to content

Update Fleet-maintained apps - #48454

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

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

Conversation

@fleet-release

@fleet-release fleet-release commented Jun 29, 2026

Copy link
Copy Markdown
Contributor

Automated ingestion of latest Fleet-maintained app data.

Summary by CodeRabbit

  • New Features
    • Updated package metadata for several maintained apps so the latest macOS and Windows releases are available.
  • Bug Fixes
    • Refreshed version checks, download links, and checksums to match newer releases for Beyond Compare, Codex, Discord, Docker Desktop, draw.io, Nextcloud, Notion Calendar, Novabench, Reqable, Rocket.Chat, Shift, Spokenly, and wins.
    • Improved update detection for newer installed versions across these apps.

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/beyond-compare/darwin.json

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

ee/maintained-apps/outputs/codex-app/darwin.json

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

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

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

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

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

ee/maintained-apps/outputs/docker-desktop/darwin.json

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

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

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

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

=== Install // 19e01bca -> c18d4d3b ===

--- /tmp/old.95bpCf	2026-06-29 20:40:18.779875309 +0000
+++ /tmp/new.OXWyoA	2026-06-29 20:40:18.779875309 +0000
@@ -96,5 +96,5 @@
 
 # install pkg files
 quit_and_track_application 'com.nextcloud.desktopclient'
-sudo installer -pkg "$TMPDIR/Nextcloud-33.0.6.pkg" -target /
+sudo installer -pkg "$TMPDIR/Nextcloud-33.0.7.pkg" -target /
 relaunch_application 'com.nextcloud.desktopclient'

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

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

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

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

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

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

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

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

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

ee/maintained-apps/outputs/rocket-chat/darwin.json

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

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

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

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

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

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

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

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

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

@coderabbitai

coderabbitai Bot commented Jun 29, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Walkthrough

Version metadata updates across 15 maintained-app JSON manifests under ee/maintained-apps/outputs/. For each app, the version field, queries.patched SQL version_compare threshold, installer_url, and sha256 checksum were updated to the latest release. Nextcloud additionally replaces install_script_ref and updates the embedded install script's referenced package filename from Nextcloud-33.0.6.pkg to Nextcloud-33.0.7.pkg. No logic, scripts (other than Nextcloud's), or schema changes are included.

Possibly related PRs

  • fleetdm/fleet#48427: Updates the same reqable/darwin.json, reqable/windows.json, and wins/darwin.json manifests with the same field pattern (version, patched query, installer URL, sha256).
  • fleetdm/fleet#48410: Updates reqable/windows.json with the same version bump pattern targeting the same fields.
  • fleetdm/fleet#48387: Updates spokenly/darwin.json with the same version bump pattern.
🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Description check ⚠️ Warning The description is too vague and omits the required issue, checklist items, and testing details from the template. Add the Related issue line and complete the template checklist sections, including testing and any applicable notes.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title matches the main change: updating 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-2606292033

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.

🧹 Nitpick comments (1)
ee/maintained-apps/outputs/nextcloud/darwin.json (1)

20-20: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Use INSTALLER_PATH instead of hardcoding the package filename.

The new ref still bakes Nextcloud-33.0.7.pkg into the script, so every version bump now has to keep the manifest URL and the embedded installer path in sync. Point installer -pkg at "$INSTALLER_PATH" to remove that drift risk.

Proposed change
- sudo installer -pkg "$TMPDIR/Nextcloud-33.0.7.pkg" -target /
+ sudo installer -pkg "$INSTALLER_PATH" -target /
🤖 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/nextcloud/darwin.json` at line 20, The installer
invocation still hardcodes the package filename inside the Nextcloud script,
which can drift from the downloaded artifact. Update the `installer` call in the
script logic that uses `TMPDIR` and `INSTALLER_PATH` so it installs from
`"$INSTALLER_PATH"` instead of a versioned `Nextcloud-33.0.7.pkg`, keeping the
package path tied to the actual downloaded file.
🤖 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.

Nitpick comments:
In `@ee/maintained-apps/outputs/nextcloud/darwin.json`:
- Line 20: The installer invocation still hardcodes the package filename inside
the Nextcloud script, which can drift from the downloaded artifact. Update the
`installer` call in the script logic that uses `TMPDIR` and `INSTALLER_PATH` so
it installs from `"$INSTALLER_PATH"` instead of a versioned
`Nextcloud-33.0.7.pkg`, keeping the package path tied to the actual downloaded
file.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: c33e5600-c370-4e11-a625-ce4e1708061b

📥 Commits

Reviewing files that changed from the base of the PR and between 0656141 and 4530758.

📒 Files selected for processing (16)
  • ee/maintained-apps/outputs/beyond-compare/darwin.json
  • ee/maintained-apps/outputs/codex-app/darwin.json
  • ee/maintained-apps/outputs/discord/darwin.json
  • ee/maintained-apps/outputs/discord/windows.json
  • ee/maintained-apps/outputs/docker-desktop/darwin.json
  • ee/maintained-apps/outputs/drawio/windows.json
  • ee/maintained-apps/outputs/nextcloud/darwin.json
  • ee/maintained-apps/outputs/notion-calendar/darwin.json
  • ee/maintained-apps/outputs/novabench/darwin.json
  • ee/maintained-apps/outputs/reqable/darwin.json
  • ee/maintained-apps/outputs/reqable/windows.json
  • ee/maintained-apps/outputs/rocket-chat/darwin.json
  • ee/maintained-apps/outputs/shift/darwin.json
  • ee/maintained-apps/outputs/shift/windows.json
  • ee/maintained-apps/outputs/spokenly/darwin.json
  • ee/maintained-apps/outputs/wins/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 an app validation run because the Wins app did not match the expected
version.
- While validating Wins (wins/darwin), the workflow expected version 3.4 but detected
Wins.app version 3.3 instead (log lines ~5140-5144).
- The validator then reported App version '3.4'
was not found by osquery and ended with exit status 1, causing the step to fail with Process
completed with exit code 1 (log lines ~5143-5149).

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

168:  * [new branch]            11938-loadtesting-branch    -> origin/11938-loadtesting-branch
169:  * [new branch]            12007-ui-idp-metadata       -> origin/12007-ui-idp-metadata
170:  * [new branch]            12351-try-fix-for-fleet-desktop -> origin/12351-try-fix-for-fleet-desktop
171:  * [new branch]            12356-puppet-callback       -> origin/12356-puppet-callback
172:  * [new branch]            12375-query-bulk-action     -> origin/12375-query-bulk-action
173:  * [new branch]            12474-documentation         -> origin/12474-documentation
174:  * [new branch]            12614-federated-auth-support -> origin/12614-federated-auth-support
175:  * [new branch]            12687-host-issues-query     -> origin/12687-host-issues-query
176:  * [new branch]            12696-loadtest-cis-changes  -> origin/12696-loadtest-cis-changes
177:  * [new branch]            12842-fleetd-bitlocker-management -> origin/12842-fleetd-bitlocker-management
178:  * [new branch]            12842-fleetd-bitlocker-table -> origin/12842-fleetd-bitlocker-table
179:  * [new branch]            12889-faster-software       -> origin/12889-faster-software
180:  * [new branch]            13287-loadtest-changes      -> origin/13287-loadtest-changes
181:  * [new branch]            13288-poc-fleet-fips        -> origin/13288-poc-fleet-fips
182:  * [new branch]            13485-query-reports-migration -> origin/13485-query-reports-migration
183:  * [new branch]            13574-cache-failed-policy-counts -> origin/13574-cache-failed-policy-counts
184:  * [new branch]            13657-docs                  -> origin/13657-docs
...

196:  * [new branch]            146orch                     -> origin/146orch
197:  * [new branch]            14753-windows-ps1-api       -> origin/14753-windows-ps1-api
198:  * [new branch]            14957-test-dep-screen       -> origin/14957-test-dep-screen
199:  * [new branch]            14957-test-dep-screen-patch -> origin/14957-test-dep-screen-patch
200:  * [new branch]            15068-disk-encryption-ii    -> origin/15068-disk-encryption-ii
201:  * [new branch]            15082-download-api-docs     -> origin/15082-download-api-docs
202:  * [new branch]            15082-make-endpoints-consistent -> origin/15082-make-endpoints-consistent
203:  * [new branch]            15082-update-download-endpoints -> origin/15082-update-download-endpoints
204:  * [new branch]            15380-hosts-api-doc         -> origin/15380-hosts-api-doc
205:  * [new branch]            15461-ui-dep-assign-profile-responses -> origin/15461-ui-dep-assign-profile-responses
206:  * [new branch]            15463-msi-fix               -> origin/15463-msi-fix
207:  * [new branch]            15559-move-scep             -> origin/15559-move-scep
208:  * [new branch]            15633                       -> origin/15633
209:  * [new branch]            15770-mac-os-vuln           -> origin/15770-mac-os-vuln
210:  * [new branch]            15801-migration             -> origin/15801-migration
211:  * [new branch]            15912-password-reset-error-code -> origin/15912-password-reset-error-code
212:  * [new branch]            16182-log-root              -> origin/16182-log-root
...

616:  * [new branch]            4701-tickets                -> origin/4701-tickets
617:  * [new branch]            4701-with-osqpfix           -> origin/4701-with-osqpfix
618:  * [new branch]            471-0716                    -> origin/471-0716
619:  * [new branch]            471-cloudfront              -> origin/471-cloudfront
620:  * [new branch]            471-tickets                 -> origin/471-tickets
621:  * [new branch]            4710mdm                     -> origin/4710mdm
622:  * [new branch]            4710mdmloadtest             -> origin/4710mdmloadtest
623:  * [new branch]            4711-bsln                   -> origin/4711-bsln
624:  * [new branch]            471RC-07-09                 -> origin/471RC-07-09
625:  * [new branch]            4720mdm                     -> origin/4720mdm
626:  * [new branch]            4720orch                    -> origin/4720orch
627:  * [new branch]            4720orch1                   -> origin/4720orch1
628:  * [new branch]            4720orch2                   -> origin/4720orch2
629:  * [new branch]            47289-new-fma-masv          -> origin/47289-new-fma-masv
630:  * [new branch]            472orchm                    -> origin/472orchm
631:  * [new branch]            47303-redis-moved-errors-from-getqueryresultscounts-incrqueryresultscounts-in-cluster-mode -> origin/47303-redis-moved-errors-from-getqueryresultscounts-incrqueryresultscounts-in-cluster-mode
632:  * [new branch]            4735orch                    -> origin/4735orch
...

655:  * [new branch]            7765-frontend               -> origin/7765-frontend
656:  * [new branch]            7766-backend-final-main-merge -> origin/7766-backend-final-main-merge
657:  * [new branch]            7766-backend-test           -> origin/7766-backend-test
658:  * [new branch]            7766-frontend               -> origin/7766-frontend
659:  * [new branch]            7993-figure-out-the-limits-of-our-current-search-approach -> origin/7993-figure-out-the-limits-of-our-current-search-approach
660:  * [new branch]            8021-orbit-use-specified-identifier -> origin/8021-orbit-use-specified-identifier
661:  * [new branch]            8186-vulnerable-software-false-positive-docker -> origin/8186-vulnerable-software-false-positive-docker
662:  * [new branch]            8593-gitops                 -> origin/8593-gitops
663:  * [new branch]            8708-docs                   -> origin/8708-docs
664:  * [new branch]            8708-encryption-key-api     -> origin/8708-encryption-key-api
665:  * [new branch]            8708-ingest-file-vault      -> origin/8708-ingest-file-vault
666:  * [new branch]            8708-ingest-macos-encription-key -> origin/8708-ingest-macos-encription-key
667:  * [new branch]            8708-ingest-macos-encription-key-ii -> origin/8708-ingest-macos-encription-key-ii
668:  * [new branch]            8974-native-smbios-uuid-support -> origin/8974-native-smbios-uuid-support
669:  * [new branch]            9260-cis-checks-5.10.x      -> origin/9260-cis-checks-5.10.x
670:  * [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
671:  * [new branch]            9590-schema                 -> origin/9590-schema
...

860:  * [new branch]            allenhouchins-add-hardware-procurement-info -> origin/allenhouchins-add-hardware-procurement-info
861:  * [new branch]            allenhouchins-contour-normalize -> origin/allenhouchins-contour-normalize
862:  * [new branch]            allenhouchins-fma-installer-arch -> origin/allenhouchins-fma-installer-arch
863:  * [new branch]            allenhouchins-net-arm64     -> origin/allenhouchins-net-arm64
864:  * [new branch]            allenhouchins-new-blog-post -> origin/allenhouchins-new-blog-post
865:  * [new branch]            allenhouchins-patch-1       -> origin/allenhouchins-patch-1
866:  * [new branch]            allenhouchins-santa-table-updates -> origin/allenhouchins-santa-table-updates
867:  * [new branch]            allenhouchins-update-custom-tap -> origin/allenhouchins-update-custom-tap
868:  * [new branch]            allenhouchins-update-ingester -> origin/allenhouchins-update-ingester
869:  * [new branch]            allenhouchins-update-new-fma-skill -> origin/allenhouchins-update-new-fma-skill
870:  * [new branch]            always-create-event-next-thu -> origin/always-create-event-next-thu
871:  * [new branch]            and_osq_proj                -> origin/and_osq_proj
872:  * [new branch]            andrey/loadtest-oval-vulns  -> origin/andrey/loadtest-oval-vulns
873:  * [new branch]            android-cofniguration-profiles-research -> origin/android-cofniguration-profiles-research
874:  * [new branch]            android-enroll-note         -> origin/android-enroll-note
875:  * [new branch]            android-enrollment-error    -> origin/android-enrollment-error
876:  * [new branch]            android-fleet-vars          -> origin/android-fleet-vars
...

928:  * [new branch]            await-configuration-docs    -> origin/await-configuration-docs
929:  * [new branch]            aws-licensing-integration-proposal -> origin/aws-licensing-integration-proposal
930:  * [new branch]            backport-a41fb63            -> origin/backport-a41fb63
931:  * [new branch]            backport-c02af              -> origin/backport-c02af
932:  * [new branch]            backport-e65d6cf            -> origin/backport-e65d6cf
933:  * [new branch]            backport-ef07a406cc8dbccb4914bbd27631df74e5b13b49 -> origin/backport-ef07a406cc8dbccb4914bbd27631df74e5b13b49
934:  * [new branch]            backport-vpp-fix            -> origin/backport-vpp-fix
935:  * [new branch]            base-software-titles-loadtest -> origin/base-software-titles-loadtest
936:  * [new branch]            base-software-titles-loadtest-2 -> origin/base-software-titles-loadtest-2
937:  * [new branch]            beekeeper-fma-initial       -> origin/beekeeper-fma-initial
938:  * [new branch]            bettapizza                  -> origin/bettapizza
939:  * [new branch]            bettapizza--ghost-testimonial-update -> origin/bettapizza--ghost-testimonial-update
940:  * [new branch]            bettapizza-patch-1          -> origin/bettapizza-patch-1
941:  * [new branch]            bettapizza-patch-2          -> origin/bettapizza-patch-2
942:  * [new branch]            bettapizza-patch-3          -> origin/bettapizza-patch-3
943:  * [new branch]            better-byod-error           -> origin/better-byod-error
944:  * [new branch]            bounded-context-proposals   -> origin/bounded-context-proposals
...

978:  * [new branch]            cherry-pick-42773-vitals-constants -> origin/cherry-pick-42773-vitals-constants
979:  * [new branch]            cherry-pick-48012-to-docs-v4.89.0 -> origin/cherry-pick-48012-to-docs-v4.89.0
980:  * [new branch]            cherry-pick-8750-into-rc-minor-fleet-v4.60.0 -> origin/cherry-pick-8750-into-rc-minor-fleet-v4.60.0
981:  * [new branch]            cherry-pick-dogfood-change  -> origin/cherry-pick-dogfood-change
982:  * [new branch]            cherry-pick-dogfood-env-vars -> origin/cherry-pick-dogfood-env-vars
983:  * [new branch]            cherry-pick-fleetctl-changes-to-allow-testing -> origin/cherry-pick-fleetctl-changes-to-allow-testing
984:  * [new branch]            cherry-pick-mac-address-vital -> origin/cherry-pick-mac-address-vital
985:  * [new branch]            cherry-pick-patches         -> origin/cherry-pick-patches
986:  * [new branch]            cherry-pick-remove-overrides-in-dev-mode -> origin/cherry-pick-remove-overrides-in-dev-mode
987:  * [new branch]            cherry-pick-util            -> origin/cherry-pick-util
988:  * [new branch]            cherry-pick-webhooks        -> origin/cherry-pick-webhooks
989:  * [new branch]            cherrypick-v4.85.0-version-bump-into-main -> origin/cherrypick-v4.85.0-version-bump-into-main
990:  * [new branch]            chore-UI-update-for-CSP     -> origin/chore-UI-update-for-CSP
991:  * [new branch]            chore-add-specific-yarn-version -> origin/chore-add-specific-yarn-version
992:  * [new branch]            chore-backend-api-patterns  -> origin/chore-backend-api-patterns
993:  * [new branch]            chore-change-error-message-custom-profile -> origin/chore-change-error-message-custom-profile
994:  * [new branch]            chore-cp-chage-status-code-turn-off-mdm -> origin/chore-cp-chage-status-code-turn-off-mdm
...

1186:  * [new branch]            edwardsb-vuln-processing-fix-sandcastle -> origin/edwardsb-vuln-processing-fix-sandcastle
1187:  * [new branch]            edwardsb-vuln-processing-volume-fix -> origin/edwardsb-vuln-processing-volume-fix
1188:  * [new branch]            edwardsb/deployment-guide-updates -> origin/edwardsb/deployment-guide-updates
1189:  * [new branch]            edwardsb/restrict_console_access -> origin/edwardsb/restrict_console_access
1190:  * [new branch]            elastic_rum                 -> origin/elastic_rum
1191:  * [new branch]            enable-jit-by-default       -> origin/enable-jit-by-default
1192:  * [new branch]            enable-test-go-automation-macos -> origin/enable-test-go-automation-macos
1193:  * [new branch]            enforce-firefox-doh         -> origin/enforce-firefox-doh
1194:  * [new branch]            enforce-firefox-windows     -> origin/enforce-firefox-windows
1195:  * [new branch]            enforce-ios-26.5-update-deadline-july-2026 -> origin/enforce-ios-26.5-update-deadline-july-2026
1196:  * [new branch]            enforce-iso27001-workstations -> origin/enforce-iso27001-workstations
1197:  * [new branch]            enforce-macos-15.5-update-deadline -> origin/enforce-macos-15.5-update-deadline
1198:  * [new branch]            enforce-macos-version-workstations -> origin/enforce-macos-version-workstations
1199:  * [new branch]            enroll-android-feature-guide -> origin/enroll-android-feature-guide
1200:  * [new branch]            ericswenson0-patch-1        -> origin/ericswenson0-patch-1
1201:  * [new branch]            error-counts                -> origin/error-counts
1202:  * [new branch]            errors-perf-testing         -> origin/errors-perf-testing
1203:  * [new branch]            es-reports                  -> origin/es-reports
...

1219:  * [new branch]            eugkuo-patch-6-slugs-FMA    -> origin/eugkuo-patch-6-slugs-FMA
1220:  * [new branch]            example-fleetctl-profiles   -> origin/example-fleetctl-profiles
1221:  * [new branch]            exp-mdbook-docs             -> origin/exp-mdbook-docs
1222:  * [new branch]            experiment-disable-some-deletes -> origin/experiment-disable-some-deletes
1223:  * [new branch]            experiment-hardcode-counters-to-zero -> origin/experiment-hardcode-counters-to-zero
1224:  * [new branch]            experiment-no-txs           -> origin/experiment-no-txs
1225:  * [new branch]            experiment-status-tooltip   -> origin/experiment-status-tooltip
1226:  * [new branch]            experiment-with-two-branches -> origin/experiment-with-two-branches
1227:  * [new branch]            experimental_moveitem       -> origin/experimental_moveitem
1228:  * [new branch]            experimient-no-counts       -> origin/experimient-no-counts
1229:  * [new branch]            expiredcertstool            -> origin/expiredcertstool
1230:  * [new branch]            express-vpn-win             -> origin/express-vpn-win
1231:  * [new branch]            extra-dep-logs              -> origin/extra-dep-logs
1232:  * [new branch]            f84ee4c5f4                  -> origin/f84ee4c5f4
1233:  * [new branch]            faf-doc-clarification       -> origin/faf-doc-clarification
1234:  * [new branch]            failing-test                -> origin/failing-test
1235:  * [new branch]            faq-updates-2026-06         -> origin/faq-updates-2026-06
...

1275:  * [new branch]            feature-hydrant-ca          -> origin/feature-hydrant-ca
1276:  * [new branch]            feature-idp-byod            -> origin/feature-idp-byod
1277:  * [new branch]            feature-orbit-find          -> origin/feature-orbit-find
1278:  * [new branch]            feature-prioritization      -> origin/feature-prioritization
1279:  * [new branch]            feature-v4.44.1-live-queries -> origin/feature-v4.44.1-live-queries
1280:  * [new branch]            feature-windows-mdm-policy-extraction -> origin/feature-windows-mdm-policy-extraction
1281:  * [new branch]            feature/add-blank-to-osquer-link -> origin/feature/add-blank-to-osquer-link
1282:  * [new branch]            feature/fleet-macos-password-sync -> origin/feature/fleet-macos-password-sync
1283:  * [new branch]            feature_14722-activity-feed-webhooks -> origin/feature_14722-activity-feed-webhooks
1284:  * [new branch]            feature_18115-crit-vuln-issues -> origin/feature_18115-crit-vuln-issues
1285:  * [new branch]            feature_19010-ipad-ios-lock-wipe-backend-changes -> origin/feature_19010-ipad-ios-lock-wipe-backend-changes
1286:  * [new branch]            feature_22078               -> origin/feature_22078
1287:  * [new branch]            fix                         -> origin/fix
1288:  * [new branch]            fix-35118-cis-win10-v4      -> origin/fix-35118-cis-win10-v4
1289:  * [new branch]            fix-4.84.4-k8s              -> origin/fix-4.84.4-k8s
1290:  * [new branch]            fix-40083-failed-install-retries -> origin/fix-40083-failed-install-retries
1291:  * [new branch]            fix-41290-vpp-added-status  -> origin/fix-41290-vpp-added-status
1292:  * [new branch]            fix-41337-save-env-secrets-dry-run -> origin/fix-41337-save-env-secrets-dry-run
1293:  * [new branch]            fix-43623-fma-patch-policy-gitops -> origin/fix-43623-fma-patch-policy-gitops
1294:  * [new branch]            fix-44199-embedded-app-bundles -> origin/fix-44199-embedded-app-bundles
1295:  * [new branch]            fix-44325-gitops-mode-tooltips -> origin/fix-44325-gitops-mode-tooltips
1296:  * [new branch]            fix-android-unenroll-activities -> origin/fix-android-unenroll-activities
1297:  * [new branch]            fix-blockquotes-google-groups -> origin/fix-blockquotes-google-groups
1298:  * [new branch]            fix-ca-verdict-spoof-16386  -> origin/fix-ca-verdict-spoof-16386
1299:  * [new branch]            fix-case-in-deploy-config-docs -> origin/fix-case-in-deploy-config-docs
1300:  * [new branch]            fix-cert-details-modal      -> origin/fix-cert-details-modal
1301:  * [new branch]            fix-checkerboard-scroll-to-right -> origin/fix-checkerboard-scroll-to-right
1302:  * [new branch]            fix-checkerboard-tooltip-nowrap -> origin/fix-checkerboard-tooltip-nowrap
1303:  * [new branch]            fix-cloudflare-warp-fma-output-json -> origin/fix-cloudflare-warp-fma-output-json
1304:  * [new branch]            fix-codeql-ci-error         -> origin/fix-codeql-ci-error
1305:  * [new branch]            fix-colima                  -> origin/fix-colima
1306:  * [new branch]            fix-color-for-mobile-sticky-nav -> origin/fix-color-for-mobile-sticky-nav
1307:  * [new branch]            fix-conditional-access-observer-authz -> origin/fix-conditional-access-observer-authz
1308:  * [new branch]            fix-conflict-in-feature_19010-ipad-ios-lock-wipe -> origin/fix-conflict-in-feature_19010-ipad-ios-lock-wipe
1309:  * [new branch]            fix-contrib-docs            -> origin/fix-contrib-docs
1310:  * [new branch]            fix-cve-2026-2792-firefox-esr -> origin/fix-cve-2026-2792-firefox-esr
1311:  * [new branch]            fix-cve-validate-enrichment-canary -> origin/fix-cve-validate-enrichment-canary
1312:  * [new branch]            fix-docker-cleanup-quay-nonfatal -> origin/fix-docker-cleanup-quay-nonfatal
1313:  * [new branch]            fix-docker-publish          -> origin/fix-docker-publish
1314:  * [new branch]            fix-dogfood-workstation     -> origin/fix-dogfood-workstation
1315:  * [new branch]            fix-embedded-bundle-titles-44199 -> origin/fix-embedded-bundle-titles-44199
1316:  * [new branch]            fix-firefox-cve-2026-2792   -> origin/fix-firefox-cve-2026-2792
1317:  * [new branch]            fix-firefox-fma-conflict-error-msg -> origin/fix-firefox-fma-conflict-error-msg
1318:  * [new branch]            fix-flakey-orbit-test       -> origin/fix-flakey-orbit-test
...

1325:  * [new branch]            fix-instability-ubuntu-latest -> origin/fix-instability-ubuntu-latest
1326:  * [new branch]            fix-ios-ipados-enrollment-label-42721 -> origin/fix-ios-ipados-enrollment-label-42721
1327:  * [new branch]            fix-list-sw-permissions     -> origin/fix-list-sw-permissions
1328:  * [new branch]            fix-mdm-enrolled-webhook    -> origin/fix-mdm-enrolled-webhook
1329:  * [new branch]            fix-mdm-redirect            -> origin/fix-mdm-redirect
1330:  * [new branch]            fix-mdm-url-truncation      -> origin/fix-mdm-url-truncation
1331:  * [new branch]            fix-missing-test-schema-update -> origin/fix-missing-test-schema-update
1332:  * [new branch]            fix-modernize               -> origin/fix-modernize
1333:  * [new branch]            fix-no-space-left-on-device-failure -> origin/fix-no-space-left-on-device-failure
1334:  * [new branch]            fix-notarization            -> origin/fix-notarization
1335:  * [new branch]            fix-orbit-notarization      -> origin/fix-orbit-notarization
1336:  * [new branch]            fix-orbit-nudge-test-mdm-connection-fidelity -> origin/fix-orbit-nudge-test-mdm-connection-fidelity
1337:  * [new branch]            fix-os-settings-name-col-truncation -> origin/fix-os-settings-name-col-truncation
1338:  * [new branch]            fix-os-settings-underline-descender-clip -> origin/fix-os-settings-underline-descender-clip
1339:  * [new branch]            fix-pricing-more-info-icon-documentationurl -> origin/fix-pricing-more-info-icon-documentationurl
1340:  * [new branch]            fix-receive-from-github-error -> origin/fix-receive-from-github-error
1341:  * [new branch]            fix-sandbox-local           -> origin/fix-sandbox-local
...

1355:  * [new branch]            fix-ui-typo-fleet-maintained-empty -> origin/fix-ui-typo-fleet-maintained-empty
1356:  * [new branch]            fix-vpp-edit-fleet-desktop-message -> origin/fix-vpp-edit-fleet-desktop-message
1357:  * [new branch]            fix-win-os-version          -> origin/fix-win-os-version
1358:  * [new branch]            fix_14825                   -> origin/fix_14825
1359:  * [new branch]            fixes-on-minor-fleet-v4.54.0 -> origin/fixes-on-minor-fleet-v4.54.0
1360:  * [new branch]            fixes-plus-4.35.1           -> origin/fixes-plus-4.35.1
1361:  * [new branch]            flaky-tests-nov-6           -> origin/flaky-tests-nov-6
1362:  * [new branch]            fleet-desktop-linux-browser -> origin/fleet-desktop-linux-browser
1363:  * [new branch]            fleet-desktop-version       -> origin/fleet-desktop-version
1364:  * [new branch]            fleet-mcp-inventory-tools   -> origin/fleet-mcp-inventory-tools
1365:  * [new branch]            fleet-mdm-server-url        -> origin/fleet-mdm-server-url
1366:  * [new branch]            fleet-multiple-abm-vpp-proposal -> origin/fleet-multiple-abm-vpp-proposal
1367:  * [new branch]            fleet-premium-users-usage-statistics -> origin/fleet-premium-users-usage-statistics
1368:  * [new branch]            fleet-release-infra         -> origin/fleet-release-infra
1369:  * [new branch]            fleet-server-config-1817    -> origin/fleet-server-config-1817
1370:  * [new branch]            fleet-server-log-request-errors -> origin/fleet-server-log-request-errors
1371:  * [new branch]            fleet-ship-rebuild          -> origin/fleet-ship-rebuild
...

2369:  * [new branch]            hotfix-failing-tests        -> origin/hotfix-failing-tests
2370:  * [new branch]            hotfix-query-update         -> origin/hotfix-query-update
2371:  * [new branch]            hotfix-revert-sofa-tables   -> origin/hotfix-revert-sofa-tables
2372:  * [new branch]            hotfix-v4.67.2-migration    -> origin/hotfix-v4.67.2-migration
2373:  * [new branch]            hotfix-v4.76.1              -> origin/hotfix-v4.76.1
2374:  * [new branch]            hover-gravatar              -> origin/hover-gravatar
2375:  * [new branch]            hughestaylor-patch-1        -> origin/hughestaylor-patch-1
2376:  * [new branch]            hughestaylor-patch-1-1      -> origin/hughestaylor-patch-1-1
2377:  * [new branch]            ignore-fleetctl-vulnerabilities -> origin/ignore-fleetctl-vulnerabilities
2378:  * [new branch]            improve-flakey-test         -> origin/improve-flakey-test
2379:  * [new branch]            improve-prometheus-metrics  -> origin/improve-prometheus-metrics
2380:  * [new branch]            improve-settings-subnav     -> origin/improve-settings-subnav
2381:  * [new branch]            include-mnt-in-gads-metric  -> origin/include-mnt-in-gads-metric
2382:  * [new branch]            increase-goreleaser-timeout-to-60m -> origin/increase-goreleaser-timeout-to-60m
2383:  * [new branch]            ingress-gateway-support     -> origin/ingress-gateway-support
2384:  * [new branch]            insert-software-installers-retry-error -> origin/insert-software-installers-retry-error
2385:  * [new branch]            install-all-recently-installed -> origin/install-all-recently-installed
...

2391:  * [new branch]            ireedy-patch-2              -> origin/ireedy-patch-2
2392:  * [new branch]            ireedy-patch-3              -> origin/ireedy-patch-3
2393:  * [new branch]            irena-deebradelo            -> origin/irena-deebradelo
2394:  * [new branch]            irena-handbook-edit         -> origin/irena-handbook-edit
2395:  * [new branch]            irena-test-with-john        -> origin/irena-test-with-john
2396:  * [new branch]            irenareedy-event-process    -> origin/irenareedy-event-process
2397:  * [new branch]            irenareedy-patch-1          -> origin/irenareedy-patch-1
2398:  * [new branch]            irenareedy-patch-2          -> origin/irenareedy-patch-2
2399:  * [new branch]            irenareedy-patch-4          -> origin/irenareedy-patch-4
2400:  * [new branch]            irenareedy-thumbtack-case-study -> origin/irenareedy-thumbtack-case-study
2401:  * [new branch]            iso-27001-compliance        -> origin/iso-27001-compliance
2402:  * [new branch]            iso42001-ai-discovery-inventory -> origin/iso42001-ai-discovery-inventory
2403:  * [new branch]            issue-11545-my-device-dep-modal -> origin/issue-11545-my-device-dep-modal
2404:  * [new branch]            issue-2716-specify-query-platforms -> origin/issue-2716-specify-query-platforms
2405:  * [new branch]            issue-3271-rate-limit-distributed-writes -> origin/issue-3271-rate-limit-distributed-writes
2406:  * [new branch]            issue-4361-mail-change-should-error -> origin/issue-4361-mail-change-should-error
2407:  * [new branch]            issue-conf-1968-delete-uninstalled-software-from-main -> origin/issue-conf-1968-delete-uninstalled-software-from-main
...

2613:  * [new branch]            melpike-api-default-fleet-windows-41787 -> origin/melpike-api-default-fleet-windows-41787
2614:  * [new branch]            melpike-api-device-url-43895 -> origin/melpike-api-device-url-43895
2615:  * [new branch]            melpike-api-minimum-version-39085 -> origin/melpike-api-minimum-version-39085
2616:  * [new branch]            melpike-api-py-script-41470 -> origin/melpike-api-py-script-41470
2617:  * [new branch]            melpike-api-windows-managed-account-43488 -> origin/melpike-api-windows-managed-account-43488
2618:  * [new branch]            melpike-audit-log-account-provisioning-45524 -> origin/melpike-audit-log-account-provisioning-45524
2619:  * [new branch]            melpike-audit-log-mdm-cmd-45021 -> origin/melpike-audit-log-mdm-cmd-45021
2620:  * [new branch]            melpike-audit-recovery-lock-password-rotate -> origin/melpike-audit-recovery-lock-password-rotate
2621:  * [new branch]            melpike-byod-wipe-lock-23242 -> origin/melpike-byod-wipe-lock-23242
2622:  * [new branch]            melpike-byod-wipe-lock-23242-1 -> origin/melpike-byod-wipe-lock-23242-1
2623:  * [new branch]            melpike-byod-wipe-lock-api-23242 -> origin/melpike-byod-wipe-lock-api-23242
2624:  * [new branch]            melpike-byod-wipe-lock-yaml-23242 -> origin/melpike-byod-wipe-lock-yaml-23242
2625:  * [new branch]            melpike-combine-guides-30674 -> origin/melpike-combine-guides-30674
2626:  * [new branch]            melpike-create-managed-local-account-guide-37141 -> origin/melpike-create-managed-local-account-guide-37141
2627:  * [new branch]            melpike-default-fleet-windows-41787 -> origin/melpike-default-fleet-windows-41787
2628:  * [new branch]            melpike-dep-error-messaging-43916 -> origin/melpike-dep-error-messaging-43916
2629:  * [new branch]            melpike-doc-deploy-sw-41470 -> origin/melpike-doc-deploy-sw-41470
...

2774:  * [new branch]            mna-doc-change-api-structure -> origin/mna-doc-change-api-structure
2775:  * [new branch]            mna-experiment-macos-profiles-uuid -> origin/mna-experiment-macos-profiles-uuid
2776:  * [new branch]            mna-fix-22558-windows-installer-stuck-pending -> origin/mna-fix-22558-windows-installer-stuck-pending
2777:  * [new branch]            mna-fix-duplicate-lock-unlock-activity -> origin/mna-fix-duplicate-lock-unlock-activity
2778:  * [new branch]            mna-fix-failing-tests       -> origin/mna-fix-failing-tests
2779:  * [new branch]            mna-fix-flaky-integration-test -> origin/mna-fix-flaky-integration-test
2780:  * [new branch]            mna-fix-oom-fleetctl-test   -> origin/mna-fix-oom-fleetctl-test
2781:  * [new branch]            mna-loadtest-enroll-host-limit -> origin/mna-loadtest-enroll-host-limit
2782:  * [new branch]            mna-orbit-node-key          -> origin/mna-orbit-node-key
2783:  * [new branch]            mna-revert-change-to-autogenerated-activities-doc -> origin/mna-revert-change-to-autogenerated-activities-doc
2784:  * [new branch]            mna-temp-osquery-perf-loadtest -> origin/mna-temp-osquery-perf-loadtest
2785:  * [new branch]            mna11997                    -> origin/mna11997
2786:  * [new branch]            mock-associate-assets-endpoint -> origin/mock-associate-assets-endpoint
2787:  * [new branch]            monitoring-test             -> origin/monitoring-test
2788:  * [new branch]            more-conditional-access-api-updates -> origin/more-conditional-access-api-updates
2789:  * [new branch]            more-fd-errors              -> origin/more-fd-errors
2790:  * [new branch]            move-conditional-access-script-to-testing-qa -> origin/move-conditional-access-script-to-testing-qa
...

3358:  * [new branch]            sgress454/34259-end-user-auth-setup-backend -> origin/sgress454/34259-end-user-auth-setup-backend
3359:  * [new branch]            sgress454/34528-end-user-auth-setup-agent -> origin/sgress454/34528-end-user-auth-setup-agent
3360:  * [new branch]            sgress454/35376             -> origin/sgress454/35376
3361:  * [new branch]            sgress454/35452             -> origin/sgress454/35452
3362:  * [new branch]            sgress454/37127-open-macos-end-user-auth-window -> origin/sgress454/37127-open-macos-end-user-auth-window
3363:  * [new branch]            sgress454/38063-skeleton-server -> origin/sgress454/38063-skeleton-server
3364:  * [new branch]            sgress454/39344-rename-teams-to-fleet-all-changes -> origin/sgress454/39344-rename-teams-to-fleet-all-changes
3365:  * [new branch]            sgress454/39344-rename-teams-to-fleet-api-changes -> origin/sgress454/39344-rename-teams-to-fleet-api-changes
3366:  * [new branch]            sgress454/40642-update-jit-saml-prefix -> origin/sgress454/40642-update-jit-saml-prefix
3367:  * [new branch]            sgress454/43482-re-pin      -> origin/sgress454/43482-re-pin
3368:  * [new branch]            sgress454/44077-disable-datasets-backend -> origin/sgress454/44077-disable-datasets-backend
3369:  * [new branch]            sgress454/44077-disable-datasets-docs -> origin/sgress454/44077-disable-datasets-docs
3370:  * [new branch]            sgress454/44077-disable-datasets-frontend -> origin/sgress454/44077-disable-datasets-frontend
3371:  * [new branch]            sgress454/45290-drop-mobile-from-charting -> origin/sgress454/45290-drop-mobile-from-charting
3372:  * [new branch]            sgress454/add-vex-for-cve-2026-23517 -> origin/sgress454/add-vex-for-cve-2026-23517
3373:  * [new branch]            sgress454/adr-for-error-codes -> origin/sgress454/adr-for-error-codes
3374:  * [new branch]            sgress454/adr-refactor-list-hosts -> origin/sgress454/adr-refactor-list-hosts
...

3426:  * [new branch]            software-titles-loadtest-2  -> origin/software-titles-loadtest-2
3427:  * [new branch]            solarized-theme             -> origin/solarized-theme
3428:  * [new branch]            solutions-folder            -> origin/solutions-folder
3429:  * [new branch]            sort-seen-hosts-before-inserting -> origin/sort-seen-hosts-before-inserting
3430:  * [new branch]            spalmesano0-patch-2         -> origin/spalmesano0-patch-2
3431:  * [new branch]            spike-fleet-lint-plugin     -> origin/spike-fleet-lint-plugin
3432:  * [new branch]            spike-ui-permissions-pattern -> origin/spike-ui-permissions-pattern
3433:  * [new branch]            spokanemac-add-passcode-ddm-profile -> origin/spokanemac-add-passcode-ddm-profile
3434:  * [new branch]            spokanemac-dogfood-additional-apps -> origin/spokanemac-dogfood-additional-apps
3435:  * [new branch]            spokanemac-handbook-release-article -> origin/spokanemac-handbook-release-article
3436:  * [new branch]            spokanemac-macdevops-conference-post -> origin/spokanemac-macdevops-conference-post
3437:  * [new branch]            spokanemac-meetup-template  -> origin/spokanemac-meetup-template
3438:  * [new branch]            spokanemac-migrating-fleetdm-from-dogfood-to-terraform-on-aws -> origin/spokanemac-migrating-fleetdm-from-dogfood-to-terraform-on-aws
3439:  * [new branch]            spokanemac-release-article-issue-template -> origin/spokanemac-release-article-issue-template
3440:  * [new branch]            step4-improvements          -> origin/step4-improvements
3441:  * [new branch]            store-query-execution-and-ingestion-errors -> origin/store-query-execution-and-ingestion-errors
3442:  * [new branch]            support-breaking-osquery-downgrades -> origin/support-breaking-osquery-downgrades
...

3510:  * [new branch]            ui-self-service-sg-5-21     -> origin/ui-self-service-sg-5-21
3511:  * [new branch]            unauth-installers           -> origin/unauth-installers
3512:  * [new branch]            uniform-brex-spending-limit -> origin/uniform-brex-spending-limit
3513:  * [new branch]            untx-software               -> origin/untx-software
3514:  * [new branch]            upcoming-activities-mdm-commands -> origin/upcoming-activities-mdm-commands
3515:  * [new branch]            upcoming-commands           -> origin/upcoming-commands
3516:  * [new branch]            update-1password-and-safari-policy-versions-2601200025 -> origin/update-1password-and-safari-policy-versions-2601200025
3517:  * [new branch]            update-1password-and-safari-policy-versions-2601200610 -> origin/update-1password-and-safari-policy-versions-2601200610
3518:  * [new branch]            update-1password-and-safari-policy-versions-2602261818 -> origin/update-1password-and-safari-policy-versions-2602261818
3519:  * [new branch]            update-1password-and-safari-policy-versions-2603101819 -> origin/update-1password-and-safari-policy-versions-2603101819
3520:  * [new branch]            update-1password-and-safari-policy-versions-2604080037 -> origin/update-1password-and-safari-policy-versions-2604080037
3521:  * [new branch]            update-1password-and-safari-policy-versions-2604080637 -> origin/update-1password-and-safari-policy-versions-2604080637
3522:  * [new branch]            update-Cloudflare-WARP-FMA-with-UpgradeCode -> origin/update-Cloudflare-WARP-FMA-with-UpgradeCode
3523:  * [new branch]            update-article-format       -> origin/update-article-format
3524:  * [new branch]            update-bug-report-template  -> origin/update-bug-report-template
3525:  * [new branch]            update-build-script-error-message -> origin/update-build-script-error-message
3526:  * [new branch]            update-cancel-and-done-links -> origin/update-cancel-and-done-links
...

3608:  * [new branch]            update-spec-story-skill     -> origin/update-spec-story-skill
3609:  * [new branch]            update-testing-qa-apps-2511191525 -> origin/update-testing-qa-apps-2511191525
3610:  * [new branch]            update-tuf-keys             -> origin/update-tuf-keys
3611:  * [new branch]            update-tuf-md               -> origin/update-tuf-md
3612:  * [new branch]            update-usage-statistics-mobile-devices -> origin/update-usage-statistics-mobile-devices
3613:  * [new branch]            update-user-password-length-validation-test -> origin/update-user-password-length-validation-test
3614:  * [new branch]            update-vex-statements       -> origin/update-vex-statements
3615:  * [new branch]            update-why-this-way         -> origin/update-why-this-way
3616:  * [new branch]            upgrade-eslint              -> origin/upgrade-eslint
3617:  * [new branch]            upgrade-go                  -> origin/upgrade-go
3618:  * [new branch]            upgrade-typescript          -> origin/upgrade-typescript
3619:  * [new branch]            upload-msiexec-install-log  -> origin/upload-msiexec-install-log
3620:  * [new branch]            usage-stats-mobile-devices-count -> origin/usage-stats-mobile-devices-count
3621:  * [new branch]            use-dockerhub-creds         -> origin/use-dockerhub-creds
3622:  * [new branch]            use-software-name-helper    -> origin/use-software-name-helper
3623:  * [new branch]            user-channel-error          -> origin/user-channel-error
3624:  * [new branch]            users-table-experiment      -> origin/users-table-experiment
...

3651:  * [new branch]            victor/36202-bootstrap-enroll -> origin/victor/36202-bootstrap-enroll
3652:  * [new branch]            victor/36452-activity-bounded-context -> origin/victor/36452-activity-bounded-context
3653:  * [new branch]            victor/36453-activity-scaffold -> origin/victor/36453-activity-scaffold
3654:  * [new branch]            victor/36793-logging        -> origin/victor/36793-logging
3655:  * [new branch]            victor/37241-archtest       -> origin/victor/37241-archtest
3656:  * [new branch]            victor/37806-fleet-activities -> origin/victor/37806-fleet-activities
3657:  * [new branch]            victor/38607-otel-logs      -> origin/victor/38607-otel-logs
3658:  * [new branch]            victor/38889-slog-mysql     -> origin/victor/38889-slog-mysql
3659:  * [new branch]            victor/39370-emacs-false-positive -> origin/victor/39370-emacs-false-positive
3660:  * [new branch]            victor/41374-backout        -> origin/victor/41374-backout
3661:  * [new branch]            victor/42318-bitlocker-pin  -> origin/victor/42318-bitlocker-pin
3662:  * [new branch]            victor/42843-esp-tracking-reference -> origin/victor/42843-esp-tracking-reference
3663:  * [new branch]            victor/44599-unknown-nodekey-prob -> origin/victor/44599-unknown-nodekey-prob
3664:  * [new branch]            victor/45491-repro          -> origin/victor/45491-repro
3665:  * [new branch]            victor/46387-docs           -> origin/victor/46387-docs
3666:  * [new branch]            victor/46387-windows-mdm-enrollment-auth-error -> origin/victor/46387-windows-mdm-enrollment-auth-error
3667:  * [new branch]            victor/46387-windows-mdm-federated-discovery -> origin/victor/46387-windows-mdm-federated-discovery
...

3776:  * [new branch]            wesite-fix-sales-rituals    -> origin/wesite-fix-sales-rituals
3777:  * [new branch]            willmayhone88-patch-1       -> origin/willmayhone88-patch-1
3778:  * [new branch]            win-fma-deepl               -> origin/win-fma-deepl
3779:  * [new branch]            win-fma-evernote            -> origin/win-fma-evernote
3780:  * [new branch]            win-fma-goland              -> origin/win-fma-goland
3781:  * [new branch]            win-fma-testing             -> origin/win-fma-testing
3782:  * [new branch]            win-fma-vnc-apps            -> origin/win-fma-vnc-apps
3783:  * [new branch]            win-mdm-loadtest            -> origin/win-mdm-loadtest
3784:  * [new branch]            windows-baseline            -> origin/windows-baseline
3785:  * [new branch]            windows-end-user-experience-labels -> origin/windows-end-user-experience-labels
3786:  * [new branch]            windows-firefox-doh-script  -> origin/windows-firefox-doh-script
3787:  * [new branch]            windows-mdm-autopilot       -> origin/windows-mdm-autopilot
3788:  * [new branch]            windows-mdm-c-poc           -> origin/windows-mdm-c-poc
3789:  * [new branch]            windows-mdm-docs-auto-enroll -> origin/windows-mdm-docs-auto-enroll
3790:  * [new branch]            windows-mdm-load-test       -> origin/windows-mdm-load-test
3791:  * [new branch]            windows_enable_and_configure-error-message -> origin/windows_enable_and_configure-error-message
3792:  * [new branch]            workstations-to-use-edge-channels -> origin/workstations-to-use-edge-channels
...

3803:  * [new branch]            zayhanlon-patch-1           -> origin/zayhanlon-patch-1
3804:  * [new branch]            zenity-execuser             -> origin/zenity-execuser
3805:  * [new branch]            zhumo-patch-1               -> origin/zhumo-patch-1
3806:  * [new branch]            zhumo-patch-2               -> origin/zhumo-patch-2
3807:  * [new branch]            zhumo-patch-3               -> origin/zhumo-patch-3
3808:  * [new branch]            zhumo-patch-4               -> origin/zhumo-patch-4
3809:  * [new branch]            zhumo-patch-5               -> origin/zhumo-patch-5
3810:  * [new branch]            zhumo-patch-6               -> origin/zhumo-patch-6
3811:  * [new branch]            zhumo-patch-7               -> origin/zhumo-patch-7
3812:  * [new branch]            zwass-actions-reminders     -> origin/zwass-actions-reminders
3813:  * [new branch]            zwass-improve-macos-cpe     -> origin/zwass-improve-macos-cpe
3814:  * [new branch]            zwass-patch-1               -> origin/zwass-patch-1
3815:  * [new branch]            zwass-patch-2               -> origin/zwass-patch-2
3816:  * [new branch]            zwinnerman-fixup            -> origin/zwinnerman-fixup
3817:  * [new branch]            zwinnerman-livequery-tracing -> origin/zwinnerman-livequery-tracing
3818:  * [new branch]            zwinnerman-redis-error-handling -> origin/zwinnerman-redis-error-handling
3819:  * [new branch]            zwinnerman-test             -> origin/zwinnerman-test
...

4537:  check-latest: false
4538:  token: ***
4539:  cache: true
4540:  env:
4541:  GH_TOKEN: ***
4542:  LOG_LEVEL: info
4543:  ##[endgroup]
4544:  Setup go version spec 1.26.4
4545:  Found in cache @ /Users/runner/hostedtoolcache/go/1.26.4/arm64
4546:  Added go to the path
4547:  Successfully set up Go version 1.26.4
4548:  [command]/Users/runner/hostedtoolcache/go/1.26.4/arm64/bin/go env GOMODCACHE
4549:  [command]/Users/runner/hostedtoolcache/go/1.26.4/arm64/bin/go env GOCACHE
4550:  /Users/runner/go/pkg/mod
4551:  /Users/runner/Library/Caches/go-build
4552:  ##[warning]Restore cache failed: Dependencies file is not found in /Users/runner/work/fleet/fleet. Supported file pattern: go.mod
4553:  go version go1.26.4 darwin/arm64
...

4632:  - codex-app/darwin
4633:  - discord/darwin
4634:  - discord/windows
4635:  - docker-desktop/darwin
4636:  - drawio/windows
4637:  - nextcloud/darwin
4638:  - notion-calendar/darwin
4639:  - novabench/darwin
4640:  - reqable/darwin
4641:  - reqable/windows
4642:  - rocket-chat/darwin
4643:  - shift/darwin
4644:  - shift/windows
4645:  - spokenly/darwin
4646:  - wins/darwin
4647:  ##[group]Run # Default to no changes if detection step failed or didn't set output
4648:  �[36;1m# Default to no changes if detection step failed or didn't set output�[0m
4649:  �[36;1mHAS_CHANGES="true"�[0m
...

4837:  go: downloading github.com/getsentry/sentry-go v0.18.0
4838:  go: downloading go.elastic.co/apm/v2 v2.7.0
4839:  go: downloading go.opentelemetry.io/otel v1.43.0
4840:  go: downloading go.opentelemetry.io/otel/metric v1.43.0
4841:  go: downloading go.opentelemetry.io/otel/trace v1.43.0
4842:  go: downloading github.com/mattn/go-colorable v0.1.13
4843:  go: downloading go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0
4844:  go: downloading golang.org/x/oauth2 v0.35.0
4845:  go: downloading github.com/aws/aws-sdk-go-v2/config v1.32.12
4846:  go: downloading github.com/aws/aws-sdk-go-v2 v1.41.5
4847:  go: downloading github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.35.8
4848:  go: downloading github.com/spf13/cobra v1.9.1
4849:  go: downloading github.com/spf13/viper v1.20.1
4850:  go: downloading github.com/go-kit/kit v0.12.0
4851:  go: downloading github.com/smallstep/pkcs7 v0.0.0-20240723090913-5e2c6a136dfa
4852:  go: downloading github.com/hashicorp/go-multierror v1.1.1
4853:  go: downloading github.com/micromdm/plist v0.2.3-0.20260123201933-667adaf87d87
...

4855:  go: downloading github.com/golang-jwt/jwt/v4 v4.5.2
4856:  go: downloading github.com/WatchBeam/clock v0.0.0-20170901150240-b08e6b4da7ea
4857:  go: downloading github.com/edsrzf/mmap-go v1.1.0
4858:  go: downloading github.com/secDre4mer/pkcs7 v0.0.0-20240322103146-665324a4461d
4859:  go: downloading github.com/mattn/go-isatty v0.0.20
4860:  go: downloading go.opentelemetry.io/otel/sdk v1.43.0
4861:  go: downloading github.com/andygrunwald/go-jira v1.16.0
4862:  go: downloading github.com/cenkalti/backoff/v4 v4.3.0
4863:  go: downloading github.com/cenkalti/backoff v2.2.1+incompatible
4864:  go: downloading github.com/nukosuke/go-zendesk v0.13.1
4865:  go: downloading github.com/igm/sockjs-go/v3 v3.0.2
4866:  go: downloading gopkg.in/yaml.v2 v2.4.0
4867:  go: downloading github.com/oschwald/maxminddb-golang v1.10.0
4868:  go: downloading golang.org/x/sys v0.45.0
4869:  go: downloading github.com/elastic/go-sysinfo v1.11.2
4870:  go: downloading github.com/pkg/errors v0.9.1
4871:  go: downloading go.elastic.co/fastjson v1.1.0
...

4927:  go: downloading cloud.google.com/go/iam v1.5.3
4928:  go: downloading go.opencensus.io v0.24.0
4929:  go: downloading golang.org/x/sync v0.21.0
4930:  go: downloading google.golang.org/grpc v1.79.3
4931:  go: downloading google.golang.org/protobuf v1.36.11
4932:  go: downloading github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.8
4933:  go: downloading github.com/micromdm/nanolib v0.2.0
4934:  go: downloading github.com/nats-io/nkeys v0.4.15
4935:  go: downloading github.com/nats-io/nuid v1.0.1
4936:  go: downloading go.mozilla.org/pkcs7 v0.0.0-20210826202110-33d05740a352
4937:  go: downloading cloud.google.com/go/auth v0.18.2
4938:  go: downloading cloud.google.com/go/auth/oauth2adapt v0.2.8
4939:  go: downloading cloud.google.com/go/compute/metadata v0.9.0
4940:  go: downloading github.com/google/s2a-go v0.1.9
4941:  go: downloading github.com/go-logfmt/logfmt v0.5.1
4942:  go: downloading github.com/joeshaw/multierror v0.0.0-20140124173710-69b34d4ec901
4943:  go: downloading cloud.google.com/go/pubsub/v2 v2.0.0
4944:  go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20260319201613-d00831a3d3e7
4945:  go: downloading google.golang.org/genproto v0.0.0-20260128011058-8636f8732409
4946:  go: downloading github.com/googleapis/enterprise-certificate-proxy v0.3.12
4947:  go: downloading google.golang.org/genproto/googleapis/api v0.0.0-20260203192932-546029d2fa20
4948:  go: downloading go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.61.0
4949:  time=level=INFO msg="GOOS environment variable is not set. Using system detected: 'darwin'"
4950:  time=level=INFO msg="INSTALLATION_SEARCH_DIRECTORY environment variable is not set. Using default: '/Applications'"
4951:  time=level=INFO msg="Validating app: Beyond Compare (beyond-compare/darwin)"
4952:  time=level=INFO msg=Downloading...
4953:  time=level=INFO msg="Executing install script..." app="Beyond Compare"
4954:  time=level=INFO msg="New application detected at: /Applications/Beyond Compare.app" app="Beyond Compare"
4955:  time=level=INFO msg="Forcing LaunchServices refresh for: '/Applications/Beyond Compare.app'" app="Beyond Compare"
4956:  time=level=INFO msg="Attempting to remove quarantine for: '/Applications/Beyond Compare.app'" app="Beyond Compare"
4957:  time=level=INFO msg="Quarantine output error: checking quarantine status: exit status 1" app="Beyond Compare"
4958:  time=level=INFO msg="Quarantine status: Quarantine status: 'xattr: /Applications/Beyond Compare.app: No such xattr: com.apple.quarantine'" app="Beyond Compare"
4959:  time=level=INFO msg="Spctl output error: <nil>" app="Beyond Compare"
4960:  time=level=INFO msg="spctl status: spctl status: '/Applications/Beyond Compare.app: accepted\nsource=Notarized Developer ID'" app="Beyond Compare"
4961:  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"
4962:  time=level=INFO msg="Looking for app: Beyond Compare, version: 5.2.3.32296" app="Beyond Compare"
4963:  time=level=INFO msg="Found app: 'Beyond Compare' at /Applications/Beyond Compare.app, Version: 5.2.3.32296, Bundled Version: 5020.32.29" app="Beyond Compare"
4964:  time=level=INFO msg="Executing uninstall script for app..." app="Beyond Compare"
4965:  time=level=INFO msg="Looking for app: Beyond Compare, version: 5.2.3.32296" app="Beyond Compare"
4966:  time=level=INFO msg="All checks passed for app: Beyond Compare (beyond-compare/darwin)"
4967:  time=level=INFO msg="Validating app: Codex (codex-app/darwin)"
4968:  time=level=INFO msg=Downloading...
4969:  time=level=INFO msg="Executing install script..." app=Codex
4970:  time=level=INFO msg="New application detected at: /Applications/Codex.app" app=Codex
4971:  time=level=INFO msg="Forcing LaunchServices refresh for: '/Applications/Codex.app'" app=Codex
4972:  time=level=INFO msg="Attempting to remove quarantine for: '/Applications/Codex.app'" app=Codex
4973:  time=level=INFO msg="Quarantine output error: checking quarantine status: exit status 1" app=Codex
4974:  time=level=INFO msg="Quarantine status: Quarantine status: 'xattr: /Applications/Codex.app: No such xattr: com.apple.quarantine'" app=Codex
4975:  time=level=INFO msg="Spctl output error: <nil>" app=Codex
4976:  time=level=INFO msg="spctl status: spctl status: '/Applications/Codex.app: accepted\nsource=Notarized Developer ID'" app=Codex
4977:  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=Codex
4978:  time=level=INFO msg="Looking for app: Codex, version: 26.623.70822" app=Codex
4979:  time=level=INFO msg="Found app: 'Codex' at /Applications/Codex.app, Version: 26.623.70822, Bundled Version: 4559" app=Codex
4980:  time=level=INFO msg="Executing uninstall script for app..." app=Codex
4981:  time=level=INFO msg="Looking for app: Codex, version: 26.623.70822" app=Codex
4982:  time=level=INFO msg="All checks passed for app: Codex (codex-app/darwin)"
4983:  time=level=INFO msg="Validating app: Discord (discord/darwin)"
4984:  time=level=INFO msg=Downloading...
4985:  time=level=INFO msg="Executing install script..." app=Discord
4986:  time=level=INFO msg="New application detected at: /Applications/Discord.app" app=Discord
4987:  time=level=INFO msg="Forcing LaunchServices refresh for: '/Applications/Discord.app'" app=Discord
4988:  time=level=INFO msg="Attempting to remove quarantine for: '/Applications/Discord.app'" app=Discord
4989:  time=level=INFO msg="Quarantine output error: checking quarantine status: exit status 1" app=Discord
4990:  time=level=INFO msg="Quarantine status: Quarantine status: 'xattr: /Applications/Discord.app: No such xattr: com.apple.quarantine'" app=Discord
4991:  time=level=INFO msg="Spctl output error: <nil>" app=Discord
4992:  time=level=INFO msg="spctl status: spctl status: '/Applications/Discord.app: accepted\nsource=Notarized Developer ID'" app=Discord
4993:  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=Discord
4994:  time=level=INFO msg="Looking for app: Discord, version: 0.0.397" app=Discord
4995:  time=level=INFO msg="Found app: 'Discord' at /Applications/Discord.app, Version: 0.0.397, Bundled Version: 0.0.397" app=Discord
4996:  time=level=INFO msg="Executing uninstall script for app..." app=Discord
4997:  time=level=INFO msg="Looking for app: Discord, version: 0.0.397" app=Discord
4998:  time=level=INFO msg="All checks passed for app: Discord (discord/darwin)"
4999:  time=level=INFO msg="Validating app: Docker Desktop (docker-desktop/darwin)"
5000:  time=level=INFO msg=Downloading...
5001:  time=level=INFO msg="Executing install script..." app="Docker Desktop"
5002:  time=level=INFO msg="New application detected at: /Applications/Docker.app" app="Docker Desktop"
5003:  time=level=INFO msg="Forcing LaunchServices refresh for: '/Applications/Docker.app'" app="Docker Desktop"
5004:  time=level=INFO msg="Attempting to remove quarantine for: '/Applications/Docker.app'" app="Docker Desktop"
5005:  time=level=INFO msg="Quarantine output error: checking quarantine status: exit status 1" app="Docker Desktop"
5006:  time=level=INFO msg="Quarantine status: Quarantine status: 'xattr: /Applications/Docker.app: No such xattr: com.apple.quarantine'" app="Docker Desktop"
5007:  time=level=INFO msg="Spctl output error: <nil>" app="Docker Desktop"
5008:  time=level=INFO msg="spctl status: spctl status: '/Applications/Docker.app: accepted\nsource=Notarized Developer ID'" app="Docker Desktop"
5009:  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="Docker Desktop"
5010:  time=level=INFO msg="Looking for app: Docker Desktop, version: 4.80.0" app="Docker Desktop"
5011:  time=level=INFO msg="Found app: 'Docker' at /Applications/Docker.app, Version: 4.80.0, Bundled Version: 232116" app="Docker Desktop"
5012:  time=level=INFO msg="Executing uninstall script for app..." app="Docker Desktop"
5013:  time=level=INFO msg="Looking for app: Docker Desktop, version: 4.80.0" app="Docker Desktop"
5014:  time=level=INFO msg="All checks passed for app: Docker Desktop (docker-desktop/darwin)"
5015:  time=level=INFO msg="Validating app: Nextcloud (nextcloud/darwin)"
5016:  time=level=INFO msg=Downloading...
5017:  time=level=INFO msg="Executing install script..." app=Nextcloud
5018:  time=level=INFO msg="New application detected at: /Applications/Nextcloud.app" app=Nextcloud
5019:  time=level=INFO msg="Forcing LaunchServices refresh for: '/Applications/Nextcloud.app'" app=Nextcloud
5020:  time=level=INFO msg="Attempting to remove quarantine for: '/Applications/Nextcloud.app'" app=Nextcloud
5021:  time=level=INFO msg="Quarantine output error: checking quarantine status: exit status 1" app=Nextcloud
5022:  time=level=INFO msg="Quarantine status: Quarantine status: 'xattr: /Applications/Nextcloud.app: No such xattr: com.apple.quarantine'" app=Nextcloud
5023:  time=level=INFO msg="Spctl output error: <nil>" app=Nextcloud
5024:  time=level=INFO msg="spctl status: spctl status: '/Applications/Nextcloud.app: accepted\nsource=Notarized Developer ID'" app=Nextcloud
5025:  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=Nextcloud
5026:  time=level=INFO msg="Looking for app: Nextcloud, version: 33.0.7" app=Nextcloud
5027:  time=level=INFO msg="Found app: 'QtWebEngineProcess' at /Applications/Nextcloud.app/Contents/Frameworks/QtWebEngineCore.framework/Versions/A/Helpers/QtWebEngineProcess.app, Version: , Bundled Version: " app=Nextcloud
5028:  time=level=INFO msg="Found app: 'Updater' at /Applications/Nextcloud.app/Contents/Frameworks/Sparkle.framework/Versions/B/Updater.app, Version: 2.9.1, Bundled Version: 2054" app=Nextcloud
5029:  time=level=INFO msg="Found app: 'Nextcloud' at /Applications/Nextcloud.app, Version: 33.0.7, Bundled Version: 33.0.7.0" app=Nextcloud
5030:  time=level=INFO msg="Executing uninstall script for app..." app=Nextcloud
5031:  time=level=INFO msg="Looking for app: Nextcloud, version: 33.0.7" app=Nextcloud
5032:  time=level=INFO msg="All checks passed for app: Nextcloud (nextcloud/darwin)"
5033:  time=level=INFO msg="Validating app: Notion Calendar (notion-calendar/darwin)"
5034:  time=level=INFO msg=Downloading...
5035:  time=level=INFO msg="Executing install script..." app="Notion Calendar"
5036:  time=level=INFO msg="New application detected at: /Applications/Notion Calendar.app" app="Notion Calendar"
5037:  time=level=INFO msg="Forcing LaunchServices refresh for: '/Applications/Notion Calendar.app'" app="Notion Calendar"
5038:  time=level=INFO msg="Attempting to remove quarantine for: '/Applications/Notion Calendar.app'" app="Notion Calendar"
5039:  time=level=INFO msg="Quarantine output error: checking quarantine status: exit status 1" app="Notion Calendar"
5040:  time=level=INFO msg="Quarantine status: Quarantine status: 'xattr: /Applications/Notion Calendar.app: No such xattr: com.apple.quarantine'" app="Notion Calendar"
5041:  time=level=INFO msg="Spctl output error: <nil>" app="Notion Calendar"
5042:  time=level=INFO msg="spctl status: spctl status: '/Applications/Notion Calendar.app: accepted\nsource=Notarized Developer ID'" app="Notion Calendar"
5043:  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 Calendar"
5044:  time=level=INFO msg="Looking for app: Notion Calendar, version: 1.138.0" app="Notion Calendar"
5045:  time=level=INFO msg="Found app: 'Notion Calendar' at /Applications/Notion Calendar.app, Version: 1.138.0, Bundled Version: 1.138.0" app="Notion Calendar"
5046:  time=level=INFO msg="Executing uninstall script for app..." app="Notion Calendar"
5047:  time=level=INFO msg="Looking for app: Notion Calendar, version: 1.138.0" app="Notion Calendar"
5048:  time=level=INFO msg="All checks passed for app: Notion Calendar (notion-calendar/darwin)"
5049:  time=level=INFO msg="Validating app: Novabench (novabench/darwin)"
5050:  time=level=INFO msg=Downloading...
5051:  time=level=INFO msg="Executing install script..." app=Novabench
5052:  time=level=INFO msg="New application detected at: /Applications/Novabench.app" app=Novabench
5053:  time=level=INFO msg="Forcing LaunchServices refresh for: '/Applications/Novabench.app'" app=Novabench
5054:  time=level=INFO msg="Attempting to remove quarantine for: '/Applications/Novabench.app'" app=Novabench
5055:  time=level=INFO msg="Quarantine output error: checking quarantine status: exit status 1" app=Novabench
5056:  time=level=INFO msg="Quarantine status: Quarantine status: 'xattr: /Applications/Novabench.app: No such xattr: com.apple.quarantine'" app=Novabench
5057:  time=level=INFO msg="Spctl output error: <nil>" app=Novabench
5058:  time=level=INFO msg="spctl status: spctl status: '/Applications/Novabench.app: accepted\nsource=Notarized Developer ID'" app=Novabench
5059:  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=Novabench
5060:  time=level=INFO msg="Looking for app: Novabench, version: 6.1.1" app=Novabench
5061:  time=level=INFO msg="Found app: 'Novabench' at /Applications/Novabench.app, Version: 6.1.1, Bundled Version: 6.1.1" app=Novabench
5062:  time=level=INFO msg="Executing uninstall script for app..." app=Novabench
5063:  time=level=INFO msg="Looking for app: Novabench, version: 6.1.1" app=Novabench
5064:  time=level=INFO msg="All checks passed for app: Novabench (novabench/darwin)"
5065:  time=level=INFO msg="Validating app: Reqable (reqable/darwin)"
5066:  time=level=INFO msg=Downloading...
5067:  time=level=INFO msg="Executing install script..." app=Reqable
5068:  time=level=INFO msg="New application detected at: /Applications/Reqable.app" app=Reqable
5069:  time=level=INFO msg="Forcing LaunchServices refresh for: '/Applications/Reqable.app'" app=Reqable
5070:  time=level=INFO msg="Attempting to remove quarantine for: '/Applications/Reqable.app'" app=Reqable
5071:  time=level=INFO msg="Quarantine output error: checking quarantine status: exit status 1" app=Reqable
5072:  time=level=INFO msg="Quarantine status: Quarantine status: 'xattr: /Applications/Reqable.app: No such xattr: com.apple.quarantine'" app=Reqable
5073:  time=level=INFO msg="Spctl output error: <nil>" app=Reqable
5074:  time=level=INFO msg="spctl status: spctl status: '/Applications/Reqable.app: accepted\nsource=Notarized Developer ID'" app=Reqable
5075:  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=Reqable
5076:  time=level=INFO msg="Looking for app: Reqable, version: 3.2.2" app=Reqable
5077:  time=level=INFO msg="Found app: 'Reqable' at /Applications/Reqable.app, Version: 3.2.2, Bundled Version: 200" app=Reqable
5078:  time=level=INFO msg="Executing uninstall script for app..." app=Reqable
5079:  time=level=INFO msg="Looking for app: Reqable, version: 3.2.2" app=Reqable
5080:  time=level=INFO msg="All checks passed for app: Reqable (reqable/darwin)"
5081:  time=level=INFO msg="Validating app: Rocket.Chat (rocket-chat/darwin)"
5082:  time=level=INFO msg=Downloading...
5083:  time=level=INFO msg="Executing install script..." app=Rocket.Chat
5084:  time=level=INFO msg="New application detected at: /Applications/Rocket.Chat.app" app=Rocket.Chat
5085:  time=level=INFO msg="Forcing LaunchServices refresh for: '/Applications/Rocket.Chat.app'" app=Rocket.Chat
5086:  time=level=INFO msg="Attempting to remove quarantine for: '/Applications/Rocket.Chat.app'" app=Rocket.Chat
5087:  time=level=INFO msg="Quarantine output error: checking quarantine status: exit status 1" app=Rocket.Chat
5088:  time=level=INFO msg="Quarantine status: Quarantine status: 'xattr: /Applications/Rocket.Chat.app: No such xattr: com.apple.quarantine'" app=Rocket.Chat
5089:  time=level=INFO msg="Spctl output error: <nil>" app=Rocket.Chat
5090:  time=level=INFO msg="spctl status: spctl status: '/Applications/Rocket.Chat.app: accepted\nsource=Notarized Developer ID'" app=Rocket.Chat
5091:  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=Rocket.Chat
5092:  time=level=INFO msg="Looking for app: Rocket.Chat, version: 4.15.0" app=Rocket.Chat
5093:  time=level=INFO msg="Found app: 'Rocket.Chat' at /Applications/Rocket.Chat.app, Version: 4.15.0, Bundled Version: 26060" app=Rocket.Chat
5094:  time=level=INFO msg="Executing uninstall script for app..." app=Rocket.Chat
5095:  time=level=INFO msg="Looking for app: Rocket.Chat, version: 4.15.0" app=Rocket.Chat
5096:  time=level=INFO msg="All checks passed for app: Rocket.Chat (rocket-chat/darwin)"
5097:  time=level=INFO msg="Validating app: Shift (shift/darwin)"
5098:  time=level=INFO msg=Downloading...
5099:  time=level=...

@github-actions

Copy link
Copy Markdown
Contributor

Closing in favor of #48464.

@github-actions github-actions Bot closed this Jun 30, 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