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 ```