From 76c76fb663d0753b4c7450d1f54eb1376ba17457 Mon Sep 17 00:00:00 2001 From: "openfga-releaser-bot[bot]" <274031225+openfga-releaser-bot[bot]@users.noreply.github.com> Date: Fri, 18 Sep 2026 14:06:36 +0000 Subject: [PATCH 1/2] release: v0.8.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bc5133dc..64f3cdd6 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.7.20" + ".": "0.8.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f4849c4..6c9e5d98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,30 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/). +## [0.8.0](https://github.com/openfga/cli/compare/v0.7.20...v0.8.0) (2026-09-18) + + +### ⚠ BREAKING CHANGES + +* references that resolve outside the store file's directory are rejected by default. Pass --allow-external-files to fga store import or fga model test to opt back in. + +### Added + +* add --name filter to store list ([#745](https://github.com/openfga/cli/issues/745)) ([4e0b6f6](https://github.com/openfga/cli/commit/4e0b6f6913d91484fb09ae7ea3ff4c8f5378708a)) +* add fga mapping init command ([#755](https://github.com/openfga/cli/issues/755)) ([364fae5](https://github.com/openfga/cli/commit/364fae572dbe6c48588add35a69eb8464091a5f5)) +* add fga mapping run command ([#761](https://github.com/openfga/cli/issues/761)) ([efaa114](https://github.com/openfga/cli/commit/efaa1149d8759608cf143689b0055718dfac01d8)) +* add fga mapping test command ([#754](https://github.com/openfga/cli/issues/754)) ([869e1cd](https://github.com/openfga/cli/commit/869e1cd2fb2a5a503ef0ac7bcdac5391fe8ffc9f)) +* add fga mapping validate command ([#753](https://github.com/openfga/cli/issues/753)) ([3e643cc](https://github.com/openfga/cli/commit/3e643cc838395e0276753e7c501a62c7d1ad01d5)) +* **mapping:** add interactive explorer to mapping run ([#763](https://github.com/openfga/cli/issues/763)) ([03a3e65](https://github.com/openfga/cli/commit/03a3e65dcad5afe9f6008ac8c6d8b10f760de120)) +* update language package for $expression support ([#762](https://github.com/openfga/cli/issues/762)) ([79bce9b](https://github.com/openfga/cli/commit/79bce9bb219d4670ef791091bb863958f806e482)) + + +### Fixed + +* contain store YAML file references to the store file's directory ([#737](https://github.com/openfga/cli/issues/737)) ([cef729e](https://github.com/openfga/cli/commit/cef729e5d1a473021796f4d76ac003dad8941c36)) +* skip non-regular files matched by glob in model test ([#742](https://github.com/openfga/cli/issues/742)) ([73d22a2](https://github.com/openfga/cli/commit/73d22a21263401cdab7044d0b2ef65fe2f0794e4)) +* **tuple:** inline pointer literal to satisfy modernize linter ([#757](https://github.com/openfga/cli/issues/757)) ([ba5d115](https://github.com/openfga/cli/commit/ba5d115a60abcc92ce95ef0839d73994ff41778a)) + ## [0.7.20](https://github.com/openfga/cli/compare/v0.7.19...v0.7.20) (2026-08-10) From 02bab97534cc8fecd4f20e4c407c6eac48035aea Mon Sep 17 00:00:00 2001 From: Ewan Harris Date: Fri, 18 Sep 2026 15:11:24 +0100 Subject: [PATCH 2/2] docs: fix changelog breaking change entry --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c9e5d98..4f7762b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). ### ⚠ BREAKING CHANGES -* references that resolve outside the store file's directory are rejected by default. Pass --allow-external-files to fga store import or fga model test to opt back in. +* File references that resolve outside the store file's directory are rejected by default. Pass `--allow-external-files` to `fga store import` or `fga model test` to opt back in. ### Added