Tatu Saloranta

Results 2493 comments of Tatu Saloranta

Thinking about this a bit more, I realized that maybe `@JsonValue` on single constructor/factory method argument SHOULD imply "delegating" creator. And sent a question on `jackson-dev` list to see if...

and the usual question to help @apatrida: is this with 2.9.5?

And just to make sure: test reproductions can not use Lombok directly -- they must use results of Lombok's processing, but Jackson does not (and can not) know anything about...

Anyone want to do a trivial little PR to include Actual Classname of the Thing That Is Not `StdValueInstantiator`? That'd make it much easier to resolve whatever the root cause...

@apatrida Nothing specific comes to mind, although perhaps overriding methods in `AnnotationIntrospector` could work. Specifically `findNameForDeserialization` and `findNameForSerialization` could block auto-inclusion by returning `null` if `internal` modifier is detected (or,...

@apatrida Package local inclusion depends on both per-accessor minimum levels (only `public` getters and fields are auto-discovered; but all levels of setters), and association by naming (meaning that `public` getter/setter...

It would be great if there was a contribution for running something that would cross-check version compatibilities (specific kotlin core, specific Jackson minor version), as a matrix. While automation like...

Which base project would you be thinking of here? I would not suggest doing this for Kotlin module itself (f.ex). At any rate, the idea of external integration test project...

@jgorgen 2.12.1 is an old version, so at very least should test with 2.12.7 (latest from 2.12). But ideally with latest release 2.13.4. I assume reproduction is still valid but...

Thank you @Richie94. Yes, that would be problematic; for original Java Beans there is this limitation -- but Kotlin does not impose it so ideally Jackson would not either, in...