jackson-dataformats-binary icon indicating copy to clipboard operation
jackson-dataformats-binary copied to clipboard

Uber-project for standard Jackson binary format backends: avro, cbor, ion, protobuf, smile

Results 96 jackson-dataformats-binary issues
Sort by recently updated
recently updated
newest added

Hey there! I'm using the CBOR jackson library with Kotlin and I'm having some issues when performing a CBOR encoding of an object. In this example I'm serializing the Person...

cbor

Assuming we have a Java POJO such as: ```java public record Test(String value, Instant ts) { } ``` And then we use: ```scala private val protobufMapper = ProtobufMapper.builder .addModule(new JavaTimeModule)...

protobuf

I have created a very simple avro schema file: ``` { "name":"SampleRecordDto", "type":"record", "namespace":"com.api.jsonata4java.avro.v1", "fields":[ { "name":"name", "type":"string" } ] } ``` Then generating a SampleRecordDto file from this using...

avro

Hello! I'm working on my own smile serializer/deserializer and, I think I found an issue in the Jackson implementation that does not match the specification. https://github.com/FasterXML/jackson-dataformats-binary/blob/1e4017a99143f0c6eb1ce86af4e144a2eebd1c0c/smile/src/main/java/com/fasterxml/jackson/dataformat/smile/SmileGenerator.java#L2732-L2743 According to the spec,...

With json, I could always extend an enum (on both sender and receiver ends), consider it a backwards compatible change, and the receiver could parse both old and new documents...

avro
pr-needed

When reading an ION file using a MappingIterator, the first line is omitted. ```java // This file has 5 lines File testFile = resourceToFile("test.ion"); ObjectMapper objectMapper = JacksonUtils.createIonObjectMapper(); MappingIterator mappingIterator...

ion
has-failing-test