RepoJournal
FastAPI & Pydantic FastAPI & Pydantic
93 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-07-05
stories 12

ยฉ 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire ยท showcase

FASTAPI AND SQLMODEL PATCH CRITICAL GITHUB ACTIONS FLAW ACROSS THE STACK

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

Both FastAPI and SQLModel just closed a privilege escalation hole in their CI/CD pipelines where fork pull requests could execute untrusted code in trusted contexts.

The vulnerability sits in GitHub Actions checkout configurations [1] [2] [3]. When `actions/checkout@v7` runs in `pull_request_target` contexts, it was pulling fork code instead of the base repository's trusted code, creating a window for attackers to inject malicious workflows. FastAPI fixed this across two critical workflows , and SQLModel deployed the same fix . This matters because `pull_request_target` is the exact context where you run sensitive operations like release automation and notification systems. Meanwhile, Pydantic is shipping a performance win: caching the `ModelPrivateAttr.default_factory_takes_validated_data` property [4] [6] to eliminate redundant checks during model initialization. The team also clarified YAML example documentation [5] [7] to mention PyYAML as an explicit dependency rather than burying it in prose.

Action items

References

  1. [1] ๐Ÿ‘ท Fix notify translations checkout target โ†— fastapi/fastapi
  2. [2] ๐Ÿ‘ท Fix latest-changes checkout target โ†— fastapi/fastapi
  3. [3] ๐Ÿ‘ท Fix latest-changes checkout target โ†— tiangolo/sqlmodel
  4. [4] Cache `ModelPrivateAttr.default_factory_takes_validated_data` property โ†— pydantic/pydantic
  5. [5] Mention PyYAML installation for YAML example โ†— pydantic/pydantic
  6. [6] Cache `ModelPrivateAttr.default_factory_takes_validated_data` property (#13390) โ†— pydantic/pydantic
  7. [7] Mention PyYAML installation for YAML example (#13400) โ†— pydantic/pydantic

Quick answers

What shipped in FastAPI & Pydantic on July 5, 2026?
Both FastAPI and SQLModel just closed a privilege escalation hole in their CI/CD pipelines where fork pull requests could execute untrusted code in trusted contexts. In total, 6 commits and 6 pull requests landed.
Who contributed to FastAPI & Pydantic on July 5, 2026?
3 developers shipped this update, including tiangolo, Viicos, and dhruvatr.
What were the notable FastAPI & Pydantic updates?
๐Ÿ‘ท Fix notify translations checkout target, ๐Ÿ‘ท Fix latest-changes checkout target, and ๐Ÿ‘ท Fix latest-changes checkout target.