FasterXML / jackson-module-kotlin

Module that adds support for serialization/deserialization of Kotlin (http://kotlinlang.org) classes and data classes.
Apache License 2.0
1.11k stars 175 forks source link

fix Kotlin master (3.0) test failures -- due to `MapperFeature.ALLOW_FINAL_FIELDS_AS_MUTATORS` default change; #808

Closed JooHyukKim closed 4 weeks ago

JooHyukKim commented 1 month ago

addresses part of #807

cowtowncoder commented 1 month ago

@JooHyukKim There may have been a misunderstanding here -- I did not mean Kotlin module should use different setting, but that test classes would be changed to use old setting. Default behavior of the module should not differ from jackson-databind in 3.0.

Would it be possible to just change ObjectMapper configuration just for tests that are failing? (ideally tests would not rely on this, but on short term they may).

JooHyukKim commented 1 month ago

Ah, okay. will do 👍🏼