Gojay Versions Save

high performance JSON encoder/decoder with stream API for Golang

1.0.3

5 years ago
  • Fix bug with one decimal introduced in previous patch
  • Add tests

1.0.2

5 years ago
  • Fix cases where parsing malformed numbers caused panics
  • Make negative number decoding to uint values return an InvalidUnmarshalError inline with encoding/json
  • Add gofuzz helper
  • Clean exponent syntax building

1.0.1

5 years ago
  • Fix cases where malformed JSON number could cause panic
  • Add go-fuzz in examples

1.0.0

5 years ago
  • Follow RFC7159 (Exponent syntax for numbers, unicode code point syntax tests)
  • optimise Unsafe API
  • simplify API
  • thorough test suite

0.10.7

6 years ago
  • Use sync.Pool to pool decoders and encoders

0.10.6

6 years ago
  • Add int64 encoding methods
  • optimisations
  • fix bug on in array object key encoding

0.10.5

6 years ago
  • Add support for EmbeddedJSON
  • Optimise Encoding

0.10.4

6 years ago
  • Add escape of control characters in encoding
  • Add DecodeObjectFunc and EncodeObjectFunc types
  • Add tests

0.10.3

6 years ago
  • Fix potential issue with io.ReadCloser
  • Add examples with http package

0.10.2

6 years ago
  • Adding support to parse all keys when NKeys returns 0
  • Adding tests an docs