From bf585f17ea13910acb3c6ed519700ddb47e89c84 Mon Sep 17 00:00:00 2001 From: openfga-releaser-bot Date: Wed, 17 Jun 2026 13:45:40 +0000 Subject: [PATCH 1/4] chore: release 0.7.16 Release-As: 0.7.16 From 68b358e027de1db25a5f1800d80cccd05982756d Mon Sep 17 00:00:00 2001 From: "openfga-releaser-bot[bot]" <274031225+openfga-releaser-bot[bot]@users.noreply.github.com> Date: Wed, 17 Jun 2026 13:45:50 +0000 Subject: [PATCH 2/4] release: v0.7.16 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 694d65b4..e5c1bfef 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.7.15" + ".": "0.7.16" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ef75f44..910204f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/). +## [0.7.16](https://github.com/openfga/cli/compare/v0.7.15...v0.7.16) (2026-06-17) + + +### Changed + +* replace go-multierror with stdlib, remove dep ([#705](https://github.com/openfga/cli/issues/705)) ([2e9afa2](https://github.com/openfga/cli/commit/2e9afa2397b61561ca0652be5d21a1b2197f1912)) + + +### Miscellaneous + +* release 0.7.16 ([bf585f1](https://github.com/openfga/cli/commit/bf585f17ea13910acb3c6ed519700ddb47e89c84)) + ## [0.7.15](https://github.com/openfga/cli/compare/v0.7.13...v0.7.15) (2026-05-20) From b54c4f89fe75108018941125c036e5bfc28a37b7 Mon Sep 17 00:00:00 2001 From: Anurag Bandyopadhyay Date: Wed, 17 Jun 2026 19:20:40 +0530 Subject: [PATCH 3/4] chore: fix up changelog, add openfga bump note Update bundled OpenFGA to v1.18.0 and remove go-multierror dependency. --- CHANGELOG.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 910204f1..dc35ff7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,12 +10,9 @@ This project adheres to [Semantic Versioning](https://semver.org/). ### Changed * replace go-multierror with stdlib, remove dep ([#705](https://github.com/openfga/cli/issues/705)) ([2e9afa2](https://github.com/openfga/cli/commit/2e9afa2397b61561ca0652be5d21a1b2197f1912)) +* Update bundled OpenFGA to [v1.18.0](https://github.com/openfga/openfga/releases/tag/v1.18.0) -### Miscellaneous - -* release 0.7.16 ([bf585f1](https://github.com/openfga/cli/commit/bf585f17ea13910acb3c6ed519700ddb47e89c84)) - ## [0.7.15](https://github.com/openfga/cli/compare/v0.7.13...v0.7.15) (2026-05-20) From 6a0b6dec1d92cf042e6187dbed2af44c884c23be Mon Sep 17 00:00:00 2001 From: Raghd Hamzeh Date: Wed, 17 Jun 2026 23:00:21 -0400 Subject: [PATCH 4/4] chore: update Changelog with model size addition --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc35ff7e..978d23a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ This project adheres to [Semantic Versioning](https://semver.org/). ## [0.7.16](https://github.com/openfga/cli/compare/v0.7.15...v0.7.16) (2026-06-17) +### Added + +* Add a size field to `fga model get` and `size_kb` to `fga model validate` output, reporting the protobuf-serialized size of an authorization model in KB. ([#712](https://github.com/openfga/cli/pull/712)) ### Changed