Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion agent-chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ maintainers:
- name: Flanksource
dependencies:
- name: config-db
version: "0.0.1250"
version: "0.0.1255"
repository: https://flanksource.github.io/charts
- name: canary-checker
version: "1.1.3-beta.90"
Expand Down
2 changes: 1 addition & 1 deletion chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies:
repository: https://flanksource.github.io/charts
condition: apm-hub.enabled
- name: config-db
version: "0.0.1250"
version: "0.0.1255"
repository: https://flanksource.github.io/charts
Comment on lines 15 to 17
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Fetch and display config-db chart versions and metadata from the Helm repository

# List recent versions of config-db chart
helm repo add flanksource https://flanksource.github.io/charts 2>/dev/null || true
helm repo update flanksource

echo "=== Available config-db versions around 0.0.1250-0.0.1255 ==="
helm search repo flanksource/config-db --versions | grep -E "(0\.0\.125[0-5]|0\.0\.1256)" || echo "Versions not found in local cache"

echo ""
echo "=== Chart metadata for version 0.0.1255 ==="
helm show chart flanksource/config-db --version 0.0.1255 2>/dev/null || echo "Could not fetch chart metadata"

echo ""
echo "=== Chart metadata for version 0.0.1250 ==="
helm show chart flanksource/config-db --version 0.0.1250 2>/dev/null || echo "Could not fetch chart metadata"

Repository: flanksource/mission-control-chart

Length of output: 427


🏁 Script executed:

fd -type f -name "*config-db*" -o -name "*CHANGELOG*" -o -name "*RELEASE*" | head -20

Repository: flanksource/mission-control-chart

Length of output: 247


🏁 Script executed:

rg -i "config-db" --type yaml --type md -A 5 | head -50

Repository: flanksource/mission-control-chart

Length of output: 3150


🏁 Script executed:

git log --oneline --all -- "*Chart.yaml" | head -10

Repository: flanksource/mission-control-chart

Length of output: 597


🏁 Script executed:

find . -type f \( -name "CHANGELOG*" -o -name "RELEASES*" -o -name "HISTORY*" \) 2>/dev/null | head -20

Repository: flanksource/mission-control-chart

Length of output: 59


🏁 Script executed:

rg -i "changelog|release.*notes" --type md --type txt -l | head -10

Repository: flanksource/mission-control-chart

Length of output: 59


🌐 Web query:

flanksource config-db 0.0.1255 release notes

💡 Result:

No release notes found for flanksource/config-db version 0.0.1255. The GitHub repository https://github.com/flanksource/config-db has 1245 releases with the latest being v0.0.1245 released on 2026-03-16. Version 0.0.1255 may not exist yet, could be a pre-release, internal build, or typo (possibly meant 0.0.1245). No specific changelog or notes for 0.0.1255 appear in searches across GitHub releases, Artifact Hub, or official docs. Check the repository's tags or commits for changes around recent dates.

Citations:


🌐 Web query:

flanksource config-db changelog releases github

💡 Result:

Flanksource config-db is an open-source, developer-first JSON-based Configuration Management Database (CMDB) hosted at https://github.com/flanksource/config-db. It scrapes configuration from sources like AWS (EC2, VPC, IAM), Kubernetes (Pods, Secrets, LoadBalancers), and more, storing changes as JSON patches for structured search and GitOps workflows. Releases: 1245 total releases available at https://github.com/flanksource/config-db/releases. Latest: v0.0.1245 released on 2026-03-16. Changelog: No dedicated CHANGELOG.md file found in the repository. Release information and changes are provided via individual GitHub release pages. Recent Helm chart versions from Artifact Hub include v0.0.1188 (2026-02-25), v0.0.1186 (2026-02-24), etc., listed under app version 0.0.437. It powers the catalog in Flanksource Mission Control (https://github.com/flanksource/mission-control), with Helm charts available on Artifact Hub (e.g., https://artifacthub.io/packages/helm/flanksource/config-db).

Citations:


Clarify config-db version 0.0.1255 before merging.

The latest public release of config-db on GitHub is v0.0.1245 (released 2026-03-16). The version 0.0.1255 specified in this update does not appear in public releases. Confirm whether this version is a pre-release, internal build, or development version, and ensure it is ready for use in production. If this is a typo, verify against the correct version number.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@chart/Chart.yaml` around lines 15 - 17, The Chart.yaml entry for the
dependency "config-db" currently pins version "0.0.1255", which does not match
the latest public release; confirm whether "0.0.1255" is an internal/pre-release
or a typo and update the dependency accordingly: if it should use the public
release, change the version to the correct released tag (e.g., "0.0.1245") in
the Chart.yaml dependency block (name: config-db, version), otherwise document
the pre-release/internal build in the chart's values/README and ensure the
internal repo or tag is available before merging.

- name: canary-checker
version: "1.1.3-beta.90"
Expand Down
Loading