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-03
stories 8

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

Pydantic hardens JSON mode serialization error handling

By RepoJournal · Filed · About FastAPI & Pydantic

Pydantic's JSON mode serialization now catches any exception when computing JSON Schema defaults, reducing spurious errors that leaked through.

Pydantic merged a change that makes `dump_python()` with `mode='json'` more robust [1]. Previously, several exceptions raised while computing JSON Schema defaults were propagated as-is instead of being wrapped in a `PydanticSerializationError`; now the code handles any exception raised when computing a default, so callers see consistent error handling.

Maintenance continues with a CI dependency bump: `actions/checkout` moves from 7.0.0 to 7.0.1 [2]. The release note highlights a fix that skips running an unsafe PR check when the input is the default, which reduces needless failures during pull request validation.

A docstring touch-up fixes a duplicate word, changing "it it" to "it" in the fields documentation [3]. No behavior changes are involved.

Quick answers

What shipped in FastAPI & Pydantic on September 3, 2026?
Pydantic's JSON mode serialization now catches any exception when computing JSON Schema defaults, reducing spurious errors that leaked through. In total, 2 commits and 6 pull requests landed.
Who contributed to FastAPI & Pydantic on September 3, 2026?
3 developers shipped this update, including dependabot, Lichao Chen, and Viicos.
What were the notable FastAPI & Pydantic updates?
Handle any exception when trying to compute JSON Schema default, Bump actions/checkout from 7.0.0 to 7.0.1, and Fix duplicate word 'it it' in fields docstring (#13756).