Update Fleet-maintained apps - #48373
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/codex-app/darwin.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/ocenaudio/windows.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/ollama/windows.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/shotcut/darwin.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/spyder/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-suite/darwin.json=== Install // 6a29411f -> c7ec49da ===
--- /tmp/old.EOaiJg 2026-06-27 05:21:33.448551320 +0000
+++ /tmp/new.8geFN9 2026-06-27 05:21:33.449551327 +0000
@@ -96,5 +96,5 @@
# install pkg files
quit_and_track_application 'com.gravitational.teleport.tsh'
-sudo installer -pkg "$TMPDIR/teleport-18.9.1.pkg" -target /
+sudo installer -pkg "$TMPDIR/teleport-18.9.2.pkg" -target /
relaunch_application 'com.gravitational.teleport.tsh'
=== Uninstall Script (no changes) === |
WalkthroughUpdated maintained-app output entries for Codex, Ocenaudio, Ollama, Shotcut, Spyder, Teleport Connect, and Teleport Suite. The changes bump app versions, refresh patched-version SQL comparisons, replace installer download URLs, and update sha256 checksums. The Teleport Suite entry also changes the install script reference and the package name used by the install script. Possibly related PRs
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✨ 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 |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 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.
Inline comments:
In `@ee/maintained-apps/outputs/ocenaudio/windows.json`:
- Around line 4-12: The ocenaudio Windows manifest was bumped too early, causing
`queries.patched` and the `sha256` to no longer match the currently published
installer. Revert the `version` in the ocenaudio entry and keep the existing
`queries`, `installer_url`, and checksum aligned with the currently released
artifact in the maintained-apps Windows manifest until the upstream 3.19.5 build
is actually published.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Run ID: 5f3908c9-db37-46c3-a735-1ca6a8dfd0fa
📒 Files selected for processing (7)
ee/maintained-apps/outputs/codex-app/darwin.jsonee/maintained-apps/outputs/ocenaudio/windows.jsonee/maintained-apps/outputs/ollama/windows.jsonee/maintained-apps/outputs/shotcut/darwin.jsonee/maintained-apps/outputs/spyder/darwin.jsonee/maintained-apps/outputs/teleport-connect/darwin.jsonee/maintained-apps/outputs/teleport-suite/darwin.json
| "version": "3.19.5", | ||
| "queries": { | ||
| "exists": "SELECT 1 FROM programs WHERE name = 'ocenaudio' AND publisher = 'Ocenaudio Team';", | ||
| "patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM programs WHERE name = 'ocenaudio' AND publisher = 'Ocenaudio Team' AND version_compare(version, '3.19.4') < 0);" | ||
| "patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM programs WHERE name = 'ocenaudio' AND publisher = 'Ocenaudio Team' AND version_compare(version, '3.19.5') < 0);" | ||
| }, | ||
| "installer_url": "https://www.ocenaudio.com/downloads/index.php/ocenaudio_windows64.exe", | ||
| "install_script_ref": "ebf8794b", | ||
| "uninstall_script_ref": "7264fb50", | ||
| "sha256": "5154d7f161eeba2652ef0381f48a4811ed97df92d27d00342fdf0a30c98a1772", | ||
| "sha256": "0ddb35b5275d8091fb03a9c21f3a0f5b4b2fea624478896fd90bd948db3ccfc3", |
There was a problem hiding this comment.
🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win
🧩 Analysis chain
🌐 Web query:
ocenaudio 3.19.5 Windows release changelog download page
💡 Result:
As of June 27, 2026, the official ocenaudio website primarily lists version 3.19.4 as the current release for Windows [1][2]. While some third-party software repositories may show a listing for version 3.19.5 [3][4], the official ocenaudio changelog and download portal have not updated to reflect this version as the standard stable release [5][1]. For the most reliable experience and the latest verified updates, you should download ocenaudio directly from the official website: Official Download Page: https://www.ocenaudio.com/download [1] Official Changelog: https://www.ocenaudio.com/en/changelog [5] Please be cautious when downloading software from third-party sites, as they may occasionally list unverified or placeholder versions. You can always verify the latest official release by checking the official download page, which provides direct links for the Windows 64-bit installer and portable ZIP version [1][2].
Citations:
- 1: https://www.ocenaudio.com/download
- 2: https://www.ocenaudio.com/download?version=v3.19.4
- 3: https://m.majorgeeks.com/files/details/ocenaudio.html
- 4: https://www.videohelp.com/software/ocenaudio
- 5: https://www.ocenaudio.com/en/changelog
Keep the manifest on the published ocenaudio release. The official download/changelog pages still show 3.19.4, so bumping this entry to 3.19.5 makes queries.patched mark 3.19.4 installs as unpatched and leaves the sha256 mismatched against the static Windows installer URL. Update this once the upstream 3.19.5 artifact is 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/ocenaudio/windows.json` around lines 4 - 12, The
ocenaudio Windows manifest was bumped too early, causing `queries.patched` and
the `sha256` to no longer match the currently published installer. Revert the
`version` in the ocenaudio entry and keep the existing `queries`,
`installer_url`, and checksum aligned with the currently released artifact in
the maintained-apps Windows manifest until the upstream 3.19.5 build is actually
published.
|
Closing in favor of #48374. |
Automated ingestion of latest Fleet-maintained app data.
Summary by CodeRabbit