Tatu Saloranta

Results 2493 comments of Tatu Saloranta

I don't think standard processing should cause any logging: if and when configuration values are to be called, calling application should request those to be logged in my opinion, not...

Just out of curiosity: is the current release process using standard Maven release plug-in, or something else? If it's just that, I could help with making releases too (or show...

I think regardless of automation we could start with manual: I am not necessarily opposed to automation, but I think it requires use of something like Travis, and non-trivial set...

This is now broken due to incompatible definition of "due_date" property in `GitlabIssue` POJO. It should NOT mix `java.util.Date` with `java.time.LocalDate`: one or the other should be used; and if...

@ragnese the usual split would be that `jackson-databind` had an extension point that allows certain kinds of configurability -- such as "external" creators -- and then modules (like Kotlin or...

@ragnese Jackson allows addition of "mix-in annotations", explained f.ex here: https://medium.com/@shankar.ganesh.1234/jackson-mixin-a-simple-guide-to-a-powerful-feature-d984341dc9e2 so you can basically say "use annotations this class/interface has same as if they were part of class [target...

So just to confirm I understand this: it'd be good to have special handling for Value types that consists of a single `String` property? Yes, I can see how that...

I hope module maintainers can help here, unfortunately I don't really know the codebase. But I think there may already be key serializers/deserializers added via KotlinModule. These are separate from...

+1 for what @dinomite said. One other quick note: `DatabindException` is the "new" base type added to be used in 3.0: it will replace `JsonMappingException` there; with 2.x it is...

Yeah to me using "is-getter" for non-boolean values seems kind of wrong, but I know Kotlin specifies that as legit use case. I changed handling in 2.11 to be more...