You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've faced a problem with DateMidnightSerializer. It doesn't respect the Timezone from serialization context.
I think it's the only class that uses JacksonJodaDateFormat.createFormatterWithLocale
From description, I am guessing it might be as simple as adding missing .withOffsetParsed() in there, but I realized that I do not have means to reproduce the issue yet. Would it be possible to add a very simple reproduction here? That way I can see the problem, verify fix & guard against regression going forward.
I've faced a problem with DateMidnightSerializer. It doesn't respect the Timezone from serialization context.
I think it's the only class that uses JacksonJodaDateFormat.createFormatterWithLocale
jackson-datatype-joda/src/main/java/com/fasterxml/jackson/datatype/joda/ser/DateMidnightSerializer.java
Line 55 in e5dc3f5
while the others use JacksonJodaDateFormat.createFormatter
jackson-datatype-joda/src/main/java/com/fasterxml/jackson/datatype/joda/ser/DateTimeSerializer.java
Line 71 in e5dc3f5
and therefore aren't affected.
The text was updated successfully, but these errors were encountered: