Releases: francoispqt/gojay
Releases · francoispqt/gojay
v1.1.3
- Fix concurrency bug on Marshal methods reusing the same buffer
v1.0.4
- Fix concurrency bug on Marshal methods reusing the same buffer
v1.2.4
- 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)
v1.2.3
- Add
NullEmpty
encoding method to encodenull
when value is empty - Add
Null
andNullKey
methods on Encoder to encode anull
v1.2.2
Fix bug on skip string when escaped solidus is present
v1.2.1
Fix escape sequence bug on skipArray and skipObject
v1.2.0
- Add types
SQLNullTypes
time.Time - Fix and enhance escape sequence when decoding string
v1.1.2
Fix bug on escape sequence when skipping objects and arrays
v1.1.1
- 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
v1.1.0
- Code generator for struct, slices, maps
- Adding new types for encoding/decoding
- Updating doc
- Adding tests