-
Notifications
You must be signed in to change notification settings - Fork 1.8k
feat(firestore): add PyMongo duck-typing serialization support #18406
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
Open
Open
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
fcffa27
feat(firestore): add BSONRegex support
ohmayr d133864
refactor(firestore): address review feedback for BSONRegex options va…
ohmayr a614d3f
refactor(firestore): defer BSONRegex options validation to backend
ohmayr 7dad0c3
test(firestore): add system tests for BSONRegex with invalid options
ohmayr 9e7e5f5
feat(firestore): add BSONDecimal128 support
ohmayr a52bb0a
refactor(firestore): address review feedback for BSONDecimal128
ohmayr 96bcd32
fix(firestore): handle signaling NaN strings in BSONDecimal128.__float__
ohmayr f513edc
fix(firestore): disallow float in BSONDecimal128 and validate input s…
ohmayr b7ac973
feat(firestore): add BSON read deserialization support
ohmayr 5bab625
refactor(firestore): address review feedback for BSON read deserializ…
ohmayr b3443ff
refactor(firestore): restore precise return types and docstrings on d…
ohmayr f4bba9b
refactor(firestore): align decode_dict and PipelineResult.data return…
ohmayr f6327c1
fix(firestore): restore required client parameter and format comprehe…
ohmayr b065d0f
refactor(firestore): expose BSONType publicly
ohmayr 8217cd3
feat(firestore): add BSON cross-type query ordering support
ohmayr fcbc4d1
fix(firestore): streamline BSON cross-type ordering and numeric compa…
ohmayr 9874bff
fix(firestore): resolve lint E741 and format in compare_numbers
ohmayr 705274a
fix(firestore): separate BSON_TIMESTAMP in TypeOrder and optimize com…
ohmayr d079139
feat(firestore): add PyMongo duck-typing serialization support
ohmayr 0107a0c
feat(firestore): optimize PyMongo duck typing serialization and deleg…
ohmayr 977f9c0
fix(firestore): preserve Binary subtype and support int flags in duck…
ohmayr File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Can opts here be non-string? Gemini flagged this as a potential issue
(I know I started a thread suggesting to not support int, but I don't feel too strongly one way or the other if it would make things easier here. We just need to make sure we're communicating what flags we accept and what we reject clearly)