chore: update flanksource-ui to 1.4.254#547
Conversation
WalkthroughThe Helm chart dependency ChangesChart Dependency Update
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. Review rate limit: 0/1 reviews remaining, refill in 60 minutes.Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@chart/Chart.yaml`:
- Around line 21-23: Chart.lock is out of sync with Chart.yaml: Chart.yaml
specifies flanksource-ui version 1.4.254 while Chart.lock still pins 1.4.238;
run "helm dependency update" in the chart directory to regenerate Chart.lock so
the flanksource-ui dependency in the lockfile matches Chart.yaml (ensure the
updated Chart.lock lists flanksource-ui@1.4.254).
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
| - name: flanksource-ui | ||
| version: "1.4.253" | ||
| version: "1.4.254" | ||
| repository: https://flanksource.github.io/charts |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
set -euo pipefail
echo "== Chart.lock presence =="
# Find any Chart.lock files without assuming repo layout
LOCKS="$(fd -a -g 'Chart.lock' . 2>/dev/null || true)"
if [ -z "$LOCKS" ]; then
echo "No Chart.lock found."
else
echo "$LOCKS"
fi
echo
echo "== flanksource-ui occurrences in Chart.lock (if present) =="
if [ -n "${LOCKS:-}" ]; then
# Search in all found lock files
for f in $LOCKS; do
echo "--- $f ---"
rg -n 'flanksource-ui' "$f" || true
done
fi
echo
echo "== flanksource-ui occurrences in chart/ =="
rg -n --hidden --no-ignore-vcs 'flanksource-ui' chart || trueRepository: flanksource/mission-control-chart
Length of output: 3567
🏁 Script executed:
cat -n chart/Chart.lock | head -20Repository: flanksource/mission-control-chart
Length of output: 824
Update Chart.lock to version 1.4.254 for flanksource-ui.
Chart.lock currently pins flanksource-ui to version 1.4.238, but Chart.yaml specifies 1.4.254. Run helm dependency update to synchronize the lockfile with the chart definition.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@chart/Chart.yaml` around lines 21 - 23, Chart.lock is out of sync with
Chart.yaml: Chart.yaml specifies flanksource-ui version 1.4.254 while Chart.lock
still pins 1.4.238; run "helm dependency update" in the chart directory to
regenerate Chart.lock so the flanksource-ui dependency in the lockfile matches
Chart.yaml (ensure the updated Chart.lock lists flanksource-ui@1.4.254).
Updated chart dependencies from new chart releases:
Auto-generated by charts repo publish workflow.
Summary by CodeRabbit