Since 1.4.1 we no longer seem to have any `@Serial...
# serialization
p
Since 1.4.1 we no longer seem to have any
@SerialInfo
annotations on the descriptor of our enums (currently used for
@AvroNamespace
) - is this a known issue? Doesn’t look to be fixed in 1.5.0 either.
We’re explicitly generating a serializer for the enums, but it’s interesting that in 1.4.0 if we remove
@Serializable
we get a warning in IntelliJ about using needing an explicit
@Serializable
when using a
@SerialInfo
annotation, however in 1.4.1 and 1.5.0-RC the warning doesn’t appear. That being said, even with the explicit
@Serializable
annotation, there are no annotations present on the descriptor with 1.4.1+.
This a tiny reproducer of what we’re seeing.