avro-kotlin / avro4k

Avro format support for Kotlin
Apache License 2.0
188 stars 36 forks source link

fix: Assume kotlin.Pair as a normal data class instead of an union #174

Closed Chuckame closed 5 months ago

Chuckame commented 5 months ago

Closes #166

Breaking changes

kotlin.Pair is now a record instead of an union. It's at the same time a breaking change and a bug fix, as previously we were not able of serializing kotlin Pairs because it was an union instead of a record...