You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
nodejs-security-wg has both float like 5.2 and string like "4.8 (Medium)" in the same key. But "4.8 (Medium)" is an invalid number and json.Number no longer accepts it after Go 1.14.
You will see the following error when you build the database with Go 1.14.
This is caused by this change.
golang/go#34272
nodejs-security-wg has both float like
5.2
and string like"4.8 (Medium)"
in the same key. But "4.8 (Medium)" is an invalid number and json.Number no longer accepts it after Go 1.14.I think we have to implement our original type as suggested here.
https://go.googlesource.com/go/+/master/doc/go1.14.html?autodive=0%2F%2F%2F%2F%2F#602
The text was updated successfully, but these errors were encountered: