Closed scranen closed 6 years ago
I don't know why this used to pass, but I think it should not since you are explicitly disabling auto-detection of creators but are not using @JsonCreator
marker.
That is, it seems that earlier visibility checking was done incorrectly.
To resolve this, you would need to change visibility for creators by adding:
.setVisibility(PropertyAccessor.CREATOR, JsonAutoDetect.Visibility.ANY)
(or whatever baseline visibility you think is acceptable)
The following test passes in 2.9.1, but fails in 2.9.2:
This may or may not be related to the changes that cause this regression.