Skip to content
Merged
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
4 changes: 2 additions & 2 deletions charts/openfga/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: openfga
description: A Kubernetes Helm chart for the OpenFGA project.

type: application
version: 0.2.40
appVersion: "v1.9.3"
version: 0.2.41
appVersion: "v1.9.4"
Comment on lines +6 to +7
Copy link

Choose a reason for hiding this comment

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

💡 Verification agent

🧩 Analysis chain

Version and appVersion bump LGTM; verify image tag alignment and Artifact Hub notes.

Patch bump of chart version to 0.2.41 alongside appVersion v1.9.4 is consistent. Please verify that:

  • values.yaml image.tag (if pinned) and any template references don’t still point to v1.9.3.
  • Templates use .Chart.AppVersion or the value override consistently.
  • README/CHANGELOG and Artifact Hub changes are updated to reflect the bump.

Run the following checks from the repo root to catch any stale references and confirm how the image tag is sourced:

Optionally, consider adding Artifact Hub “changes” for better visibility (minor nit):

annotations:
  artifacthub.io/changes: |
    - kind: changed
      description: Update OpenFGA to v1.9.4

To confirm if 1.9.4 requires any chart tweaks (env flags, ports, migrations), fetch release notes:


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "1) Find any stale references to v1.9.3"
rg -n --hidden --glob '!**/node_modules/**' --glob '!**/dist/**' $'v1\\.9\\.3' || true

echo
echo "2) Inspect values.yaml for image tag defaults (null/pinned) and repository"
fd -a values.yaml | xargs -I{} sh -c 'echo "--- {} ---"; rg -n -A2 -B2 -e "image:|repository:|tag:" "{}" || true'

echo
echo "3) Inspect templates for usage of .Chart.AppVersion and image.tag"
rg -n --hidden --glob '!**/node_modules/**' --glob '!**/dist/**' -e '\.Chart\.AppVersion|image\.tag|image:' charts/openfga/templates || true

Length of output: 2383


🌐 Web query:

OpenFGA v1.9.4 release notes or changelog: Are there any chart-impacting changes (new flags, env vars, ports, breaking changes) between v1.9.3 and v1.9.4?

💡 Result:

Short answer: I can’t find a v1.9.4 release — as of Aug 13, 2025 the latest published tag/release is v1.9.3 (released Aug 11, 2025). Therefore there are no changes to report between v1.9.3 → v1.9.4 because v1.9.4 does not appear to exist yet. (github.com)

What I checked

If you want

  • I can re-check (and diff v1.9.3 → v1.9.4) as soon as v1.9.4 is published and call out any chart-impacting items (new CLI flags, env vars, ports, or breaking changes). Would you like me to monitor the repo and notify you when v1.9.4 appears?

Citations:


Action Required: Confirm or Correct OpenFGA v1.9.4 Release

  • No stale references to v1.9.3 were found in the repo.
  • charts/openfga/values.yaml sets image.tag: "", falling back to .Chart.AppVersion.
  • All templates correctly reference .Values.image.tag | default .Chart.AppVersion.
  • GitHub Releases and the OpenFGA CHANGELOG show v1.9.3 as the latest; v1.9.4 does not appear to exist.

Please verify that v1.9.4 has been published. If it hasn’t, revert appVersion in charts/openfga/Chart.yaml to v1.9.3 (and bump again once v1.9.4 is officially released).

🤖 Prompt for AI Agents
In charts/openfga/Chart.yaml around lines 6-7 the appVersion is set to "v1.9.4"
but upstream releases and the CHANGELOG show v1.9.3 as the latest; verify
whether OpenFGA v1.9.4 is actually published, and if it is not, change
appVersion back to "v1.9.3" (then re-bump later when v1.9.4 is officially
released); keep values.yaml using image.tag: "" so templates continue to default
to .Chart.AppVersion.


home: "https://openfga.github.io/helm-charts"
icon: https://github.com/openfga/community/raw/main/brand-assets/icon/color/openfga-icon-color.svg
Expand Down