data classes annotated with @JvmRecord were deserializable in earlier jackson versions just through the plain java record support. But now it seems you need to register KotlinModule on the objectmapper. KotlinModule is slower than the plain java record deserializer so I would prefer to get that behavior back. How do I customize my objectmapper to use that deserializer?