* fix to use MustParse
* use MustParse(...) inseted of Must(Parse(...))
---------
Co-authored-by: Noah Dietz <noahdietz@users.noreply.github.com>
Co-authored-by: bormanp <122468813+bormanp@users.noreply.github.com>
The MustParse and MustNewUUID functions have been removed since they
can be replaced simply using the new function.
uuid.Must(uuid.Parse(s))
uuid.Must(uuid.NewUUID())
This also fixes a spurious bug in the UnmarshalJSON method that
prevented compiling the json.go file.