Skip to content

build(deps): bump fastapi from 0.115.8 to 0.120.0 in /backend#889

Merged
thomashbrnrd merged 1 commit intomainfrom
dependabot/pip/backend/fastapi-0.120.0
Apr 23, 2026
Merged

build(deps): bump fastapi from 0.115.8 to 0.120.0 in /backend#889
thomashbrnrd merged 1 commit intomainfrom
dependabot/pip/backend/fastapi-0.120.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Oct 27, 2025

Bumps fastapi from 0.115.8 to 0.120.0.

Release notes

Sourced from fastapi's releases.

0.120.0

There are no major nor breaking changes in this release. ☕️

The internal reference documentation now uses annotated_doc.Doc instead of typing_extensions.Doc, this adds a new (very small) dependency on annotated-doc, a package made just to provide that Doc documentation utility class.

I would expect typing_extensions.Doc to be deprecated and then removed at some point from typing_extensions, for that reason there's the new annotated-doc micro-package. If you are curious about this, you can read more in the repo for annotated-doc.

This new version 0.120.0 only contains that transition to the new home package for that utility class Doc.

Translations

Internal

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
</tr></table>

... (truncated)

Commits
  • cd40c5b 🔖 Release version 0.120.0
  • 1c6ee57 📝 Update release notes
  • 09f4096 📝 Update release notes
  • d390f2e ➕ Migrate internal reference documentation from typing_extensions.Doc to `a...
  • cb7018d 📝 Update release notes
  • a578ea1 🛠️ Update German LLM prompt and test file (#14189)
  • 9c912d1 📝 Update release notes
  • da011f2 ⬆ [pre-commit.ci] pre-commit autoupdate (#14181)
  • 046d49b 📝 Update release notes
  • 8472804 🌐 Sync German docs (#14188)
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR 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)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Oct 27, 2025
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Oct 27, 2025
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Oct 27, 2025

badge

Backend Coverage Summary

Filename               Stmts    Miss  Cover    Missing
-------------------  -------  ------  -------  -----------------------------
src/__init__.py            0       0  100.00%
src/config.py             45       3  93.33%   80, 82, 84
src/main.py               19       0  100.00%
src/router.py            105      17  83.81%   62, 112-118, 145-148, 171-187
src/utils.py              43       5  88.37%   72-74, 92, 96
tests/__init__.py          0       0  100.00%
tests/conftest.py         14       0  100.00%
tests/test_api.py        113       0  100.00%
tests/test_email.py        4       0  100.00%
TOTAL                    343      25  92.71%

Results for commit: 86cefc1

Minimum allowed coverage is 80%

♻️ This comment has been updated with latest results

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Oct 27, 2025

badge

Frontend Coverage Summary

Filename                                                                      Stmts    Miss  Cover    Missing
--------------------------------------------------------------------------  -------  ------  -------  ------------------------------------------------------------------
src/App.vue                                                                      10       3  70.00%   10, 19-20
src/main.ts                                                                       6       0  100.00%
src/api/api-client.ts                                                            21       4  80.95%   22-23, 27-31
src/api/api-routes.ts                                                             6       0  100.00%
src/components/AskingExpert.vue                                                  27      13  51.85%   24-25, 31-56, 63-69, 83-93
src/components/ContactExpert.vue                                                  2       0  100.00%
src/components/HeaderMain.vue                                                     8       0  100.00%
src/components/MissingCardAlert.vue                                               1       0  100.00%
src/components/OnboardingSwiper.vue                                               2       0  100.00%
src/components/PopupVideo.vue                                                    14       4  71.42%   11, 21-25, 93
src/components/ResultPage.vue                                                    40      12  70.00%   50-81, 226-230
src/components/SnackbarAlert.vue                                                  9       8  11.11%   7-16, 28
src/components/StepsGuide.vue                                                     1       0  100.00%
src/router/index.ts                                                              54       3  94.44%   215, 243, 264
src/stores/result.ts                                                             29       0  100.00%
src/stores/snackbar.ts                                                           16       9  43.75%   15-39
src/utils/authentication.ts                                                       2       0  100.00%
src/utils/isUserUsingComputer.ts                                                  1       0  100.00%
src/utils/isUserUsingCrosscall.ts                                                 1       0  100.00%
src/utils/mentions.ts                                                             8       0  100.00%
src/utils/storage-utils.ts                                                        4       0  100.00%
src/utils/firearms-utils/arme-alarme.ts                                           2       1  50.00%   31
src/utils/firearms-utils/autre-pistolet.ts                                        2       1  50.00%   20
src/utils/firearms-utils/epaule-a-levier-sous-garde.ts                            1       0  100.00%
src/utils/firearms-utils/epaule-a-pompe.ts                                        8       2  75.00%   10, 51
src/utils/firearms-utils/epaule-a-un-coup-par-canon.ts                            4       3  25.00%   17-20
src/utils/firearms-utils/epaule-a-verrou.ts                                       1       0  100.00%
src/utils/firearms-utils/epaule-semi-auto-militaire-milieu-20e.ts                 3       2  33.33%   8-22
src/utils/firearms-utils/epaule-semi-auto-style-chasse.ts                         9       7  22.22%   30-38
src/utils/firearms-utils/epaule_mecanisme_ancien.ts                               2       1  50.00%   6
src/utils/firearms-utils/get-next-route-after-result.ts                          15       0  100.00%
src/utils/firearms-utils/index.ts                                                26       6  76.92%   106-107, 113-117
src/utils/firearms-utils/pistolet-mecanisme-ancien.ts                             2       0  100.00%
src/utils/firearms-utils/pistolet-semi-auto-moderne.ts                            4       1  75.00%   72
src/utils/firearms-utils/revolver.ts                                              8       1  87.50%   199
src/utils/firearms-utils/semi-auto-style-militaire-autre.ts                       3       2  33.33%   24-119
src/views/AboutPage.vue                                                           3       0  100.00%
src/views/AccessibilityPage.vue                                                   3       0  100.00%
src/views/ContactPage.vue                                                         1       0  100.00%
src/views/HomePage.vue                                                            1       0  100.00%
src/views/InstructionsPage.vue                                                   63       7  88.88%   48-50, 62-63, 69, 174
src/views/LegalPage.vue                                                           1       0  100.00%
src/views/MissingCardPage.vue                                                     9       1  88.88%   36
src/views/StartPage.vue                                                           4       0  100.00%
src/views/GuideAskingExpertise/ExpertContact.vue                                 39       3  92.30%   42, 111, 161
src/views/GuideAskingExpertise/ExpertiseForm.vue                                110      20  81.81%   28, 67-74, 89-104, 118, 134-179, 253, 311, 400, 406, 412, 440, 523
src/views/GuideIdentificationFirearm/GuideIdentificationFirearm.vue              74      24  67.56%   49, 84-112, 120, 208, 234-252, 285-293
src/views/GuideIdentificationFirearm/IdentificationAlarmGun.vue                  11       0  100.00%
src/views/GuideIdentificationFirearm/IdentificationFinalResult.vue                1       0  100.00%
src/views/GuideIdentificationFirearm/IdentificationFurtherInformations.vue        0       0  100.00%
src/views/GuideIdentificationFirearm/IdentificationSelectAmmo.vue                29      11  62.06%   23, 33-38, 43, 57, 88, 103, 123-136
src/views/GuideIdentificationFirearm/IdentificationTypologyResult.vue             1       0  100.00%
src/views/GuideSecuringFirearm/GuideSecuringFirearm.vue                           5       1  80.00%   102
src/views/GuideSecuringFirearm/SecuringAchievement.vue                           13       1  92.30%   101
src/views/GuideSecuringFirearm/SecuringFooter.vue                                 2       0  100.00%
src/views/GuideSecuringFirearm/SecuringSelectOptionContent.vue                   35       6  82.85%   25-26, 41, 140-164
src/views/GuideSecuringFirearm/SecuringTutorialContent.vue                       16       1  93.75%   66
TOTAL                                                                           773     158  79.56%

Results for commit: 86cefc1

Minimum allowed coverage is 75%

♻️ This comment has been updated with latest results

@thomashbrnrd thomashbrnrd force-pushed the dependabot/pip/backend/fastapi-0.120.0 branch from a5b3506 to 188321a Compare April 23, 2026 12:27
Bumps [fastapi](https://github.com/fastapi/fastapi) from 0.115.8 to 0.120.0.
- [Release notes](https://github.com/fastapi/fastapi/releases)
- [Commits](fastapi/fastapi@0.115.8...0.120.0)

---
updated-dependencies:
- dependency-name: fastapi
  dependency-version: 0.120.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@thomashbrnrd thomashbrnrd force-pushed the dependabot/pip/backend/fastapi-0.120.0 branch from 188321a to 86cefc1 Compare April 23, 2026 13:05
@thomashbrnrd thomashbrnrd merged commit fe07331 into main Apr 23, 2026
10 checks passed
@thomashbrnrd thomashbrnrd deleted the dependabot/pip/backend/fastapi-0.120.0 branch April 23, 2026 13:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant