Skip to content

Commit

Permalink
release: v0.2.7 (#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhamzeh authored Mar 13, 2024
2 parents 57b6c5f + 1874edf commit 17f1c02
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ fga tuple **delete** <user> <relation> <object> --store-id=<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
```

Expand Down Expand Up @@ -787,7 +787,7 @@ fga tuple **read** [--user=<user>] [--relation=<relation>] [--object=<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
```
Expand Down

0 comments on commit 17f1c02

Please sign in to comment.