qntfy / kazaam

Arbitrary transformations of JSON in Golang
MIT License
282 stars 54 forks source link

Issue when installing kazaam v3 #69

Closed mammenj closed 6 years ago

mammenj commented 6 years ago

when executing in go version go1.9 linux/amd64 go get gopkg.in/qntfy/kazaam.v3 below output in command line

> # github.com/qntfy/kazaam/transform
> go-workspace/src/github.com/qntfy/kazaam/transform/uuid.go:33:18: multiple-value uuid.NewV4() in single-value context
ryanleary commented 6 years ago

Thanks for the report. Looks like the github.com/satori/go.uuid changed their New signature without increasing the major version number breaking this build. Our glide configuration, however, is locked to the correct version, so if you check out kazaam from git, run glide up, and then build yourself it should work.

In the meantime we'll get kazaam updated to use the new, changed signatures.

ryanleary commented 6 years ago

This bit some other people as well: https://github.com/satori/go.uuid/issues/66