-
Notifications
You must be signed in to change notification settings - Fork 66
release(openfga): update openfga to 1.9.4 #241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
WalkthroughUpdated Helm chart metadata in charts/openfga/Chart.yaml: bumped chart version from 0.2.40 to 0.2.41 and appVersion from v1.9.3 to v1.9.4. No other changes. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
Suggested reviewers
✨ Finishing Touches🧪 Generate unit tests
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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
charts/openfga/Chart.yaml(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
- GitHub Check: lint-test
| version: 0.2.41 | ||
| appVersion: "v1.9.4" |
There was a problem hiding this comment.
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.4To 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 || trueLength 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
- GitHub Releases for openfga/openfga show v1.9.3 as the latest release (Aug 11, 2025). (github.com)
- The project changelog/CHANGELOG.md on the repo is up-to-date but does not list a v1.9.4 entry. (github.com)
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:
- 1: https://github.com/openfga/openfga/releases
- 2: https://github.com/openfga/openfga/releases
- 3: https://github.com/openfga/openfga/blob/main/CHANGELOG.md?utm_source=chatgpt.com
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.yamlsetsimage.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.
Description
Bumps OpenFGA to v1.9.4 which has a fix for a regression in OIDC validation when the audience is not set
What problem is being solved?
How is it being solved?
What changes are made to solve it?
References
closes #240
Review Checklist
mainSummary by CodeRabbit