An open index of dependabot pull requests across open source projects.

Bump fastapi from 0.115.12 to 0.119.1

Closed
Number: #1034
Type: Pull Request
State: Closed
Author: dependabot[bot] dependabot[bot]
Association: Unknown
Comments: 1
Created: October 20, 2025 at 11:09 PM UTC
(2 months ago)
Updated: October 28, 2025 at 12:04 AM UTC
(2 months ago)
Closed: October 28, 2025 at 12:04 AM UTC
(2 months ago)
Time to Close: 7 days
Labels:
dependencies python
Description:

Bumps fastapi from 0.115.12 to 0.119.1.

Release notes

Sourced from fastapi's releases.

0.119.1

Fixes

  • ๐Ÿ› Fix internal Pydantic v1 compatibility (warnings) for Python 3.14 and Pydantic 2.12.1. PR #14186 by @โ€‹svlandeg.

Docs

  • ๐Ÿ“ Replace starlette.io by starlette.dev and uvicorn.org by uvicorn.dev. PR #14176 by @โ€‹Kludex.

Internal

0.119.0

FastAPI now (temporarily) supports both Pydantic v2 models and pydantic.v1 models at the same time in the same app, to make it easier for any FastAPI apps still using Pydantic v1 to gradually but quickly migrate to Pydantic v2.

from fastapi import FastAPI
from pydantic import BaseModel as BaseModelV2
from pydantic.v1 import BaseModel

class Item(BaseModel):
name: str
description: str | None = None

class ItemV2(BaseModelV2):
title: str
summary: str | None = None

app = FastAPI()

@โ€‹app.post("/items/", response_model=ItemV2)
def create_item(item: Item):
return {"title": item.name, "summary": item.description}

Adding this feature was a big effort with the main objective of making it easier for the few applications still stuck in Pydantic v1 to migrate to Pydantic v2.

And with this, support for Pydantic v1 is now deprecated and will be removed from FastAPI in a future version soon.

Note: have in mind that the Pydantic team already stopped supporting Pydantic v1 for recent versions of Python, starting with Python 3.14.

You can read in the docs more about how to Migrate from Pydantic v1 to Pydantic v2.

Features

... (truncated)

Commits
  • 864b569 ๐Ÿ”– Release version 0.119.1
  • 43f15d3 ๐Ÿ“ Update release notes
  • d8c691f ๐Ÿ› Fix internal Pydantic v1 compatibility (warnings) for Python 3.14 and Pydan...
  • 6e49dc0 ๐Ÿ“ Update release notes
  • 7df594d ๐Ÿ”ง Add sponsor Requestly (#14205)
  • 81f8583 ๐Ÿ“ Update release notes
  • 7f810ca ๐Ÿ”ง Configure reminder for waiting label in issue-manager (#14156)
  • 414f961 ๐Ÿ“ Update release notes
  • dde7bd1 ๐Ÿ“ Replace starlette.io by starlette.dev and uvicorn.org by `uvicorn.dev...
  • 2e721e1 ๐Ÿ”– Release version 0.119.0
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Package Dependencies
Package:
fastapi
Ecosystem:
pip
Version Change:
0.115.12 โ†’ 0.119.1
Update Type:
Minor
Technical Details
ID: 10606124
UUID: 3534239857
Node ID: PR_kwDOBjX6Ks6uuk9a
Host: GitHub
Repository: python-openapi/openapi-core