RepoJournal
FastAPI & Pydantic FastAPI & Pydantic
81 wires and counting

$ follow FastAPI & Pydantic

Keep up with FastAPI & Pydantic in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-09-07
stories 6

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Pydantic fixes Mypy plugin crash, tightens datetime constraints

By RepoJournal · Filed · About FastAPI & Pydantic

1 person shipped this

Two fixes in pydantic/pydantic resolve a Mypy plugin crash from import cycles and correct supported constraints for datetime module types.

The Pydantic Mypy plugin no longer crashes when confronted with import cycles [1]. The fix addresses issue #11329, where cyclic imports could trigger a crash during type analysis. This change makes the plugin more robust for projects that rely on circular imports, a common pattern in larger codebases.

A related fix corrects the supported constraints for types in the `datetime` module [2]. The commit ensures that validation constraints are properly applied to datetime types, aligning behavior with Pydantic's documented support. This affects models that use datetime subclasses or constrained datetime fields.

Both changes are authored by Viicos and are currently in development, so they have not yet shipped in a release. If you use the Mypy plugin with cyclical imports or rely on constrained datetime types, watch for these fixes in the next Pydantic release.

Quick answers

What shipped in FastAPI & Pydantic on September 7, 2026?
Two fixes in pydantic/pydantic resolve a Mypy plugin crash from import cycles and correct supported constraints for datetime module types. In total, 3 commits and 3 pull requests landed.
Who contributed to FastAPI & Pydantic on September 7, 2026?
1 developer shipped this update, including Viicos.
What were the notable FastAPI & Pydantic updates?
Fix Mypy plugin crash with import cycle and Fix supported constraints for types of `datetime` module (#13768).