Skip to content

Fix use of deprecated datetime.utcnow#944

Open
orgads wants to merge 1 commit into
mongomock:developfrom
orgads:patch-1
Open

Fix use of deprecated datetime.utcnow#944
orgads wants to merge 1 commit into
mongomock:developfrom
orgads:patch-1

Conversation

@orgads

@orgads orgads commented May 10, 2026

Copy link
Copy Markdown
helpers.py:73: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).

@orgads orgads force-pushed the patch-1 branch 2 times, most recently from ed3884b to 591500d Compare May 10, 2026 14:21
helpers.py:73: DeprecationWarning: datetime.datetime.utcnow() is
deprecated and scheduled for removal in a future version. Use
timezone-aware objects to represent datetimes in UTC:
datetime.datetime.now(datetime.UTC).
engFelipeMonteiro added a commit to engFelipeMonteiro/mongomock-ng that referenced this pull request May 21, 2026
Replicates mongomock#692closes #191 (immutable projection)
Replicates mongomock#795closes #184 ($in comparison)
Replicates mongomock#819closes #178 ($slice parsing)
Replicates mongomock#847closes #170 ($addToSet $each)
Replicates mongomock#860closes #169 ($redact support)
Replicates mongomock#895closes #158 (collation signature)
Replicates mongomock#919closes #154 ($in array matching)
Replicates mongomock#933closes #147 (BulkOpBuilder sort)
Replicates mongomock#936closes #145 (NaN handling)
Replicates mongomock#944closes #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#692closes #191)
- `$in` operator correctly handles empty-list values (mongomock#795closes #184)
- `$slice` aggregation operator evaluates arguments as expressions (mongomock#819closes #178)
- `$addToSet` with `$each` correctly deduplicates repeated values across runs (mongomock#847closes #170)
- `$redact` aggregation stage now supported (mongomock#860closes #169)
- `Cursor.collation` matches PyMongo 4.x method signature (mongomock#895closes #158)
- `$in` operator matches whole arrays in document values (mongomock#919closes #154)
- `BulkOperationBuilder.add_update` and `_update` support `sort` parameter (mongomock#933closes #147)
- NaN comparison handling in filter `$eq` operator (mongomock#936closes #145)
- Replace deprecated `datetime.utcnow` with `datetime.now(UTC)` on Python 3.11+ (mongomock#944closes #144)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant