Update Fleet-maintained apps#48347
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.
|
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 (1)
WalkthroughThe PR updates several maintained-app JSON outputs for newer Darwin and Windows releases by changing version values, patched-query thresholds, installer URLs, and SHA256 checksums. It also adds a top-level 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/lens/darwin.json`:
- Around line 9-12: The Lens Darwin manifest is using a single arm64-only
installer_url for the generic darwin entry, which will break Intel Macs. Update
the maintained-apps manifest generation/config so darwin is split into
arch-specific variants like darwin/arm64 and darwin/amd64, or switch to a
verified universal DMG, and make sure each variant in maintained_apps.go gets
the correct installer_url and sha256 for its architecture.
🪄 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: 024a9157-be4f-402e-b2d5-6ec3d4bbe646
📒 Files selected for processing (11)
ee/maintained-apps/outputs/alcove/darwin.jsonee/maintained-apps/outputs/bettertouchtool/darwin.jsonee/maintained-apps/outputs/drawio/darwin.jsonee/maintained-apps/outputs/granola/darwin.jsonee/maintained-apps/outputs/lens/darwin.jsonee/maintained-apps/outputs/lens/windows.jsonee/maintained-apps/outputs/marked-app/darwin.jsonee/maintained-apps/outputs/microsoft-edge/windows.jsonee/maintained-apps/outputs/vnc-viewer/windows.jsonee/maintained-apps/outputs/wechat/darwin.jsonee/maintained-apps/outputs/xnviewmp/windows.json
| "installer_url": "https://api.k8slens.dev/binaries/Lens-2026.6.260931-latest-arm64.dmg", | ||
| "install_script_ref": "e8691291", | ||
| "uninstall_script_ref": "ea665c04", | ||
| "sha256": "8a01626fb62009a77718adcaa063063957b7061c5070c785f64568452fce684f", | ||
| "sha256": "b30b9266baf85485e42acc819e838b202cbeb8b6c03a1a295453547aa548abdc", |
There was a problem hiding this comment.
🎯 Functional Correctness | 🔴 Critical
🧩 Analysis chain
🌐 Web query:
What macOS artifacts are published for Lens version 2026.6.260931-latest, and is Lens-2026.6.260931-latest-arm64.dmg Apple-Silicon-only or a universal build?
💡 Result:
For Lens desktop application releases, the software is distributed via architecture-specific DMG binaries rather than a single universal build [1][2]. The file Lens-2026.6.260931-latest-arm64.dmg is an Apple-Silicon-only build specifically optimized for ARM64-based macOS devices [1][2]. Lens publishes separate artifacts for different CPU architectures to support both Intel and Apple Silicon Macs [1][2]. Typically, these artifacts are available through the official Lens download portal and are structured as follows: 1. Intel (x64) build: Usually named without an architecture suffix or with an -x64 suffix [1][2]. 2. Apple Silicon (ARM64) build: Specifically appended with -arm64, such as the file you identified [1][2]. You can verify and download the appropriate architecture-specific binaries for your system via the official Lens download documentation and the binary distribution API [3][4][5]. The Homebrew cask for Lens also confirms this pattern, explicitly defining separate SHA256 hashes and URLs for arm64 and intel architectures [1][2].
Citations:
- 1: https://github.com/Homebrew/homebrew-cask/blob/d5316b64635000cd027e878190b85e9cd31d552a/Casks/l/lens.rb
- 2: https://github.com/Homebrew/homebrew-cask/blob/6b8b53ea77c4f3d61527cfa1ff0709a7453f91ea/Casks/l/lens.rb
- 3: Predictable Release binaries/packages lensapp/lens#3217
- 4: https://docs.k8slens.dev/k8slens/getting-started/install-lens/
- 5: https://lenshq.io/download/lens-k8s-ide
Correct the macOS Lens artifact URL to support all Darwin architectures.
The current installer_url in ee/maintained-apps/outputs/lens/darwin.json points to Lens-2026.6.260931-latest-arm64.dmg, which is an Apple-Silicon-only build. Since the darwin.json manifest applies to all macOS hosts, Intel-based Macs will attempt to download an incompatible binary.
Split the darwin platform entry into architecture-specific variants (darwin/arm64 and darwin/amd64) with corresponding URLs and hashes, or provide a verified universal DMG URL.
Diff Context
"installer_url": "https://api.k8slens.dev/binaries/Lens-2026.6.260931-latest-arm64.dmg",
"install_script_ref": "e8691291",
"uninstall_script_ref": "ea665c04",
"sha256": "b30b9266baf85485e42acc819e838b202cbeb8b6c03a1a295453547aa548abdc",[maintained_apps.go] defines the manifest structure at the platform level, requiring architectural separation at the configuration level to ensure correct runtime downloads.
🤖 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/lens/darwin.json` around lines 9 - 12, The Lens
Darwin manifest is using a single arm64-only installer_url for the generic
darwin entry, which will break Intel Macs. Update the maintained-apps manifest
generation/config so darwin is split into arch-specific variants like
darwin/arm64 and darwin/amd64, or switch to a verified universal DMG, and make
sure each variant in maintained_apps.go gets the correct installer_url and
sha256 for its architecture.
Mark the WinGet VNC Viewer input as frozen and update the generated Windows package metadata to RealVNC Connect Viewer 8.4.1.10, including the patched version query, installer URL, and checksum.
Automated ingestion of latest Fleet-maintained app data.
Summary by CodeRabbit