Skip to content

Update Fleet-maintained apps - #49595

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

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

Conversation

@fleet-release

@fleet-release fleet-release commented Jul 20, 2026

Copy link
Copy Markdown
Contributor

Automated ingestion of latest Fleet-maintained app data.

Summary by CodeRabbit

  • Updates
    • Updated macOS releases for DBGate (7.2.3), FontBase (2026.5.23), Jami (2.41), MacPacker (0.18.0), OpenCode Desktop (1.18.4), Spokenly (2.25.4), Teleport Connect (18.10.1), and Teleport Suite (18.10.1).
    • Updated Windows releases for Reqable (3.2.11), Teleport Connect (18.10.1), and Typora (1.14.6).
    • Installer links and integrity checks now match each latest release.

Generated automatically with cmd/maintained-apps.
@github-actions

Copy link
Copy Markdown
Contributor

Script Diff Results

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

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

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

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

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

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

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

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

ee/maintained-apps/outputs/opencode-desktop/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/spokenly/darwin.json

=== Install Script (no changes) ===
=== 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-connect/windows.json

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

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

=== Install // 310925c0 -> ebebc96f ===

--- /tmp/old.MF379B	2026-07-20 18:47:48.465157323 +0000
+++ /tmp/new.EJxRM1	2026-07-20 18:47:48.465157323 +0000
@@ -96,5 +96,5 @@
 
 # install pkg files
 quit_and_track_application 'com.gravitational.teleport.tsh'
-sudo installer -pkg "$TMPDIR/teleport-18.10.0.pkg" -target /
+sudo installer -pkg "$TMPDIR/teleport-18.10.1.pkg" -target /
 relaunch_application 'com.gravitational.teleport.tsh'

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

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

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

@coderabbitai

coderabbitai Bot commented Jul 20, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Walkthrough

Updated maintained-app metadata for DBGate, FontBase, Jami, MacPacker, OpenCode Desktop, Reqable, Spokenly, Teleport Connect, Teleport Suite, and Typora. Changes align versions, patch-detection queries, installer URLs, and SHA-256 checksums with newer releases. Teleport Suite also updates its installer script reference and package filename.

Possibly related PRs

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Description check ⚠️ Warning The description is far too vague and does not follow the repository template with issue, checklist, or testing details. Expand the PR description to fill the required template sections, including the related issue, checklist items, and testing notes.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title is concise and accurately describes the main change: updating Fleet-maintained apps.
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-2607201838

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

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

Use $INSTALLER_PATH instead of a hardcoded package name.

The install script has a hardcoded package filename (teleport-18.10.1.pkg). This requires the script to be updated and its ref regenerated for every version bump. Since $INSTALLER_PATH already points to the downloaded package, you can pass it directly to installer, making this script version-agnostic for future updates.

♻️ Proposed refactor

Update the package installation step in the "ebebc96f" script block (remembering to keep JSON string escapes intact):

 # install pkg files
 quit_and_track_application 'com.gravitational.teleport.tsh'
-sudo installer -pkg \"$TMPDIR/teleport-18.10.1.pkg\" -target /
+sudo installer -pkg \"$INSTALLER_PATH\" -target /
 relaunch_application 'com.gravitational.teleport.tsh'
🤖 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/teleport-suite/darwin.json` around lines 18 - 20,
Update the installer invocation in the ebebc96f script block to pass the
existing INSTALLER_PATH variable directly to installer instead of the hardcoded
teleport-18.10.1.pkg filename. Preserve the surrounding installation and
relaunch flow, and keep the JSON string escaping valid.
🤖 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/teleport-suite/darwin.json`:
- Around line 18-20: Update the installer invocation in the ebebc96f script
block to pass the existing INSTALLER_PATH variable directly to installer instead
of the hardcoded teleport-18.10.1.pkg filename. Preserve the surrounding
installation and relaunch flow, and keep the JSON string escaping valid.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 1b0a8407-7484-451d-a367-158a1edf726f

📥 Commits

Reviewing files that changed from the base of the PR and between 2df68b8 and 524e186.

📒 Files selected for processing (11)
  • ee/maintained-apps/outputs/dbgate/darwin.json
  • ee/maintained-apps/outputs/fontbase/darwin.json
  • ee/maintained-apps/outputs/jami/darwin.json
  • ee/maintained-apps/outputs/macpacker/darwin.json
  • ee/maintained-apps/outputs/opencode-desktop/darwin.json
  • ee/maintained-apps/outputs/reqable/windows.json
  • ee/maintained-apps/outputs/spokenly/darwin.json
  • ee/maintained-apps/outputs/teleport-connect/darwin.json
  • ee/maintained-apps/outputs/teleport-connect/windows.json
  • ee/maintained-apps/outputs/teleport-suite/darwin.json
  • ee/maintained-apps/outputs/typora/windows.json

@github-actions

Copy link
Copy Markdown
Contributor

Closing in favor of #49609.

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