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
Various "optimizations" for ObjectMapper.convertValue() -- that is, short-circuit code that tries to figure out if it is possible to omit write+read handling altogether and simply return input value -- have caused much confusion, and even breakage for legit use cases (even if most cases have been resolved by more heuristics).
But it seems that best course would be to simplify things and simply always do write+read handling and let caller handle optimizations if ones are desired.
For backwards compatibility reasons let's do this for 3.0 however.