feat(request-node): update to 0.49.0#55
Conversation
Greptile SummaryThis automated PR bumps
Confidence Score: 3/5The chart version was not incremented, so Helm repository consumers will not detect this as a new release and will continue deploying the old image tag. The only change is an appVersion bump, but the chart version field was left at 0.9.0. Helm repo indexes are keyed on chart version, so downstream users running charts/request-node/Chart.yaml — the chart version field needs to be bumped to publish the update correctly. Important Files Changed
Sequence DiagramsequenceDiagram
participant GHA as GitHub Actions Bot
participant Chart as Chart.yaml
participant HelmRepo as Helm Repository Index
participant Consumer as Chart Consumer
GHA->>Chart: Update appVersion 0.47.0 → 0.49.0
Note over Chart: version stays 0.9.0
Consumer->>HelmRepo: helm repo update
HelmRepo-->>Consumer: "index entry version=0.9.0 (unchanged)"
Note over Consumer: No new chart detected ⚠️
alt If chart version had been bumped (e.g. 0.9.1)
HelmRepo-->>Consumer: "index entry version=0.9.1 (new)"
Consumer->>Consumer: helm upgrade → deploys appVersion 0.49.0 ✅
end
Reviews (1): Last reviewed commit: "feat(request-node): update to 0.49.0" | Re-trigger Greptile |
| appVersion: 0.49.0 | ||
| description: A Helm chart for Request Node | ||
| name: request-node | ||
| version: 0.9.0 |
There was a problem hiding this comment.
Chart version not bumped alongside appVersion
The chart version field is still 0.9.0 despite appVersion changing from 0.47.0 to 0.49.0. Helm chart repositories (e.g. ChartMuseum, OCI registries, GitHub Pages via helm repo index) use the version field — not appVersion — to detect new releases. If version stays the same, downstream consumers polling the repo index will not see a new chart entry and will keep deploying the old image tag.
| @@ -1,5 +1,5 @@ | |||
| apiVersion: v2 | |||
| appVersion: 0.47.0 | |||
| appVersion: 0.49.0 | |||
There was a problem hiding this comment.
Automated changes by create-pull-request GitHub action