RepoJournal
FastAPI & Pydantic FastAPI & Pydantic
94 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-11
stories 2

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Pydantic aligned enum constructors with both validation modes

By RepoJournal · Filed · About FastAPI & Pydantic · Composed from the cited sources · methodology

1 person shipped this

Pydantic now calls enum constructors in both validation modes, closing a behavioral gap that dated back to two pydantic-core changes.

Pydantic has changed how enum validation resolves values, so the enum class is now called in both validation modes [1]. The gap originated when pydantic-core introduced handling that never called the enum class, forcing `_missing_()` to be passed manually in the core schema [1]. A later pydantic-core change shifted that behavior again, and this fix reconciles it [1].

For code relying on custom enum `_missing_()` logic, this means the manual plumbing is no longer required in the core schema [1]. The change lands through the commit call enum constructors in both validation modes [2].

No version number, release tag, or breaking-change warning accompanies this change in the available details [1][2].

Quick answers

What shipped in FastAPI & Pydantic on September 11, 2026?
Pydantic now calls enum constructors in both validation modes, closing a behavioral gap that dated back to two pydantic-core changes. In total, 1 commits and 1 pull requests landed.
Who contributed to FastAPI & Pydantic on September 11, 2026?
1 developer shipped this update, including Viicos.
What were the notable FastAPI & Pydantic updates?
Call enum constructors in both validation modes and Call enum constructors in both validation modes (#13792).