-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Builder Deserialization with Type Binding (#921) #1796
Builder Deserialization with Type Binding (#921) #1796
Conversation
Ok I should get that merged. Just one question: addition of the new method in |
Apologies for not following up on this sooner. I will add some javadoc and tests as soon as possible. Thanks for taking a look! |
…bindings by inferring those bindings from the value type. This behavior is not ideal, but addresses the common case, and is controlled by a MapperFeature.
e19083c
to
12161af
Compare
Added some javadoc and tests. Let me know how that looks! |
Apologies for slow follow-up here. I think it looks better. I think the only test that could be useful to add would be negative test, to see what happens with incompatible |
Note: now also backported to 2.12 (to be included in 2.12.0) |
Fantastic! Thank you. |
@cowtowncoder @vjkoskela Is this released? I am waiting for this fix. If not released, when can we expect this? |
@sumannewton As per issue itself, #921 (this is PR), it will be in 2.12.0. 2.12 is still being developed, and will be released "when it's ready": releases are not scheduled on time-basis. |
Extend support for deserializing via builder if the builder has type bindings by inferring those bindings from the value type. This behavior is not ideal, but addresses the common case, and is controlled by a MapperFeature. This is intended to begin to address the issue described in #921.