Releases: linkedin/avro-util
Releases · linkedin/avro-util
0.2.1
Release notes:
0.1.19
add newBinaryDecoder which re-configures a BinaryDecoder in AvroCompa…
Bug fix in CompositeByteBuffer related to object reuse
Bug fix in CompositeByteBuffer related to object reuse.
0.1.17: bug fix in fast-avro lib
Fixed two bugs in FastDeserializerGenerator (#46) 1. fixed null exception when updating actual exceptions for already generated record method; 2. corrected value action symbols iteration order for nested Map; Co-authored-by: Bingfeng Xia <[email protected]>
0.1.16: test publishing artifact to Bintray
Fixed a bug in processUnion of FastSerializer (#44) Previously, the code is checking schema type to decide the right index, and this change was introduced to accommodate Avro-1.4, but this is not appropriate since Union could contain multiple record types, which will cause the writen index will always be the index of the first record. The fix is to check the full name of the schema instead of type name.
0.1.15: Fast-avro - fixed a bug when processing union in Fast Serializer
Fixed a bug in processUnion of FastSerializer (#44) Previously, the code is checking schema type to decide the right index, and this change was introduced to accommodate Avro-1.4, but this is not appropriate since Union could contain multiple record types, which will cause the writen index will always be the index of the first record. The fix is to check the full name of the schema instead of type name.
0.1.14: Bug fix in fast-avro
Initialize ByteBuffer for PrimitiveFloatList List<Float> interface us…
0.1.13 : Get rid of jboss-logging-spi dependency
Implement WeakIdentityHashMap in avro-fastserde
0.1.12: Fast-avro improvements
There are two major improvements in the release about fast-avro:
- Utility functions to cache Fast DatumReader/DatumWriter to minimize the overhead of retrieving back Fast DatumReader/DatumWriter according to schemas;
- Lazy de-serialization by using
ByteBuffer
to improve the float array de-serialization by 40%;
0.1.11: remove avro-fastserde's declared dependency on helper from pom (#34)
Co-authored-by: Radai Rosenblatt <[email protected]>