Skip to content

Update Fleet-maintained apps - #46394

Merged
allenhouchins merged 1 commit into
mainfrom
fma-2605282118
May 28, 2026
Merged

Update Fleet-maintained apps#46394
allenhouchins merged 1 commit into
mainfrom
fma-2605282118

Conversation

@fleet-release

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

Copy link
Copy Markdown
Contributor

Automated ingestion of latest Fleet-maintained app data.

Summary by CodeRabbit

  • Chores
    • Updated version metadata and deployment configurations for six managed applications: Brave Browser, Camtasia, Dialpad, Notepad++, Parallels Desktop, and Power BI. Changes reflect the latest available releases across macOS and Windows platforms to maintain current application support and automated deployment compatibility.

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

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

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

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

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

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

ee/maintained-apps/outputs/notepad++/windows.json

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

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

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

ee/maintained-apps/outputs/power-bi/windows.json

=== Install // 4be62464 -> cc478c11 ===

No differences found in script content

=== Uninstall // 201475bb -> abc3b459 ===

No differences found in script content

@coderabbitai

coderabbitai Bot commented May 28, 2026

Copy link
Copy Markdown
Contributor

Walkthrough

This PR updates metadata for six maintained applications across the Fleet maintained-apps system. Five apps receive version bumps: Brave Browser, Camtasia, Dialpad, Notepad++, and Parallels Desktop. Each version update includes corresponding adjustments to version comparison thresholds used for patch detection, installer download URLs, and SHA-256 checksums. Power BI Desktop on Windows receives a script reference migration, replacing prior install and uninstall script IDs with new reference IDs and providing updated PowerShell script bodies for those references.

Possibly related PRs

  • fleetdm/fleet#44962: Updates Brave Browser macOS metadata by bumping version and aligning queries.patched, installer_url, and sha256 to the new release.
  • fleetdm/fleet#45571: Modifies Dialpad macOS metadata, updating the app version and corresponding queries.patched version comparison threshold.
  • fleetdm/fleet#45680: Updates maintained-app version metadata for Stats app by bumping version, installer URL, and SHA-256 following the same pattern as this PR.
🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 inconclusive)

Check name Status Explanation Resolution
Description check ❓ Inconclusive The description is minimal but appropriate for an automated ingestion PR. However, it does not follow the provided template structure with required checklist items. For automated dependency updates, consider adding a note that template checklist items are N/A, or update to indicate this is an auto-generated change that bypasses normal checklist requirements.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately summarizes the main change: updating metadata for multiple Fleet-maintained applications across different platforms.
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-2605282118

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.

Actionable comments posted: 0

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/dialpad/darwin.json (1)

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

Security: sha256 integrity check is disabled for Dialpad PKG downloads.

ee/maintained-apps/outputs/dialpad/darwin.json sets "sha256": "no_check" for the static https://download.dialpad.com/osx/arm64/dialpad.pkg, so Fleet will not validate the downloaded PKG against a checksum.

  • Public Dialpad docs/metadata don’t appear to provide versioned URLs or SHA-256 values for macOS PKGs (curling the URL shows no checksum headers).
  • This removes detection for corrupted/altered payloads; relying solely on HTTPS transport integrity (and any OS-level signing/notarization) doesn’t provide the same “known-good bytes” assurance.

If Dialpad won’t publish checksums, consider documenting the tradeoff explicitly and/or adding an alternative integrity/signature verification step (where supported) or using a versioned source/manifest (if available).

🤖 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/dialpad/darwin.json` around lines 9 - 12, The
darwin.json currently sets "sha256": "no_check" for the static installer_url
(dialpad.pkg), which disables integrity validation; update this by either
replacing "no_check" with the actual SHA-256 checksum of the PKG (compute and
paste the hex value into the "sha256" field) or, if Dialpad does not publish
checksums, add a clear documented alternative: add an integrity verification
entry (e.g., a field named "integrity_verification" or "integrity_note")
describing the tradeoff and any OS-level/Notarization checks to be relied on, or
implement a signature/manifest verification step where supported; target the
"sha256" key and the "installer_url" reference when making the change.
🤖 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/dialpad/darwin.json`:
- Around line 9-12: The darwin.json currently sets "sha256": "no_check" for the
static installer_url (dialpad.pkg), which disables integrity validation; update
this by either replacing "no_check" with the actual SHA-256 checksum of the PKG
(compute and paste the hex value into the "sha256" field) or, if Dialpad does
not publish checksums, add a clear documented alternative: add an integrity
verification entry (e.g., a field named "integrity_verification" or
"integrity_note") describing the tradeoff and any OS-level/Notarization checks
to be relied on, or implement a signature/manifest verification step where
supported; target the "sha256" key and the "installer_url" reference when making
the change.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 38ace226-7d9f-4adc-a404-d84ddbc6f14c

📥 Commits

Reviewing files that changed from the base of the PR and between 5a8fc5a and addeab2.

📒 Files selected for processing (6)
  • ee/maintained-apps/outputs/brave-browser/darwin.json
  • ee/maintained-apps/outputs/camtasia/darwin.json
  • ee/maintained-apps/outputs/dialpad/darwin.json
  • ee/maintained-apps/outputs/notepad++/windows.json
  • ee/maintained-apps/outputs/parallels/darwin.json
  • ee/maintained-apps/outputs/power-bi/windows.json

@allenhouchins
allenhouchins merged commit 15cbf81 into main May 28, 2026
13 checks passed
@allenhouchins
allenhouchins deleted the fma-2605282118 branch May 28, 2026 21:35
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