-
Notifications
You must be signed in to change notification settings - Fork 217
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
Serialization Issues with PydanticObjectId and Link in Beanie 1.27.0 [BUG] #1043
Comments
Same for me. Rollbacked to 1.26.0 |
BTW secondly this makes valid lets recapitulate class MyDoc(Document):
related_id: str
MyDoc(related_id=PydanticObjectId()) Should expected to fail in same way putting arbitrary object into another object that does not inherit 1st without conversion. also Here is workaround i am proposing for you code if you do not want to convert your database should work as well class MyDoc(Document):
related_id: PydanticObjectId
MyDoc(related_id=PydanticObjectId()) this is probably what you wanted in 1st place but i would double check and convert data |
@danielxpander @martincpt please share your thoughts... but there is definite rationale and i consider this was serialization bug and carry over from pydantic v1 |
Rationale or not, this is still a breaking change in a minor release. While I can see how it's debatable whether I have a really big codebase relying on |
In this specific case, we have a logging protocol where we chose to store the value as a string because it's not always a PydanticObjectId. Of course, in other cases, we prefer to store data in its original form, specifically using a Link type (a.k.a DBRef). I understand your perspective, but I feel it might be a bit strict. I don't think the previous, more lenient serialization was a significant issue. As long as it's not introducing a security risk, I would be in favor of keeping it as is—or at least giving users the option to choose whether the package should allow serialization from a string or not. |
Describe the bug
Since upgrading to Beanie 1.27.0, we've encountered several serialization problems with PydanticObjectId and Link objects.
It seems that PydanticObjectId no longer automatically casts itself to a string primitive during Pydantic serialization.
To Reproduce
Example 1:
Ends up with
pydantic_core._pydantic_core.ValidationError
.Example 2:
Ends up with
TypeError: Object of type PydanticObjectId is not JSON serializable
.The above snippets worked fine in version 1.26.0 but now fails in 1.27.0.
Expected behavior
The expected behavior is that PydanticObjectId should automatically cast itself to a string during Pydantic serialization, as it did in version 1.26.0.
Additional context
We traced the issue to the introduction of a new
when_used="json"
attribute in the__get_pydantic_core_schema__
methods, which seems to be the core cause of the problem.We acknowledge that our type casting may not have been very strict, but the previous behavior was convenient and worked seamlessly. Without this attribute, all serialization appears to function as expected.
Questions:
when_used="json"
?Thank you for your hard work and for maintaining such an awesome package!
The text was updated successfully, but these errors were encountered: