Gojay Versions Save

high performance JSON encoder/decoder with stream API for Golang

1.0.4

5 years ago
  • Fix concurrency bug on Marshal methods reusing the same buffer

1.1.3

5 years ago
  • Fix concurrency bug on Marshal methods reusing the same buffer

1.2.4

5 years ago
  • Add decode null feature (taking a pointer to a pointer and leaving it untouched if null is encountered in JSON)
  • Add encoding with keys methods (encodes only the given keys for an object)
  • Add interface decoding (decode unknown interface values using standard JSON)

1.2.3

5 years ago
  • Add NullEmpty encoding method to encode null when value is empty
  • Add Null and NullKey methods on Encoder to encode a null

1.2.2

5 years ago

Fix bug on skip string when escaped solidus is present

1.2.1

5 years ago

Fix escape sequence bug on skipArray and skipObject

1.2.0

5 years ago
  • Add types SQLNullTypes time.Time
  • Fix and enhance escape sequence when decoding string

1.1.2

5 years ago

Fix bug on escape sequence when skipping objects and arrays

1.1.1

5 years ago
  • Fix bug in code generator when writing to a file in the same package. Generator now creates the destination file at the end.
  • Fix bug when null values are decoded on some number types and cursor is not updated properly

1.1.0

5 years ago
  • Code generator for struct, slices, maps
  • Adding new types for encoding/decoding
  • Updating doc
  • Adding tests