-
Notifications
You must be signed in to change notification settings - Fork 2k
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
[ProperitesChanged] Fix deserialization #4996
Conversation
A change merged with the `basic-element` caused the `type` argument to `_deserializeValue` to be called as a function to determine the deserialized output. This was an unintended breaking change from master and is reverted here. For example, the `basic-element` change regressed using a class constructor as a property type.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. I have restarted the build as there were test timeouts
After restarting tests are still timing out in Firefox, so some more updates are necessary apparently. |
Back down to the still bad, but consistent, Safari timeouts. |
Fixes #4995.
Fixes #5002.
A change merged with the
basic-element
caused thetype
argument to_deserializeValue
to be called as a function to determine the deserialized output. This was an unintended breaking change from master and is reverted here. For example, thebasic-element
change regressed using a class constructor as a property type.