Releases: datasweet/jsonmap
Releases · datasweet/jsonmap
v1.1.2
fix nil and slice of jsonizer
v1.1.1 [fix] set slice of Jsonizer
Change API jsonmap.Set
Before :
jsonmap.Set(path string, v ...interface{})
Remove jsonmap.SetJSON(path string, v ...*jsonmap.Json)
Now:
jsonmap.Set(path string, v interface{})
If v is *jsonamp.Json or []*jsonmap.Json, it will be correctly inserted
Merge func
Add merge functionnality (#8) * Add merge functionnality * Add test Co-authored-by: Romain Vibrac <romain.vibrac@datasweet.fr>
Import go module
Fix import failed cause we merge the last commit and update the tag.
Go modules
v1.0.6 Fix go mod name... (#7)
Add utility to escape a path
Pull request : #5
Export tabify with custom table writer
v1.0.4 Export tabify with custom tablewriter. (#4)
Add a way to escape a path
* Add a way to put a '.' in the name a field. Put a \\ before it * Add tests
Fix JsonTableWriter
v1.0.2 Fix Jsontablewriter: must return slice of *json (#2)