Skip to content

Commit

Permalink
Release 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sgarciac committed Aug 29, 2021
1 parent f0e5127 commit 9e0a2d4
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.20.0]
### Changed
- Input JSON is now interpreted using the semantics described in the TYPES.md
file, which supports a larger set of firestore types.
- Documents output *can* be demanded to be transformed to the same notation, in
order to have extra typing information.
- All documents are not displayed using the full document snapshot data
information.
- Document snapshot data now includes the full path of the ducument.
- Several documentation improvements.

## [0.15.0]
### Changed
- Changes arguments for getall and deleteall commands.
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func cliClientError(err error) *cli.ExitError {

func main() {
app := cli.NewApp()
app.Version = "0.15.0"
app.Version = "0.20.0"
app.Name = "Fuego"
app.Usage = "A firestore client"
app.EnableBashCompletion = true
Expand Down
15 changes: 15 additions & 0 deletions release-notes/0.20.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
- Introduces a notation (that we call 'extended json') for supporting writing
some extra firestore types: int (all numbers where transformed to floating point
before), geopoints and binary. Dates are now supported via this new notation, t
he old 'timestamps' flag is therefore removed.

- Commands that display firestore documents (get, getall, query) now accept a
new flag to print documents using the new notation. By default, the default unma
rshalling is used (which loses type information).

- All commands that display firestore documents now display the full informati
on of the document snapshot (as it was the case only for the query command befor
e) instead of only the data.

- Documents are now displayed with the full path.

0 comments on commit 9e0a2d4

Please sign in to comment.