chore: update canary-checker to 1.1.3-beta.158 - #630
Conversation
WalkthroughThe Changescanary-checker dependency bump
Possibly related PRs
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
✨ Simplify code
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 `@agent-chart/Chart.yaml`:
- Line 14: The Chart.lock file has a stale lock for the canary-checker
dependency at version 1.1.3-beta.63, while Chart.yaml declares the updated
version 1.1.3-beta.158. Regenerate the Chart.lock lockfile using the appropriate
Helm command (such as helm dependency update or helm dependency lock) in the
agent-chart directory to sync the pinned canary-checker version with the version
declared in Chart.yaml. This ensures Helm installs the correct declared version
instead of the outdated locked version.
🪄 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: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: aa874659-3b90-49fb-9da3-25e3cbe17e79
📒 Files selected for processing (2)
agent-chart/Chart.yamlchart/Chart.yaml
| repository: https://flanksource.github.io/charts | ||
| - name: canary-checker | ||
| version: "1.1.3-beta.157" | ||
| version: "1.1.3-beta.158" |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
set -euo pipefail
echo "Searching for Chart.lock files..."
fd -i '^Chart\.lock$' .
echo
echo "Inspecting canary-checker entries in lockfiles..."
fd -i '^Chart\.lock$' . -x sh -c '
echo "== $1 =="
rg -n -A2 -B2 "canary-checker|version:" "$1"
' sh {}Repository: flanksource/mission-control-chart
Length of output: 1553
Update Chart.lock to sync canary-checker dependency version.
The agent-chart/Chart.lock pins canary-checker to 1.1.3-beta.63 (line 7), while Chart.yaml declares 1.1.3-beta.158. Regenerate the lockfile to resolve this mismatch; otherwise Helm will install the outdated locked version instead of the declared dependency.
🤖 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 `@agent-chart/Chart.yaml` at line 14, The Chart.lock file has a stale lock for
the canary-checker dependency at version 1.1.3-beta.63, while Chart.yaml
declares the updated version 1.1.3-beta.158. Regenerate the Chart.lock lockfile
using the appropriate Helm command (such as helm dependency update or helm
dependency lock) in the agent-chart directory to sync the pinned canary-checker
version with the version declared in Chart.yaml. This ensures Helm installs the
correct declared version instead of the outdated locked version.
Updated chart dependencies from new chart releases:
Auto-generated by charts repo publish workflow.
Summary by CodeRabbit