Update Fleet-maintained apps - #45562
Conversation
Generated automatically with cmd/maintained-apps.
There was a problem hiding this comment.
Claude Code Review
This repository is configured for manual code reviews. Comment @claude review to trigger a review and subscribe this PR to future pushes, or @claude review once for a one-time review.
Tip: disable this comment in your organization's Code Review settings.
Script Diff Resultsee/maintained-apps/outputs/arc/darwin.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/linear/darwin.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/okta-verify/darwin.json=== Install // 0300cffe -> 9061389b ===
--- /tmp/old.wjKr7M 2026-05-15 00:23:36.803163217 +0000
+++ /tmp/new.FP4gnh 2026-05-15 00:23:36.803163217 +0000
@@ -96,5 +96,5 @@
# install pkg files
quit_and_track_application 'com.okta.mobile'
-sudo installer -pkg "$TMPDIR/OktaVerify-9.61.1-6117-b7fcc00.pkg" -target /
+sudo installer -pkg "$TMPDIR/OktaVerify-9.63.0-6186-0c33212.pkg" -target /
relaunch_application 'com.okta.mobile'
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/postman/windows.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/zen/darwin.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) === |
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
✅ Files skipped from review due to trivial changes (1)
WalkthroughThis PR updates multiple maintained-app configuration files. Linear (macOS) is bumped from 1.28.13 to 1.30.0: the versions object’s patched check, installer_url, and sha256 were updated, and the install_script_ref was replaced with a new script that mounts and copies from a DMG. Other maintained-app entries (Arc, Okta Verify, Postman, Zen) also receive version, patched-query, installer URL, and checksum updates; Okta Verify’s install script ref was changed to match its new pkg filename. Possibly related PRs
🚥 Pre-merge checks | ✅ 3 | ❌ 2❌ Failed checks (1 warning, 1 inconclusive)
✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Change Linear's Homebrew input to use a dmg installer (installer_format: dmg) and update the darwin output to reference a new install script. The new install script mounts the .dmg with hdiutil, copies the app from the mounted volume, and preserves the previous behavior of backing up an existing app, quitting/relaunching the app, and other housekeeping. Updated install_script_ref to point to the new script.
Script Diff Resultsee/maintained-apps/outputs/arc/darwin.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/linear/darwin.json=== Install // ee9fbf25 -> a8868f79 ===
--- /tmp/old.47xPYH 2026-05-15 02:33:42.029321983 +0000
+++ /tmp/new.Cv4jZw 2026-05-15 02:33:42.029321983 +0000
@@ -95,7 +95,10 @@
# extract contents
-unzip "$INSTALLER_PATH" -d "$TMPDIR"
+MOUNT_POINT=$(mktemp -d /tmp/dmg_mount_XXXXXX)
+hdiutil attach -plist -nobrowse -readonly -mountpoint "$MOUNT_POINT" "$INSTALLER_PATH"
+sudo cp -R "$MOUNT_POINT"/* "$TMPDIR"
+hdiutil detach "$MOUNT_POINT"
# copy to the applications folder
quit_and_track_application 'com.linear'
if [ -d "$APPDIR/Linear.app" ]; then
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/okta-verify/darwin.json=== Install // 0300cffe -> 9061389b ===
--- /tmp/old.IB38Ka 2026-05-15 02:33:42.076322096 +0000
+++ /tmp/new.ce9exe 2026-05-15 02:33:42.076322096 +0000
@@ -96,5 +96,5 @@
# install pkg files
quit_and_track_application 'com.okta.mobile'
-sudo installer -pkg "$TMPDIR/OktaVerify-9.61.1-6117-b7fcc00.pkg" -target /
+sudo installer -pkg "$TMPDIR/OktaVerify-9.63.0-6186-0c33212.pkg" -target /
relaunch_application 'com.okta.mobile'
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/postman/windows.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/zen/darwin.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) === |
Automated ingestion of latest Fleet-maintained app data.
Summary by CodeRabbit