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, I'm generating Avro Schema for POJO that uses inner classes and because of that namespace field contains $, which is a character not allowed by Avro schema. I think...

avro

(note: issue uncovered when working on fix for #434) It looks like following method in `IonFactory` ``` public IonParser createParser(IonReader in) { ... } ``` does not initialize state according...

ion
2.17

Hi! I was doing some work with the CBOR part of the library, and I found that it didn't decode or encode negative BigIntegers as I understand the spec. For...

cbor
pr-needed
2.17

Enums with '-' characters in values, fails ``` public enum EnumTypeContrat { CARD_S("CARD-S"), CARD_ELD("CARD-ELD"), GRD_F("GRD-F"), CSD("CSD"), GRD_RE("GRD-RE"), PROTOC_501("PROTOC-501"), CRAE("CRAE"), CARD_I("CARD-I"), CSD_I("CSD-I"); private final String value; EnumTypeContrat(String value) { this.value =...

avro
has-failing-test
2.17

Hello, I encountered something strange while doing some tests with the avro decoding. Example here, was ran in version 2.16.0: ```java String avroWithDefault = """ { "type": "record", "name": "Employee",...

avro

The wire plugin uses a mechanism of fall-back to default enum value (index 0) when the index is above the one in the schema, this ensure we don't break compatibility...

protobuf

Currently the ProtobufParser uses a condition (isStdEnum) to know it we need to deserialize using the index form or string form. case ENUM: // 12-Feb-2015, tatu: Can expose as index...

protobuf

``` public enum Foobar { @JsonEnumDefaultValue FOO, BAR; } produces { "type" : "enum", "name" : "Foobar", "namespace" : "foo", "symbols" : [ "FOO", "BAR" ] } ``` Need it...

avro
2.16

* I was looking for cases where TextBuffers are created and to changeover to the ReadConstrainedTextBuffer (as part of https://github.com/FasterXML/jackson-dataformats-binary/pull/357) * Ion code base only uses a TextBuffer in deprecated...

ion
2.15