Fix matching whole array when using $in operator#919
Open
hazard595 wants to merge 1 commit into
Open
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #919 +/- ##
========================================
Coverage 96.07% 96.07%
========================================
Files 35 35
Lines 10118 10119 +1
========================================
+ Hits 9721 9722 +1
Misses 397 397 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This was referenced May 19, 2026
Closed
engFelipeMonteiro
added a commit
to engFelipeMonteiro/mongomock-ng
that referenced
this pull request
May 21, 2026
Replicates mongomock#692 — closes #191 (immutable projection) Replicates mongomock#795 — closes #184 ($in comparison) Replicates mongomock#819 — closes #178 ($slice parsing) Replicates mongomock#847 — closes #170 ($addToSet $each) Replicates mongomock#860 — closes #169 ($redact support) Replicates mongomock#895 — closes #158 (collation signature) Replicates mongomock#919 — closes #154 ($in array matching) Replicates mongomock#933 — closes #147 (BulkOpBuilder sort) Replicates mongomock#936 — closes #145 (NaN handling) Replicates mongomock#944 — closes #144 (utcnow deprecation) Version bump: 7.4.0 -> 7.4.1
engFelipeMonteiro
added a commit
to engFelipeMonteiro/mongomock-ng
that referenced
this pull request
May 21, 2026
## [7.4.1] - 2026-05-21 ### Changed - Drop Python 3.14 from test matrix and classifiers — not yet stable, incompatible with runtime dependencies - Add pymongo 4.12.0 and 4.14.0 to hatch-test matrix for broader compatibility coverage ### Fixed - TTL document expiry no longer crashes on Python 3.13 — normalize naive datetimes to UTC-aware before subtraction in `_value_meets_expiry` (store.py) - Replace deprecated `datetime.utcfromtimestamp` with `datetime.fromtimestamp(..., tz=timezone.utc)` in aggregation `$convert` to date handlers (aggregate.py) - Replace deprecated `datetime.utcnow()` with `datetime.now(timezone.utc).replace(tzinfo=None)` in helpers and test suite - Fix hatch-test matrix so environment `hatch-test.*-4.11.0` correctly installs `pymongo==4.11.0` (missing `if` clause) - `find()` projection no longer mutates original document data (mongomock#692 — closes #191) - `$in` operator correctly handles empty-list values (mongomock#795 — closes #184) - `$slice` aggregation operator evaluates arguments as expressions (mongomock#819 — closes #178) - `$addToSet` with `$each` correctly deduplicates repeated values across runs (mongomock#847 — closes #170) - `$redact` aggregation stage now supported (mongomock#860 — closes #169) - `Cursor.collation` matches PyMongo 4.x method signature (mongomock#895 — closes #158) - `$in` operator matches whole arrays in document values (mongomock#919 — closes #154) - `BulkOperationBuilder.add_update` and `_update` support `sort` parameter (mongomock#933 — closes #147) - NaN comparison handling in filter `$eq` operator (mongomock#936 — closes #145) - Replace deprecated `datetime.utcnow` with `datetime.now(UTC)` on Python 3.11+ (mongomock#944 — closes #144)
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Selecting a list value in
$inquery fails in mongomock, but works in MongoDB.Similar to issue fixed in PR #91, but for the case when list of lists in passed as value for
$inquery.For example when the doc is
{'array_field': ['abc']}and the query is{'array_field': {'$in': [['abc']]}}mongomock returns an empty result, while the same query works in MongoDB.