File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
17
## v0.2.6
4
18
5
19
### [ 0.2.6] ( https://github.com/openfga/cli/compare/v0.2.5...v0.2.6 ) (2024-02-27)
Original file line number Diff line number Diff line change @@ -737,7 +737,7 @@ fga tuple **delete** <user> <relation> <object> --store-id=<store-id>
737
737
If you want to delete all the tuples in a store, you can use the following code :
738
738
739
739
` ` `
740
- fga tuple read --simple-output --max-pages=0 > tuples.json
740
+ fga tuple read --output-format= simple-json --max-pages=0 > tuples.json
741
741
fga tuple delete --file tuples.json
742
742
` ` `
743
743
@@ -787,7 +787,7 @@ fga tuple **read** [--user=<user>] [--relation=<relation>] [--object=<object>]
787
787
If you want to transform this output in a way that can be then imported using the `fga tuple import` you can run
788
788
789
789
```
790
- fga tuple read --simple-output --max-pages 0 > tuples.json
790
+ fga tuple read --output-format= simple-json --max-pages 0 > tuples.json
791
791
fga tuple import --file tuples.json
792
792
```
793
793
You can’t perform that action at this time.
0 commit comments