From 1874edf73c89f20dae0ef2a1c21a26a167e1d6d9 Mon Sep 17 00:00:00 2001 From: Raghd Hamzeh Date: Wed, 13 Mar 2024 16:47:13 -0400 Subject: [PATCH] release: v0.2.7 --- CHANGELOG.md | 14 ++++++++++++++ README.md | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d688ed7..9208b1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## v0.2.7 + +### [0.2.7](https://github.com/openfga/cli/compare/v0.2.6...v0.2.7) (2024-04-27) + +Added: +- Support for exporting tuples as CSV (#250) - thanks @edwin-Marrima + +Changed: +- Simplify the output of `model test` (#265) +- go > v1.21.8 is now required (#272) + +Deprecated: +- The `--simple-output` flag in `tuple read` has been deprecated in favour of `--output-format=simple-json` (#250) - thanks @edwin-Marrima + ## v0.2.6 ### [0.2.6](https://github.com/openfga/cli/compare/v0.2.5...v0.2.6) (2024-02-27) diff --git a/README.md b/README.md index 02151c5..732a101 100644 --- a/README.md +++ b/README.md @@ -737,7 +737,7 @@ fga tuple **delete** --store-id= If you want to delete all the tuples in a store, you can use the following code: ``` -fga tuple read --simple-output --max-pages=0 > tuples.json +fga tuple read --output-format=simple-json --max-pages=0 > tuples.json fga tuple delete --file tuples.json ``` @@ -787,7 +787,7 @@ fga tuple **read** [--user=] [--relation=] [--object=] If you want to transform this output in a way that can be then imported using the `fga tuple import` you can run ``` -fga tuple read --simple-output --max-pages 0 > tuples.json +fga tuple read --output-format=simple-json --max-pages 0 > tuples.json fga tuple import --file tuples.json ```