Skip to content

chore: update config-db to 0.0.1391#636

Merged
flankbot merged 1 commit into
mainfrom
chore/update-chart-deps-20260624102950
Jun 24, 2026
Merged

chore: update config-db to 0.0.1391#636
flankbot merged 1 commit into
mainfrom
chore/update-chart-deps-20260624102950

Conversation

@flankbot

@flankbot flankbot commented Jun 24, 2026

Copy link
Copy Markdown
Contributor

Updated chart dependencies from new chart releases:

  • config-db in chart/Chart.yaml: 0.0.1390 → 0.0.1391
  • config-db in agent-chart/Chart.yaml: 0.0.1390 → 0.0.1391

Auto-generated by charts repo publish workflow.

Summary by CodeRabbit

  • Chores
    • Updated Helm chart dependency versions to the latest patch release.
    • Bumped bundled chart dependencies from 0.0.1390 to 0.0.1391 in two charts.

@flankbot flankbot enabled auto-merge (squash) June 24, 2026 10:30
@coderabbitai

coderabbitai Bot commented Jun 24, 2026

Copy link
Copy Markdown

Review Change Stack

Walkthrough

Two Helm chart dependency versions are bumped from 0.0.1390 to 0.0.1391: config-db in agent-chart/Chart.yaml and apm-hub in chart/Chart.yaml. No other metadata or configuration is changed.

Changes

Helm Dependency Version Bumps

Layer / File(s) Summary
config-db and apm-hub version bumps
agent-chart/Chart.yaml, chart/Chart.yaml
config-db bumped from 0.0.1390 to 0.0.1391 in the agent chart; apm-hub bumped from 0.0.1390 to 0.0.1391 in the main chart.

Possibly related PRs

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title is specific and matches the dependency version bump in the changeset.
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.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch chore/update-chart-deps-20260624102950
✨ Simplify code
  • Create PR with simplified code
  • Commit simplified code in branch chore/update-chart-deps-20260624102950

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

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 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 11: Sync the chart lockfile with the updated config-db dependency
version. In `Chart.yaml` the `config-db` dependency is pinned to `0.0.1391`, but
`Chart.lock` still references `0.0.1161`; update the lockfile entry so Helm
lockfile-based installs resolve the same version as `Chart.yaml`. Focus on the
`config-db` dependency entries in `Chart.lock` and keep the version/repository
metadata aligned with the current chart pin.

In `@chart/Chart.yaml`:
- Line 16: The Helm dependency lock is out of sync with the version bump in
Chart.yaml, so regenerate chart/Chart.lock after updating config-db to 0.0.1391.
Make sure the lockfile entry for config-db is refreshed to the same resolved
version as the Chart.yaml dependency, and commit the updated chart/Chart.lock
alongside the Chart.yaml change.
🪄 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: 3b856136-197c-4c9f-903a-069dd4ef7208

📥 Commits

Reviewing files that changed from the base of the PR and between 951d4b9 and 7b4dd19.

📒 Files selected for processing (2)
  • agent-chart/Chart.yaml
  • chart/Chart.yaml

Comment thread agent-chart/Chart.yaml
dependencies:
- name: config-db
version: "0.0.1390"
version: "0.0.1391"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🗄️ Data Integrity & Integration | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

python - <<'PY'
import re
from pathlib import Path

checks = [
    ("agent-chart/Chart.yaml", "agent-chart/Chart.lock", "config-db"),
    ("chart/Chart.yaml", "chart/Chart.lock", "config-db"),
    ("chart/Chart.yaml", "chart/Chart.lock", "apm-hub"),
]

def parse_versions(path):
    text = Path(path).read_text()
    deps = {}
    current = None
    for line in text.splitlines():
        m_name = re.match(r'^\s*-\s*name:\s*"?([^"]+)"?\s*$', line)
        if m_name:
            current = m_name.group(1)
            continue
        m_ver = re.match(r'^\s*version:\s*"?([^"]+)"?\s*$', line)
        if m_ver and current:
            deps[current] = m_ver.group(1)
            current = None
    return deps

for chart, lock, dep in checks:
    cv = parse_versions(chart).get(dep)
    lv = parse_versions(lock).get(dep)
    print(f"{dep}: {chart}={cv} | {lock}={lv}")
PY

Repository: flanksource/mission-control-chart

Length of output: 375


Sync agent-chart/Chart.lock with the config-db bump. Chart.yaml now pins config-db to 0.0.1391, but Chart.lock still has 0.0.1161, so lockfile-based installs will keep the old version.

🤖 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 11, Sync the chart lockfile with the updated
config-db dependency version. In `Chart.yaml` the `config-db` dependency is
pinned to `0.0.1391`, but `Chart.lock` still references `0.0.1161`; update the
lockfile entry so Helm lockfile-based installs resolve the same version as
`Chart.yaml`. Focus on the `config-db` dependency entries in `Chart.lock` and
keep the version/repository metadata aligned with the current chart pin.

Comment thread chart/Chart.yaml
condition: apm-hub.enabled
- name: config-db
version: "0.0.1390"
version: "0.0.1391"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🗄️ Data Integrity & Integration | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

set -euo pipefail
printf 'Chart.yaml:\n'
sed -n '1,120p' chart/Chart.yaml
printf '\nChart.lock:\n'
sed -n '1,200p' chart/Chart.lock

Repository: flanksource/mission-control-chart

Length of output: 2334


🏁 Script executed:

set -euo pipefail
printf 'Chart.yaml:\n'
sed -n '1,120p' chart/Chart.yaml
printf '\nChart.lock:\n'
sed -n '1,200p' chart/Chart.lock

Repository: flanksource/mission-control-chart

Length of output: 2334


🏁 Script executed:

set -euo pipefail
printf 'Chart.yaml:\n'
sed -n '1,120p' chart/Chart.yaml
printf '\nChart.lock:\n'
sed -n '1,200p' chart/Chart.lock

Repository: flanksource/mission-control-chart

Length of output: 2334


🏁 Script executed:

set -euo pipefail
printf 'Chart.yaml:\n'
sed -n '1,120p' chart/Chart.yaml
printf '\nChart.lock:\n'
sed -n '1,200p' chart/Chart.lock

Repository: flanksource/mission-control-chart

Length of output: 2334


Regenerate chart/Chart.lock for config-db 0.0.1391

chart/Chart.yaml bumps config-db to 0.0.1391, but chart/Chart.lock still resolves config-db to 0.0.1339. Refresh and commit the lockfile so the chart pulls the intended release.

🤖 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 `@chart/Chart.yaml` at line 16, The Helm dependency lock is out of sync with
the version bump in Chart.yaml, so regenerate chart/Chart.lock after updating
config-db to 0.0.1391. Make sure the lockfile entry for config-db is refreshed
to the same resolved version as the Chart.yaml dependency, and commit the
updated chart/Chart.lock alongside the Chart.yaml change.

@flankbot flankbot merged commit 32a7c57 into main Jun 24, 2026
11 checks passed
@flankbot flankbot deleted the chore/update-chart-deps-20260624102950 branch June 24, 2026 10:41
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.

1 participant