Skip to content

Update Fleet-maintained apps - #45666

Merged
allenhouchins merged 1 commit into
mainfrom
fma-2605160018
May 16, 2026
Merged

Update Fleet-maintained apps#45666
allenhouchins merged 1 commit into
mainfrom
fma-2605160018

Conversation

@fleet-release

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

Copy link
Copy Markdown
Contributor

Automated ingestion of latest Fleet-maintained app data.

Summary by CodeRabbit

  • Updates
    • Updated version catalogs for Claude Desktop (macOS and Windows), Tailscale, Teleport Connect, Teleport Suite, and Warp to recognize and support newer application versions.

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

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

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

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

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

=== Install // fb3d8a43 -> efaa1aa0 ===

--- /tmp/old.537j8R	2026-05-16 00:21:31.419779753 +0000
+++ /tmp/new.zFWj2q	2026-05-16 00:21:31.419779753 +0000
@@ -96,5 +96,5 @@
 
 # install pkg files
 quit_and_track_application 'io.tailscale.ipn.macsys'
-sudo installer -pkg "$TMPDIR/Tailscale-1.98.1-macos.pkg" -target /
+sudo installer -pkg "$TMPDIR/Tailscale-1.98.2-macos.pkg" -target /
 relaunch_application 'io.tailscale.ipn.macsys'

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

ee/maintained-apps/outputs/teleport-connect/darwin.json

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

ee/maintained-apps/outputs/teleport-suite/darwin.json

=== Install // 70c991f9 -> 7a279a2a ===

--- /tmp/old.2ZZPw1	2026-05-16 00:21:31.498779804 +0000
+++ /tmp/new.cWxicW	2026-05-16 00:21:31.498779804 +0000
@@ -96,5 +96,5 @@
 
 # install pkg files
 quit_and_track_application 'com.gravitational.teleport.tsh'
-sudo installer -pkg "$TMPDIR/teleport-18.8.0.pkg" -target /
+sudo installer -pkg "$TMPDIR/teleport-18.8.1.pkg" -target /
 relaunch_application 'com.gravitational.teleport.tsh'

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

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

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

@coderabbitai

coderabbitai Bot commented May 16, 2026

Copy link
Copy Markdown
Contributor

Walkthrough

This pull request updates version metadata across six maintained application manifests in Fleet. Claude Desktop (macOS and Windows) advance from 1.7196.0 to 1.7196.1; Tailscale macOS advances from 1.98.1 to 1.98.2; Teleport Connect and Teleport Suite macOS both advance from 18.8.0 to 18.8.1; and Warp stable macOS advances from 0.2026.05.13.09.15.01 to 0.2026.05.13.09.15.03. Each update synchronizes the version field, SQL patched query comparison thresholds, installer download URLs, and SHA-256 checksums. Some entries also update install script references and embedded script content to match the new installer package versions.

Possibly related PRs

  • fleetdm/fleet#45334: Updates multiple overlapping maintained-app manifests (Claude, Tailscale, Teleport) with version bumps and corresponding installer metadata changes.
  • fleetdm/fleet#45447: Updates Tailscale macOS manifest with version bump, install script reference changes, and embedded script content adjustments.
  • fleetdm/fleet#44337: Updates Warp macOS manifest versioning metadata with version, patched query threshold, installer URL, and checksum changes.
🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 inconclusive)

Check name Status Explanation Resolution
Description check ❓ Inconclusive The description is overly minimal and vague. It only states 'Automated ingestion of latest Fleet-maintained app data' without any specific details about which apps were updated or their version changes. Expand the description to include specific details such as which applications were updated, their old and new versions, and any important changes. Consider referencing the related issue ticket number.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately describes the main change: updating version numbers and metadata for multiple Fleet-maintained applications (Claude, Tailscale, Teleport, Warp).
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-2605160018

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.

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

12-12: Warp installer lacks SHA256 integrity verification.

The sha256 field is set to "no_check", which bypasses cryptographic verification of the installer. This prevents detection of corrupted downloads or potential supply-chain attacks.

Consider working with Warp to enable checksum verification, or document the risk acceptance if this is intentional due to their release process.

🤖 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/warp/darwin.json` at line 12, The release manifest
currently sets the JSON "sha256" field to "no_check" for the Warp macOS
installer in darwin.json, disabling integrity verification; replace "no_check"
with the actual SHA256 checksum of the distributed installer (obtain the
checksum from Warp's official release artifacts or compute it from the signed
installer you intend to ship) and update any installer/download logic to
validate the downloaded file against that checksum, or if you cannot obtain a
checksum, add a documented risk-acceptance note in the manifest/comments
explaining why verification cannot be performed and create a follow-up TODO to
obtain vendor-provided checksums or implement signature verification.
🤖 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/warp/darwin.json`:
- Line 12: The release manifest currently sets the JSON "sha256" field to
"no_check" for the Warp macOS installer in darwin.json, disabling integrity
verification; replace "no_check" with the actual SHA256 checksum of the
distributed installer (obtain the checksum from Warp's official release
artifacts or compute it from the signed installer you intend to ship) and update
any installer/download logic to validate the downloaded file against that
checksum, or if you cannot obtain a checksum, add a documented risk-acceptance
note in the manifest/comments explaining why verification cannot be performed
and create a follow-up TODO to obtain vendor-provided checksums or implement
signature verification.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 835a8867-c1ea-49ca-a22c-04cc3ff1b0da

📥 Commits

Reviewing files that changed from the base of the PR and between 07d84b1 and 8abee30.

📒 Files selected for processing (6)
  • ee/maintained-apps/outputs/claude/darwin.json
  • ee/maintained-apps/outputs/claude/windows.json
  • ee/maintained-apps/outputs/tailscale-app/darwin.json
  • ee/maintained-apps/outputs/teleport-connect/darwin.json
  • ee/maintained-apps/outputs/teleport-suite/darwin.json
  • ee/maintained-apps/outputs/warp/darwin.json

@allenhouchins
allenhouchins merged commit 860a7de into main May 16, 2026
13 checks passed
@allenhouchins
allenhouchins deleted the fma-2605160018 branch May 16, 2026 02:46
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