Skip to content

Commit 17f1c02

Browse files
authored
release: v0.2.7 (#281)
2 parents 57b6c5f + 1874edf commit 17f1c02

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## v0.2.7
4+
5+
### [0.2.7](https://github.com/openfga/cli/compare/v0.2.6...v0.2.7) (2024-04-27)
6+
7+
Added:
8+
- Support for exporting tuples as CSV (#250) - thanks @edwin-Marrima
9+
10+
Changed:
11+
- Simplify the output of `model test` (#265)
12+
- go > v1.21.8 is now required (#272)
13+
14+
Deprecated:
15+
- The `--simple-output` flag in `tuple read` has been deprecated in favour of `--output-format=simple-json` (#250) - thanks @edwin-Marrima
16+
317
## v0.2.6
418

519
### [0.2.6](https://github.com/openfga/cli/compare/v0.2.5...v0.2.6) (2024-02-27)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ fga tuple **delete** <user> <relation> <object> --store-id=<store-id>
737737
If you want to delete all the tuples in a store, you can use the following code:
738738

739739
```
740-
fga tuple read --simple-output --max-pages=0 > tuples.json
740+
fga tuple read --output-format=simple-json --max-pages=0 > tuples.json
741741
fga tuple delete --file tuples.json
742742
```
743743

@@ -787,7 +787,7 @@ fga tuple **read** [--user=<user>] [--relation=<relation>] [--object=<object>]
787787
If you want to transform this output in a way that can be then imported using the `fga tuple import` you can run
788788

789789
```
790-
fga tuple read --simple-output --max-pages 0 > tuples.json
790+
fga tuple read --output-format=simple-json --max-pages 0 > tuples.json
791791
fga tuple import --file tuples.json
792792
```
793793

0 commit comments

Comments
 (0)