Update dependency fastapi to v0.112.0 #21

Merged
renovate merged 1 commits from renovate/fastapi-0.x into main 2024-08-03 08:44:56 +00:00
Member

This PR contains the following updates:

Package Update Change
fastapi minor ==0.110.0 -> ==0.112.0

Release Notes

fastapi/fastapi (fastapi)

v0.112.0

Compare Source

Breaking Changes
  • ♻️ Add support for pip install "fastapi[standard]" with standard dependencies and python -m fastapi. PR #​11935 by @​tiangolo.
Summary

Install with:

pip install "fastapi[standard]"
Other Changes
  • This adds support for calling the CLI as:
python -m python
  • And it upgrades fastapi-cli[standard] >=0.0.5.
Technical Details

Before this, fastapi would include the standard dependencies, with Uvicorn and the fastapi-cli, etc.

And fastapi-slim would not include those standard dependencies.

Now fastapi doesn't include those standard dependencies unless you install with pip install "fastapi[standard]".

Before, you would install pip install fastapi, now you should include the standard optional dependencies (unless you want to exclude one of those): pip install "fastapi[standard]".

This change is because having the standard optional dependencies installed by default was being inconvenient to several users, and having to install instead fastapi-slim was not being a feasible solution.

Discussed here: #​11522 and here: #​11525

Docs
Translations
Internal

v0.111.1

Compare Source

Upgrades
  • Remove orjson and ujson from default dependencies. PR #​11842 by @​tiangolo.
    • These dependencies are still installed when you install with pip install "fastapi[all]". But they not included in pip install fastapi.
  • 📝 Restored Swagger-UI links to use the latest version possible. PR #​11459 by @​UltimateLobster.
Docs
Translations
Internal

v0.111.0

Compare Source

Features

Try it out with:

$ pip install --upgrade fastapi

$ fastapi dev main.py

 ╭────────── FastAPI CLI - Development mode ───────────╮
 │                                                     │
 │  Serving at: http://127.0.0.1:8000                  │
 │                                                     │
 │  API docs: http://127.0.0.1:8000/docs               │
 │                                                     │
 │  Running in development mode, for production use:   │
 │                                                     │
 │  fastapi run                                        │
 │                                                     │
 ╰─────────────────────────────────────────────────────╯

INFO:     Will watch for changes in these directories: ['/home/user/code/awesomeapp']
INFO:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
INFO:     Started reloader process [2248755] using WatchFiles
INFO:     Started server process [2248757]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
Refactors
  • 🔧 Add configs and setup for fastapi-slim including optional extras fastapi-slim[standard], and fastapi including by default the same standard extras. PR #​11503 by @​tiangolo.

v0.110.3

Compare Source

Latest Changes

Docs
Translations
  • 🌐 Add Traditional Chinese translation for docs/zh-hant/benchmarks.md. PR #​11484 by @​KNChiu.
  • 🌐 Update Chinese translation for docs/zh/docs/fastapi-people.md. PR #​11476 by @​billzhong.
  • 🌐 Add Chinese translation for docs/zh/docs/how-to/index.md and docs/zh/docs/how-to/general.md. PR #​11443 by @​billzhong.
  • 🌐 Add Spanish translation for cookie-params docs/es/docs/tutorial/cookie-params.md. PR #​11410 by @​fabianfalon.
Internal

v0.110.2

Compare Source

Fixes
  • 🐛 Fix support for query parameters with list types, handle JSON encoding Pydantic UndefinedType. PR #​9929 by @​arjwilliams.
Refactors
  • ♻️ Simplify Pydantic configs in OpenAPI models in fastapi/openapi/models.py. PR #​10886 by @​JoeTanto2.
  • Add support for Pydantic's 2.7 new deprecated Field parameter, remove URL from validation errors response. PR #​11461 by @​tiangolo.
Docs
Translations
Internal

v0.110.1

Compare Source

Fixes
Refactors
Upgrades
  • ⬆️ Upgrade Starlette to >=0.37.2,<0.38.0, remove Starlette filterwarning for internal tests. PR #​11266 by @​nothielf.
Docs
Translations
Internal

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [fastapi](https://github.com/fastapi/fastapi) | minor | `==0.110.0` -> `==0.112.0` | --- ### Release Notes <details> <summary>fastapi/fastapi (fastapi)</summary> ### [`v0.112.0`](https://github.com/fastapi/fastapi/releases/tag/0.112.0) [Compare Source](https://github.com/fastapi/fastapi/compare/0.111.1...0.112.0) ##### Breaking Changes - ♻️ Add support for `pip install "fastapi[standard]"` with standard dependencies and `python -m fastapi`. PR [#&#8203;11935](https://github.com/fastapi/fastapi/pull/11935) by [@&#8203;tiangolo](https://github.com/tiangolo). ##### Summary Install with: ```bash pip install "fastapi[standard]" ``` ##### Other Changes - This adds support for calling the CLI as: ```bash python -m python ``` - And it upgrades `fastapi-cli[standard] >=0.0.5`. ##### Technical Details Before this, `fastapi` would include the standard dependencies, with Uvicorn and the `fastapi-cli`, etc. And `fastapi-slim` would not include those standard dependencies. Now `fastapi` doesn't include those standard dependencies unless you install with `pip install "fastapi[standard]"`. Before, you would install `pip install fastapi`, now you should include the `standard` optional dependencies (unless you want to exclude one of those): `pip install "fastapi[standard]"`. This change is because having the standard optional dependencies installed by default was being inconvenient to several users, and having to install instead `fastapi-slim` was not being a feasible solution. Discussed here: [#&#8203;11522](https://github.com/fastapi/fastapi/pull/11522) and here: [#&#8203;11525](https://github.com/fastapi/fastapi/discussions/11525) ##### Docs - ✏️ Fix typos in docs. PR [#&#8203;11926](https://github.com/fastapi/fastapi/pull/11926) by [@&#8203;jianghuyiyuan](https://github.com/jianghuyiyuan). - 📝 Tweak management docs. PR [#&#8203;11918](https://github.com/fastapi/fastapi/pull/11918) by [@&#8203;tiangolo](https://github.com/tiangolo). - 🚚 Rename GitHub links from tiangolo/fastapi to fastapi/fastapi. PR [#&#8203;11913](https://github.com/fastapi/fastapi/pull/11913) by [@&#8203;tiangolo](https://github.com/tiangolo). - 📝 Add docs about FastAPI team and project management. PR [#&#8203;11908](https://github.com/tiangolo/fastapi/pull/11908) by [@&#8203;tiangolo](https://github.com/tiangolo). - 📝 Re-structure docs main menu. PR [#&#8203;11904](https://github.com/tiangolo/fastapi/pull/11904) by [@&#8203;tiangolo](https://github.com/tiangolo). - 📝 Update Speakeasy URL. PR [#&#8203;11871](https://github.com/tiangolo/fastapi/pull/11871) by [@&#8203;ndimares](https://github.com/ndimares). ##### Translations - 🌐 Update Portuguese translation for `docs/pt/docs/alternatives.md`. PR [#&#8203;11931](https://github.com/fastapi/fastapi/pull/11931) by [@&#8203;ceb10n](https://github.com/ceb10n). - 🌐 Add Russian translation for `docs/ru/docs/tutorial/dependencies/sub-dependencies.md`. PR [#&#8203;10515](https://github.com/tiangolo/fastapi/pull/10515) by [@&#8203;AlertRED](https://github.com/AlertRED). - 🌐 Add Portuguese translation for `docs/pt/docs/advanced/response-change-status-code.md`. PR [#&#8203;11863](https://github.com/tiangolo/fastapi/pull/11863) by [@&#8203;ceb10n](https://github.com/ceb10n). - 🌐 Add Portuguese translation for `docs/pt/docs/reference/background.md`. PR [#&#8203;11849](https://github.com/tiangolo/fastapi/pull/11849) by [@&#8203;lucasbalieiro](https://github.com/lucasbalieiro). - 🌐 Add Portuguese translation for `docs/pt/docs/tutorial/dependencies/dependencies-with-yield.md`. PR [#&#8203;11848](https://github.com/tiangolo/fastapi/pull/11848) by [@&#8203;Joao-Pedro-P-Holanda](https://github.com/Joao-Pedro-P-Holanda). - 🌐 Add Portuguese translation for `docs/pt/docs/reference/apirouter.md`. PR [#&#8203;11843](https://github.com/tiangolo/fastapi/pull/11843) by [@&#8203;lucasbalieiro](https://github.com/lucasbalieiro). ##### Internal - 🔧 Update sponsors: add liblab. PR [#&#8203;11934](https://github.com/fastapi/fastapi/pull/11934) by [@&#8203;tiangolo](https://github.com/tiangolo). - 👷 Update GitHub Action label-approved permissions. PR [#&#8203;11933](https://github.com/fastapi/fastapi/pull/11933) by [@&#8203;tiangolo](https://github.com/tiangolo). - 👷 Refactor GitHub Action to comment docs deployment URLs and update token. PR [#&#8203;11925](https://github.com/fastapi/fastapi/pull/11925) by [@&#8203;tiangolo](https://github.com/tiangolo). - 👷 Update tokens for GitHub Actions. PR [#&#8203;11924](https://github.com/fastapi/fastapi/pull/11924) by [@&#8203;tiangolo](https://github.com/tiangolo). - 👷 Update token permissions to comment deployment URL in docs. PR [#&#8203;11917](https://github.com/fastapi/fastapi/pull/11917) by [@&#8203;tiangolo](https://github.com/tiangolo). - 👷 Update token permissions for GitHub Actions. PR [#&#8203;11915](https://github.com/fastapi/fastapi/pull/11915) by [@&#8203;tiangolo](https://github.com/tiangolo). - 👷 Update GitHub Actions token usage. PR [#&#8203;11914](https://github.com/fastapi/fastapi/pull/11914) by [@&#8203;tiangolo](https://github.com/tiangolo). - 👷 Update GitHub Action to notify translations with label `approved-1`. PR [#&#8203;11907](https://github.com/tiangolo/fastapi/pull/11907) by [@&#8203;tiangolo](https://github.com/tiangolo). - 🔧 Update sponsors, remove Reflex. PR [#&#8203;11875](https://github.com/tiangolo/fastapi/pull/11875) by [@&#8203;tiangolo](https://github.com/tiangolo). - 🔧 Update sponsors: remove TalkPython. PR [#&#8203;11861](https://github.com/tiangolo/fastapi/pull/11861) by [@&#8203;tiangolo](https://github.com/tiangolo). - 🔨 Update docs Termynal scripts to not include line nums for local dev. PR [#&#8203;11854](https://github.com/tiangolo/fastapi/pull/11854) by [@&#8203;tiangolo](https://github.com/tiangolo). ### [`v0.111.1`](https://github.com/fastapi/fastapi/releases/tag/0.111.1) [Compare Source](https://github.com/fastapi/fastapi/compare/0.111.0...0.111.1) ##### Upgrades - ➖ Remove `orjson` and `ujson` from default dependencies. PR [#&#8203;11842](https://github.com/tiangolo/fastapi/pull/11842) by [@&#8203;tiangolo](https://github.com/tiangolo). - These dependencies are still installed when you install with `pip install "fastapi[all]"`. But they not included in `pip install fastapi`. - 📝 Restored Swagger-UI links to use the latest version possible. PR [#&#8203;11459](https://github.com/tiangolo/fastapi/pull/11459) by [@&#8203;UltimateLobster](https://github.com/UltimateLobster). ##### Docs - ✏️ Rewording in `docs/en/docs/fastapi-cli.md`. PR [#&#8203;11716](https://github.com/tiangolo/fastapi/pull/11716) by [@&#8203;alejsdev](https://github.com/alejsdev). - 📝 Update Hypercorn links in all the docs. PR [#&#8203;11744](https://github.com/tiangolo/fastapi/pull/11744) by [@&#8203;kittydoor](https://github.com/kittydoor). - 📝 Update docs with Ariadne reference from Starlette to FastAPI. PR [#&#8203;11797](https://github.com/tiangolo/fastapi/pull/11797) by [@&#8203;DamianCzajkowski](https://github.com/DamianCzajkowski). - 📝 Update fastapi instrumentation external link. PR [#&#8203;11317](https://github.com/tiangolo/fastapi/pull/11317) by [@&#8203;softwarebloat](https://github.com/softwarebloat). - ✏️ Fix links to alembic example repo in docs. PR [#&#8203;11628](https://github.com/tiangolo/fastapi/pull/11628) by [@&#8203;augiwan](https://github.com/augiwan). - ✏️ Update `docs/en/docs/fastapi-cli.md`. PR [#&#8203;11715](https://github.com/tiangolo/fastapi/pull/11715) by [@&#8203;alejsdev](https://github.com/alejsdev). - 📝 Update External Links . PR [#&#8203;11500](https://github.com/tiangolo/fastapi/pull/11500) by [@&#8203;devon2018](https://github.com/devon2018). - 📝 Add External Link: Tutorial de FastAPI, ¿el mejor framework de Python?. PR [#&#8203;11618](https://github.com/tiangolo/fastapi/pull/11618) by [@&#8203;EduardoZepeda](https://github.com/EduardoZepeda). - 📝 Fix typo in `docs/en/docs/tutorial/body-multiple-params.md`. PR [#&#8203;11698](https://github.com/tiangolo/fastapi/pull/11698) by [@&#8203;mwb-u](https://github.com/mwb-u). - 📝 Add External Link: Deploy a Serverless FastAPI App with Neon Postgres and AWS App Runner at any scale. PR [#&#8203;11633](https://github.com/tiangolo/fastapi/pull/11633) by [@&#8203;ananis25](https://github.com/ananis25). - 📝 Update `security/first-steps.md`. PR [#&#8203;11674](https://github.com/tiangolo/fastapi/pull/11674) by [@&#8203;alejsdev](https://github.com/alejsdev). - 📝 Update `security/first-steps.md`. PR [#&#8203;11673](https://github.com/tiangolo/fastapi/pull/11673) by [@&#8203;alejsdev](https://github.com/alejsdev). - 📝 Update note in `path-params-numeric-validations.md`. PR [#&#8203;11672](https://github.com/tiangolo/fastapi/pull/11672) by [@&#8203;alejsdev](https://github.com/alejsdev). - 📝 Tweak intro docs about `Annotated` and `Query()` params. PR [#&#8203;11664](https://github.com/tiangolo/fastapi/pull/11664) by [@&#8203;tiangolo](https://github.com/tiangolo). - 📝 Update JWT auth documentation to use PyJWT instead of pyhon-jose. PR [#&#8203;11589](https://github.com/tiangolo/fastapi/pull/11589) by [@&#8203;estebanx64](https://github.com/estebanx64). - 📝 Update docs. PR [#&#8203;11603](https://github.com/tiangolo/fastapi/pull/11603) by [@&#8203;alejsdev](https://github.com/alejsdev). - ✏️ Fix typo: convert every 're-use' to 'reuse'.. PR [#&#8203;11598](https://github.com/tiangolo/fastapi/pull/11598) by [@&#8203;hasansezertasan](https://github.com/hasansezertasan). - ✏️ Fix typo in `fastapi/applications.py`. PR [#&#8203;11593](https://github.com/tiangolo/fastapi/pull/11593) by [@&#8203;petarmaric](https://github.com/petarmaric). - ✏️ Fix link in `fastapi-cli.md`. PR [#&#8203;11524](https://github.com/tiangolo/fastapi/pull/11524) by [@&#8203;svlandeg](https://github.com/svlandeg). ##### Translations - 🌐 Add Spanish translation for `docs/es/docs/how-to/graphql.md`. PR [#&#8203;11697](https://github.com/tiangolo/fastapi/pull/11697) by [@&#8203;camigomezdev](https://github.com/camigomezdev). - 🌐 Add Portuguese translation for `docs/pt/docs/reference/index.md`. PR [#&#8203;11840](https://github.com/tiangolo/fastapi/pull/11840) by [@&#8203;lucasbalieiro](https://github.com/lucasbalieiro). - 🌐 Fix link in German translation. PR [#&#8203;11836](https://github.com/tiangolo/fastapi/pull/11836) by [@&#8203;anitahammer](https://github.com/anitahammer). - 🌐 Add Portuguese translation for `docs/pt/docs/tutorial/dependencies/sub-dependencies.md`. PR [#&#8203;11792](https://github.com/tiangolo/fastapi/pull/11792) by [@&#8203;Joao-Pedro-P-Holanda](https://github.com/Joao-Pedro-P-Holanda). - 🌐 Add Turkish translation for `docs/tr/docs/tutorial/request-forms.md`. PR [#&#8203;11553](https://github.com/tiangolo/fastapi/pull/11553) by [@&#8203;hasansezertasan](https://github.com/hasansezertasan). - 🌐 Add Portuguese translation for `docs/pt/docs/reference/exceptions.md`. PR [#&#8203;11834](https://github.com/tiangolo/fastapi/pull/11834) by [@&#8203;lucasbalieiro](https://github.com/lucasbalieiro). - 🌐 Add Portuguese translation for `docs/pt/docs/tutorial/dependencies/global-dependencies.md`. PR [#&#8203;11826](https://github.com/tiangolo/fastapi/pull/11826) by [@&#8203;Joao-Pedro-P-Holanda](https://github.com/Joao-Pedro-P-Holanda). - 🌐 Add Portuguese translation for `docs/pt/docs/how-to/general.md`. PR [#&#8203;11825](https://github.com/tiangolo/fastapi/pull/11825) by [@&#8203;lucasbalieiro](https://github.com/lucasbalieiro). - 🌐 Add Portuguese translation for `docs/pt/docs/advanced/async-tests.md`. PR [#&#8203;11808](https://github.com/tiangolo/fastapi/pull/11808) by [@&#8203;ceb10n](https://github.com/ceb10n). - 🌐 Add Ukrainian translation for `docs/uk/docs/tutorial/first-steps.md`. PR [#&#8203;11809](https://github.com/tiangolo/fastapi/pull/11809) by [@&#8203;vkhoroshchak](https://github.com/vkhoroshchak). - 🌐 Add Portuguese translation for `docs/pt/docs/tutorial/dependencies/dependencies-in-path-operation-operators.md`. PR [#&#8203;11804](https://github.com/tiangolo/fastapi/pull/11804) by [@&#8203;Joao-Pedro-P-Holanda](https://github.com/Joao-Pedro-P-Holanda). - 🌐 Add Chinese translation for `docs/zh/docs/fastapi-cli.md`. PR [#&#8203;11786](https://github.com/tiangolo/fastapi/pull/11786) by [@&#8203;logan2d5](https://github.com/logan2d5). - 🌐 Add Portuguese translation for `docs/pt/docs/advanced/openapi-webhooks.md`. PR [#&#8203;11791](https://github.com/tiangolo/fastapi/pull/11791) by [@&#8203;ceb10n](https://github.com/ceb10n). - 🌐 Update Chinese translation for `docs/tutorial/security/oauth2-jwt.md`. PR [#&#8203;11781](https://github.com/tiangolo/fastapi/pull/11781) by [@&#8203;logan2d5](https://github.com/logan2d5). - 📝 Fix image missing in French translation for `docs/fr/docs/async.md` . PR [#&#8203;11787](https://github.com/tiangolo/fastapi/pull/11787) by [@&#8203;pe-brian](https://github.com/pe-brian). - 🌐 Add Portuguese translation for `docs/pt/docs/advanced/advanced-dependencies.md`. PR [#&#8203;11775](https://github.com/tiangolo/fastapi/pull/11775) by [@&#8203;ceb10n](https://github.com/ceb10n). - 🌐 Add Portuguese translation for `docs/pt/docs/tutorial/dependencies/classes-as-dependencies.md`. PR [#&#8203;11768](https://github.com/tiangolo/fastapi/pull/11768) by [@&#8203;Joao-Pedro-P-Holanda](https://github.com/Joao-Pedro-P-Holanda). - 🌐 Add Portuguese translation for `docs/pt/docs/advanced/additional-status-codes.md`. PR [#&#8203;11753](https://github.com/tiangolo/fastapi/pull/11753) by [@&#8203;ceb10n](https://github.com/ceb10n). - 🌐 Add Portuguese translation for `docs/pt/docs/tutorial/dependencies/index.md`. PR [#&#8203;11757](https://github.com/tiangolo/fastapi/pull/11757) by [@&#8203;Joao-Pedro-P-Holanda](https://github.com/Joao-Pedro-P-Holanda). - 🌐 Add Portuguese translation for `docs/pt/docs/advanced/settings.md`. PR [#&#8203;11739](https://github.com/tiangolo/fastapi/pull/11739) by [@&#8203;Joao-Pedro-P-Holanda](https://github.com/Joao-Pedro-P-Holanda). - 🌐 Add French translation for `docs/fr/docs/learn/index.md`. PR [#&#8203;11712](https://github.com/tiangolo/fastapi/pull/11712) by [@&#8203;benjaminvandammeholberton](https://github.com/benjaminvandammeholberton). - 🌐 Add Portuguese translation for `docs/pt/docs/how-to/index.md`. PR [#&#8203;11731](https://github.com/tiangolo/fastapi/pull/11731) by [@&#8203;vhsenna](https://github.com/vhsenna). - 🌐 Add Portuguese translation for `docs/pt/docs/advanced/additional-responses.md`. PR [#&#8203;11736](https://github.com/tiangolo/fastapi/pull/11736) by [@&#8203;ceb10n](https://github.com/ceb10n). - 🌐 Add Portuguese translation for `docs/pt/docs/advanced/benchmarks.md`. PR [#&#8203;11713](https://github.com/tiangolo/fastapi/pull/11713) by [@&#8203;ceb10n](https://github.com/ceb10n). - 🌐 Fix Korean translation for `docs/ko/docs/tutorial/response-status-code.md`. PR [#&#8203;11718](https://github.com/tiangolo/fastapi/pull/11718) by [@&#8203;nayeonkinn](https://github.com/nayeonkinn). - 🌐 Add Korean translation for `docs/ko/docs/tutorial/extra-data-types.md`. PR [#&#8203;11711](https://github.com/tiangolo/fastapi/pull/11711) by [@&#8203;nayeonkinn](https://github.com/nayeonkinn). - 🌐 Fix Korean translation for `docs/ko/docs/tutorial/body-nested-models.md`. PR [#&#8203;11710](https://github.com/tiangolo/fastapi/pull/11710) by [@&#8203;nayeonkinn](https://github.com/nayeonkinn). - 🌐 Add Portuguese translation for `docs/pt/docs/advanced/fastapi-cli.md`. PR [#&#8203;11641](https://github.com/tiangolo/fastapi/pull/11641) by [@&#8203;ayr-ton](https://github.com/ayr-ton). - 🌐 Add Traditional Chinese translation for `docs/zh-hant/docs/fastapi-people.md`. PR [#&#8203;11639](https://github.com/tiangolo/fastapi/pull/11639) by [@&#8203;hsuanchi](https://github.com/hsuanchi). - 🌐 Add Turkish translation for `docs/tr/docs/advanced/index.md`. PR [#&#8203;11606](https://github.com/tiangolo/fastapi/pull/11606) by [@&#8203;hasansezertasan](https://github.com/hasansezertasan). - 🌐 Add Turkish translation for `docs/tr/docs/deployment/cloud.md`. PR [#&#8203;11610](https://github.com/tiangolo/fastapi/pull/11610) by [@&#8203;hasansezertasan](https://github.com/hasansezertasan). - 🌐 Add Turkish translation for `docs/tr/docs/advanced/security/index.md`. PR [#&#8203;11609](https://github.com/tiangolo/fastapi/pull/11609) by [@&#8203;hasansezertasan](https://github.com/hasansezertasan). - 🌐 Add Turkish translation for `docs/tr/docs/advanced/testing-websockets.md`. PR [#&#8203;11608](https://github.com/tiangolo/fastapi/pull/11608) by [@&#8203;hasansezertasan](https://github.com/hasansezertasan). - 🌐 Add Turkish translation for `docs/tr/docs/how-to/general.md`. PR [#&#8203;11607](https://github.com/tiangolo/fastapi/pull/11607) by [@&#8203;hasansezertasan](https://github.com/hasansezertasan). - 🌐 Update Chinese translation for `docs/zh/docs/advanced/templates.md`. PR [#&#8203;11620](https://github.com/tiangolo/fastapi/pull/11620) by [@&#8203;chaoless](https://github.com/chaoless). - 🌐 Add Turkish translation for `docs/tr/docs/deployment/index.md`. PR [#&#8203;11605](https://github.com/tiangolo/fastapi/pull/11605) by [@&#8203;hasansezertasan](https://github.com/hasansezertasan). - 🌐 Add Turkish translation for `docs/tr/docs/tutorial/static-files.md`. PR [#&#8203;11599](https://github.com/tiangolo/fastapi/pull/11599) by [@&#8203;hasansezertasan](https://github.com/hasansezertasan). - 🌐 Polish translation for `docs/pl/docs/fastapi-people.md`. PR [#&#8203;10196](https://github.com/tiangolo/fastapi/pull/10196) by [@&#8203;isulim](https://github.com/isulim). - 🌐 Add Turkish translation for `docs/tr/docs/advanced/wsgi.md`. PR [#&#8203;11575](https://github.com/tiangolo/fastapi/pull/11575) by [@&#8203;hasansezertasan](https://github.com/hasansezertasan). - 🌐 Add Turkish translation for `docs/tr/docs/tutorial/cookie-params.md`. PR [#&#8203;11561](https://github.com/tiangolo/fastapi/pull/11561) by [@&#8203;hasansezertasan](https://github.com/hasansezertasan). - 🌐 Add Russian translation for `docs/ru/docs/about/index.md`. PR [#&#8203;10961](https://github.com/tiangolo/fastapi/pull/10961) by [@&#8203;s111d](https://github.com/s111d). - 🌐 Update Chinese translation for `docs/zh/docs/tutorial/sql-databases.md`. PR [#&#8203;11539](https://github.com/tiangolo/fastapi/pull/11539) by [@&#8203;chaoless](https://github.com/chaoless). - 🌐 Add Chinese translation for `docs/zh/docs/how-to/configure-swagger-ui.md`. PR [#&#8203;11501](https://github.com/tiangolo/fastapi/pull/11501) by [@&#8203;Lucas-lyh](https://github.com/Lucas-lyh). - 🌐 Update Chinese translation for `/docs/advanced/security/http-basic-auth.md`. PR [#&#8203;11512](https://github.com/tiangolo/fastapi/pull/11512) by [@&#8203;nick-cjyx9](https://github.com/nick-cjyx9). ##### Internal - ♻️ Simplify internal docs script. PR [#&#8203;11777](https://github.com/tiangolo/fastapi/pull/11777) by [@&#8203;gitworkflows](https://github.com/gitworkflows). - 🔧 Update sponsors: add Fine. PR [#&#8203;11784](https://github.com/tiangolo/fastapi/pull/11784) by [@&#8203;tiangolo](https://github.com/tiangolo). - 🔧 Tweak sponsors: Kong URL. PR [#&#8203;11765](https://github.com/tiangolo/fastapi/pull/11765) by [@&#8203;tiangolo](https://github.com/tiangolo). - 🔧 Tweak sponsors: Kong URL. PR [#&#8203;11764](https://github.com/tiangolo/fastapi/pull/11764) by [@&#8203;tiangolo](https://github.com/tiangolo). - 🔧 Update sponsors, add Stainless. PR [#&#8203;11763](https://github.com/tiangolo/fastapi/pull/11763) by [@&#8203;tiangolo](https://github.com/tiangolo). - 🔧 Update sponsors, add Zuplo. PR [#&#8203;11729](https://github.com/tiangolo/fastapi/pull/11729) by [@&#8203;tiangolo](https://github.com/tiangolo). - 🔧 Update Sponsor link: Coherence. PR [#&#8203;11730](https://github.com/tiangolo/fastapi/pull/11730) by [@&#8203;tiangolo](https://github.com/tiangolo). - 👥 Update FastAPI People. PR [#&#8203;11669](https://github.com/tiangolo/fastapi/pull/11669) by [@&#8203;tiangolo](https://github.com/tiangolo). - 🔧 Add sponsor Kong. PR [#&#8203;11662](https://github.com/tiangolo/fastapi/pull/11662) by [@&#8203;tiangolo](https://github.com/tiangolo). - 👷 Update Smokeshow, fix sync download artifact and smokeshow configs. PR [#&#8203;11563](https://github.com/tiangolo/fastapi/pull/11563) by [@&#8203;tiangolo](https://github.com/tiangolo). - 👷 Update Smokeshow download artifact GitHub Action. PR [#&#8203;11562](https://github.com/tiangolo/fastapi/pull/11562) by [@&#8203;tiangolo](https://github.com/tiangolo). - 👷 Update GitHub actions to download and upload artifacts to v4, for docs and coverage. PR [#&#8203;11550](https://github.com/tiangolo/fastapi/pull/11550) by [@&#8203;tamird](https://github.com/tamird). - 👷 Tweak CI for test-redistribute, add needed env vars for slim. PR [#&#8203;11549](https://github.com/tiangolo/fastapi/pull/11549) by [@&#8203;tiangolo](https://github.com/tiangolo). - 👥 Update FastAPI People. PR [#&#8203;11511](https://github.com/tiangolo/fastapi/pull/11511) by [@&#8203;tiangolo](https://github.com/tiangolo). ### [`v0.111.0`](https://github.com/fastapi/fastapi/releases/tag/0.111.0) [Compare Source](https://github.com/fastapi/fastapi/compare/0.110.3...0.111.0) ##### Features - ✨ Add FastAPI CLI, the new `fastapi` command. PR [#&#8203;11522](https://github.com/tiangolo/fastapi/pull/11522) by [@&#8203;tiangolo](https://github.com/tiangolo). - New docs: [FastAPI CLI](https://fastapi.tiangolo.com/fastapi-cli/). Try it out with: ```console $ pip install --upgrade fastapi $ fastapi dev main.py ╭────────── FastAPI CLI - Development mode ───────────╮ │ │ │ Serving at: http://127.0.0.1:8000 │ │ │ │ API docs: http://127.0.0.1:8000/docs │ │ │ │ Running in development mode, for production use: │ │ │ │ fastapi run │ │ │ ╰─────────────────────────────────────────────────────╯ INFO: Will watch for changes in these directories: ['/home/user/code/awesomeapp'] INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) INFO: Started reloader process [2248755] using WatchFiles INFO: Started server process [2248757] INFO: Waiting for application startup. INFO: Application startup complete. ``` ##### Refactors - 🔧 Add configs and setup for `fastapi-slim` including optional extras `fastapi-slim[standard]`, and `fastapi` including by default the same `standard` extras. PR [#&#8203;11503](https://github.com/tiangolo/fastapi/pull/11503) by [@&#8203;tiangolo](https://github.com/tiangolo). ### [`v0.110.3`](https://github.com/fastapi/fastapi/releases/tag/0.110.3) [Compare Source](https://github.com/fastapi/fastapi/compare/0.110.2...0.110.3) #### Latest Changes ##### Docs - 📝 Update references to Python version, FastAPI supports all the current versions, no need to make the version explicit. PR [#&#8203;11496](https://github.com/tiangolo/fastapi/pull/11496) by [@&#8203;tiangolo](https://github.com/tiangolo). - ✏️ Fix typo in `fastapi/security/api_key.py`. PR [#&#8203;11481](https://github.com/tiangolo/fastapi/pull/11481) by [@&#8203;ch33zer](https://github.com/ch33zer). - ✏️ Fix typo in `security/http.py`. PR [#&#8203;11455](https://github.com/tiangolo/fastapi/pull/11455) by [@&#8203;omarmoo5](https://github.com/omarmoo5). ##### Translations - 🌐 Add Traditional Chinese translation for `docs/zh-hant/benchmarks.md`. PR [#&#8203;11484](https://github.com/tiangolo/fastapi/pull/11484) by [@&#8203;KNChiu](https://github.com/KNChiu). - 🌐 Update Chinese translation for `docs/zh/docs/fastapi-people.md`. PR [#&#8203;11476](https://github.com/tiangolo/fastapi/pull/11476) by [@&#8203;billzhong](https://github.com/billzhong). - 🌐 Add Chinese translation for `docs/zh/docs/how-to/index.md` and `docs/zh/docs/how-to/general.md`. PR [#&#8203;11443](https://github.com/tiangolo/fastapi/pull/11443) by [@&#8203;billzhong](https://github.com/billzhong). - 🌐 Add Spanish translation for cookie-params `docs/es/docs/tutorial/cookie-params.md`. PR [#&#8203;11410](https://github.com/tiangolo/fastapi/pull/11410) by [@&#8203;fabianfalon](https://github.com/fabianfalon). ##### Internal - ⬆ Bump mkdocstrings\[python] from 0.23.0 to 0.24.3. PR [#&#8203;11469](https://github.com/tiangolo/fastapi/pull/11469) by [@&#8203;dependabot\[bot\]](https://github.com/apps/dependabot). - 🔨 Update internal scripts and remove unused ones. PR [#&#8203;11499](https://github.com/tiangolo/fastapi/pull/11499) by [@&#8203;tiangolo](https://github.com/tiangolo). - 🔧 Migrate from Hatch to PDM for the internal build. PR [#&#8203;11498](https://github.com/tiangolo/fastapi/pull/11498) by [@&#8203;tiangolo](https://github.com/tiangolo). - ⬆️ Upgrade MkDocs Material and re-enable cards. PR [#&#8203;11466](https://github.com/tiangolo/fastapi/pull/11466) by [@&#8203;tiangolo](https://github.com/tiangolo). - ⬆ Bump pillow from 10.2.0 to 10.3.0. PR [#&#8203;11403](https://github.com/tiangolo/fastapi/pull/11403) by [@&#8203;dependabot\[bot\]](https://github.com/apps/dependabot). - 🔧 Ungroup dependabot updates. PR [#&#8203;11465](https://github.com/tiangolo/fastapi/pull/11465) by [@&#8203;tiangolo](https://github.com/tiangolo). ### [`v0.110.2`](https://github.com/fastapi/fastapi/releases/tag/0.110.2) [Compare Source](https://github.com/fastapi/fastapi/compare/0.110.1...0.110.2) ##### Fixes - 🐛 Fix support for query parameters with list types, handle JSON encoding Pydantic `UndefinedType`. PR [#&#8203;9929](https://github.com/tiangolo/fastapi/pull/9929) by [@&#8203;arjwilliams](https://github.com/arjwilliams). ##### Refactors - ♻️ Simplify Pydantic configs in OpenAPI models in `fastapi/openapi/models.py`. PR [#&#8203;10886](https://github.com/tiangolo/fastapi/pull/10886) by [@&#8203;JoeTanto2](https://github.com/JoeTanto2). - ✨ Add support for Pydantic's 2.7 new deprecated Field parameter, remove URL from validation errors response. PR [#&#8203;11461](https://github.com/tiangolo/fastapi/pull/11461) by [@&#8203;tiangolo](https://github.com/tiangolo). ##### Docs - 📝 Fix types in examples under `docs_src/extra_data_types`. PR [#&#8203;10535](https://github.com/tiangolo/fastapi/pull/10535) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 📝 Update references to UJSON. PR [#&#8203;11464](https://github.com/tiangolo/fastapi/pull/11464) by [@&#8203;tiangolo](https://github.com/tiangolo). - 📝 Tweak docs and translations links, typos, format. PR [#&#8203;11389](https://github.com/tiangolo/fastapi/pull/11389) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 📝 Fix typo in `docs/es/docs/async.md`. PR [#&#8203;11400](https://github.com/tiangolo/fastapi/pull/11400) by [@&#8203;fabianfalon](https://github.com/fabianfalon). - 📝 Update OpenAPI client generation docs to use `@hey-api/openapi-ts`. PR [#&#8203;11339](https://github.com/tiangolo/fastapi/pull/11339) by [@&#8203;jordanshatford](https://github.com/jordanshatford). ##### Translations - 🌐 Update Chinese translation for `docs/zh/docs/index.html`. PR [#&#8203;11430](https://github.com/tiangolo/fastapi/pull/11430) by [@&#8203;waketzheng](https://github.com/waketzheng). - 🌐 Add Russian translation for `docs/ru/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md`. PR [#&#8203;11411](https://github.com/tiangolo/fastapi/pull/11411) by [@&#8203;anton2yakovlev](https://github.com/anton2yakovlev). - 🌐 Add Portuguese translations for `learn/index.md` `resources/index.md` `help/index.md` `about/index.md`. PR [#&#8203;10807](https://github.com/tiangolo/fastapi/pull/10807) by [@&#8203;nazarepiedady](https://github.com/nazarepiedady). - 🌐 Update Russian translations for deployments docs. PR [#&#8203;11271](https://github.com/tiangolo/fastapi/pull/11271) by [@&#8203;Lufa1u](https://github.com/Lufa1u). - 🌐 Add Bengali translations for `docs/bn/docs/python-types.md`. PR [#&#8203;11376](https://github.com/tiangolo/fastapi/pull/11376) by [@&#8203;imtiaz101325](https://github.com/imtiaz101325). - 🌐 Add Korean translation for `docs/ko/docs/tutorial/security/simple-oauth2.md`. PR [#&#8203;5744](https://github.com/tiangolo/fastapi/pull/5744) by [@&#8203;KdHyeon0661](https://github.com/KdHyeon0661). - 🌐 Add Korean translation for `docs/ko/docs/help-fastapi.md`. PR [#&#8203;4139](https://github.com/tiangolo/fastapi/pull/4139) by [@&#8203;kty4119](https://github.com/kty4119). - 🌐 Add Korean translation for `docs/ko/docs/advanced/events.md`. PR [#&#8203;5087](https://github.com/tiangolo/fastapi/pull/5087) by [@&#8203;pers0n4](https://github.com/pers0n4). - 🌐 Add Japanese translation for `docs/ja/docs/tutorial/path-operation-configuration.md`. PR [#&#8203;1954](https://github.com/tiangolo/fastapi/pull/1954) by [@&#8203;SwftAlpc](https://github.com/SwftAlpc). - 🌐 Add Japanese translation for `docs/ja/docs/tutorial/request-forms-and-files.md`. PR [#&#8203;1946](https://github.com/tiangolo/fastapi/pull/1946) by [@&#8203;SwftAlpc](https://github.com/SwftAlpc). - 🌐 Add Russian translation for `docs/ru/docs/tutorial/dependencies/dependencies-with-yield.md`. PR [#&#8203;10532](https://github.com/tiangolo/fastapi/pull/10532) by [@&#8203;AlertRED](https://github.com/AlertRED). - 🌐 Add Korean translation for `docs/ko/docs/tutorial/debugging.md`. PR [#&#8203;5695](https://github.com/tiangolo/fastapi/pull/5695) by [@&#8203;JungWooGeon](https://github.com/JungWooGeon). ##### Internal - ⬆️ Upgrade version of typer for docs. PR [#&#8203;11393](https://github.com/tiangolo/fastapi/pull/11393) by [@&#8203;tiangolo](https://github.com/tiangolo). ### [`v0.110.1`](https://github.com/fastapi/fastapi/releases/tag/0.110.1) [Compare Source](https://github.com/fastapi/fastapi/compare/0.110.0...0.110.1) ##### Fixes - 🐛 Fix parameterless `Depends()` with generics. PR [#&#8203;9479](https://github.com/tiangolo/fastapi/pull/9479) by [@&#8203;nzig](https://github.com/nzig). ##### Refactors - ♻️ Update mypy. PR [#&#8203;11049](https://github.com/tiangolo/fastapi/pull/11049) by [@&#8203;k0t3n](https://github.com/k0t3n). - ♻️ Simplify string format with f-strings in `fastapi/applications.py`. PR [#&#8203;11335](https://github.com/tiangolo/fastapi/pull/11335) by [@&#8203;igeni](https://github.com/igeni). ##### Upgrades - ⬆️ Upgrade Starlette to >=0.37.2,<0.38.0, remove Starlette filterwarning for internal tests. PR [#&#8203;11266](https://github.com/tiangolo/fastapi/pull/11266) by [@&#8203;nothielf](https://github.com/nothielf). ##### Docs - 📝 Tweak docs and translations links and remove old docs translations. PR [#&#8203;11381](https://github.com/tiangolo/fastapi/pull/11381) by [@&#8203;tiangolo](https://github.com/tiangolo). - ✏️ Fix typo in `fastapi/security/oauth2.py`. PR [#&#8203;11368](https://github.com/tiangolo/fastapi/pull/11368) by [@&#8203;shandongbinzhou](https://github.com/shandongbinzhou). - 📝 Update links to Pydantic docs to point to new website. PR [#&#8203;11328](https://github.com/tiangolo/fastapi/pull/11328) by [@&#8203;alejsdev](https://github.com/alejsdev). - ✏️ Fix typo in `docs/en/docs/tutorial/extra-models.md`. PR [#&#8203;11329](https://github.com/tiangolo/fastapi/pull/11329) by [@&#8203;alejsdev](https://github.com/alejsdev). - 📝 Update `project-generation.md`. PR [#&#8203;11326](https://github.com/tiangolo/fastapi/pull/11326) by [@&#8203;alejsdev](https://github.com/alejsdev). - 📝 Update External Links. PR [#&#8203;11327](https://github.com/tiangolo/fastapi/pull/11327) by [@&#8203;alejsdev](https://github.com/alejsdev). - 🔥 Remove link to Pydantic's benchmark, on other i18n pages.. PR [#&#8203;11224](https://github.com/tiangolo/fastapi/pull/11224) by [@&#8203;hirotoKirimaru](https://github.com/hirotoKirimaru). - ✏️ Fix typos in docstrings. PR [#&#8203;11295](https://github.com/tiangolo/fastapi/pull/11295) by [@&#8203;davidhuser](https://github.com/davidhuser). - 🛠️ Improve Node.js script in docs to generate TypeScript clients. PR [#&#8203;11293](https://github.com/tiangolo/fastapi/pull/11293) by [@&#8203;alejsdev](https://github.com/alejsdev). - 📝 Update examples for tests to replace "inexistent" for "nonexistent". PR [#&#8203;11220](https://github.com/tiangolo/fastapi/pull/11220) by [@&#8203;Homesteady](https://github.com/Homesteady). - 📝 Update `python-multipart` GitHub link in all docs from `https://andrew-d.github.io/python-multipart/` to `https://github.com/Kludex/python-multipart`. PR [#&#8203;11239](https://github.com/tiangolo/fastapi/pull/11239) by [@&#8203;joshjhans](https://github.com/joshjhans). ##### Translations - 🌐 Add German translation for `docs/de/docs/tutorial/response-status-code.md`. PR [#&#8203;10357](https://github.com/tiangolo/fastapi/pull/10357) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Update Chinese translation for `docs/zh/docs/tutorial/query-params.md`. PR [#&#8203;3480](https://github.com/tiangolo/fastapi/pull/3480) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Update Chinese translation for `docs/zh/docs/tutorial/body.md`. PR [#&#8203;3481](https://github.com/tiangolo/fastapi/pull/3481) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Update Chinese translation for `docs/zh/docs/tutorial/path-params.md`. PR [#&#8203;3479](https://github.com/tiangolo/fastapi/pull/3479) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Update Chinese translation for `docs/tutorial/body-fields.md`. PR [#&#8203;3496](https://github.com/tiangolo/fastapi/pull/3496) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Update Chinese translation for `docs/tutorial/extra-models.md`. PR [#&#8203;3497](https://github.com/tiangolo/fastapi/pull/3497) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Add Japanese translation for `docs/ja/docs/tutorial/metadata.md`. PR [#&#8203;2667](https://github.com/tiangolo/fastapi/pull/2667) by [@&#8203;tokusumi](https://github.com/tokusumi). - 🌐 Add German translation for `docs/de/docs/contributing.md`. PR [#&#8203;10487](https://github.com/tiangolo/fastapi/pull/10487) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Update Japanese translation of `docs/ja/docs/tutorial/query-params.md`. PR [#&#8203;10808](https://github.com/tiangolo/fastapi/pull/10808) by [@&#8203;urushio](https://github.com/urushio). - 🌐 Update Chinese translation for `docs/zh/docs/tutorial/security/get-current-user.md`. PR [#&#8203;3842](https://github.com/tiangolo/fastapi/pull/3842) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Add Chinese translation for `docs/zh/docs/advanced/openapi-callbacks.md`. PR [#&#8203;3825](https://github.com/tiangolo/fastapi/pull/3825) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Add Chinese translation for `docs/zh/docs/advanced/extending-openapi.md`. PR [#&#8203;3823](https://github.com/tiangolo/fastapi/pull/3823) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Add Chinese translation for `docs/zh/docs/advanced/testing-dependencies.md`. PR [#&#8203;3819](https://github.com/tiangolo/fastapi/pull/3819) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Add Chinese translation for `docs/zh/docs/advanced/custom-request-and-route.md`. PR [#&#8203;3816](https://github.com/tiangolo/fastapi/pull/3816) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Add Chinese translation for `docs/zh/docs/external-links.md`. PR [#&#8203;3833](https://github.com/tiangolo/fastapi/pull/3833) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Add Chinese translation for `docs/zh/docs/advanced/templates.md`. PR [#&#8203;3812](https://github.com/tiangolo/fastapi/pull/3812) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Add Chinese translation for `docs/zh/docs/advanced/sub-applications.md`. PR [#&#8203;3811](https://github.com/tiangolo/fastapi/pull/3811) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Add Chinese translation for `docs/zh/docs/advanced/async-sql-databases.md`. PR [#&#8203;3805](https://github.com/tiangolo/fastapi/pull/3805) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Add Chinese translation for `docs/zh/docs/advanced/middleware.md`. PR [#&#8203;3804](https://github.com/tiangolo/fastapi/pull/3804) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Add Chinese translation for `docs/zh/docs/advanced/dataclasses.md`. PR [#&#8203;3803](https://github.com/tiangolo/fastapi/pull/3803) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Add Chinese translation for `docs/zh/docs/advanced/using-request-directly.md`. PR [#&#8203;3802](https://github.com/tiangolo/fastapi/pull/3802) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Add Chinese translation for `docs/zh/docs/advanced/security/http-basic-auth.md`. PR [#&#8203;3801](https://github.com/tiangolo/fastapi/pull/3801) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Add Chinese translation for `docs/zh/docs/advanced/security/oauth2-scopes.md`. PR [#&#8203;3800](https://github.com/tiangolo/fastapi/pull/3800) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Update Chinese translation for `docs/zh/docs/tutorial/cookie-params.md`. PR [#&#8203;3486](https://github.com/tiangolo/fastapi/pull/3486) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Update Chinese translation for `docs/zh/docs/tutorial/header-params.md`. PR [#&#8203;3487](https://github.com/tiangolo/fastapi/pull/3487) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Update Chinese translation for `docs/tutorial/response-status-code.md`. PR [#&#8203;3498](https://github.com/tiangolo/fastapi/pull/3498) by [@&#8203;jaystone776](https://github.com/jaystone776). - 🌐 Add German translation for `docs/de/docs/tutorial/security/first-steps.md`. PR [#&#8203;10432](https://github.com/tiangolo/fastapi/pull/10432) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/events.md`. PR [#&#8203;10693](https://github.com/tiangolo/fastapi/pull/10693) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/deployment/cloud.md`. PR [#&#8203;10746](https://github.com/tiangolo/fastapi/pull/10746) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/behind-a-proxy.md`. PR [#&#8203;10675](https://github.com/tiangolo/fastapi/pull/10675) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/help-fastapi.md`. PR [#&#8203;10455](https://github.com/tiangolo/fastapi/pull/10455) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Update German translation for `docs/de/docs/python-types.md`. PR [#&#8203;10287](https://github.com/tiangolo/fastapi/pull/10287) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/path-params.md`. PR [#&#8203;10290](https://github.com/tiangolo/fastapi/pull/10290) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/handling-errors.md`. PR [#&#8203;10379](https://github.com/tiangolo/fastapi/pull/10379) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Update German translation for `docs/de/docs/index.md`. PR [#&#8203;10283](https://github.com/tiangolo/fastapi/pull/10283) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/security/http-basic-auth.md`. PR [#&#8203;10651](https://github.com/tiangolo/fastapi/pull/10651) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/bigger-applications.md`. PR [#&#8203;10554](https://github.com/tiangolo/fastapi/pull/10554) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/path-operation-advanced-configuration.md`. PR [#&#8203;10612](https://github.com/tiangolo/fastapi/pull/10612) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/static-files.md`. PR [#&#8203;10584](https://github.com/tiangolo/fastapi/pull/10584) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/security/oauth2-jwt.md`. PR [#&#8203;10522](https://github.com/tiangolo/fastapi/pull/10522) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/response-model.md`. PR [#&#8203;10345](https://github.com/tiangolo/fastapi/pull/10345) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/extra-models.md`. PR [#&#8203;10351](https://github.com/tiangolo/fastapi/pull/10351) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/body-updates.md`. PR [#&#8203;10396](https://github.com/tiangolo/fastapi/pull/10396) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/alternatives.md`. PR [#&#8203;10855](https://github.com/tiangolo/fastapi/pull/10855) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/templates.md`. PR [#&#8203;10678](https://github.com/tiangolo/fastapi/pull/10678) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/security/oauth2-scopes.md`. PR [#&#8203;10643](https://github.com/tiangolo/fastapi/pull/10643) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/async-tests.md`. PR [#&#8203;10708](https://github.com/tiangolo/fastapi/pull/10708) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/metadata.md`. PR [#&#8203;10581](https://github.com/tiangolo/fastapi/pull/10581) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/testing.md`. PR [#&#8203;10586](https://github.com/tiangolo/fastapi/pull/10586) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/schema-extra-example.md`. PR [#&#8203;10597](https://github.com/tiangolo/fastapi/pull/10597) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/index.md`. PR [#&#8203;10611](https://github.com/tiangolo/fastapi/pull/10611) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/response-directly.md`. PR [#&#8203;10618](https://github.com/tiangolo/fastapi/pull/10618) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/additional-responses.md`. PR [#&#8203;10626](https://github.com/tiangolo/fastapi/pull/10626) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/response-cookies.md`. PR [#&#8203;10627](https://github.com/tiangolo/fastapi/pull/10627) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/response-headers.md`. PR [#&#8203;10628](https://github.com/tiangolo/fastapi/pull/10628) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/response-change-status-code.md`. PR [#&#8203;10632](https://github.com/tiangolo/fastapi/pull/10632) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/advanced-dependencies.md`. PR [#&#8203;10633](https://github.com/tiangolo/fastapi/pull/10633) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/security/index.md`. PR [#&#8203;10635](https://github.com/tiangolo/fastapi/pull/10635) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/using-request-directly.md`. PR [#&#8203;10653](https://github.com/tiangolo/fastapi/pull/10653) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/dataclasses.md`. PR [#&#8203;10667](https://github.com/tiangolo/fastapi/pull/10667) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/middleware.md`. PR [#&#8203;10668](https://github.com/tiangolo/fastapi/pull/10668) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/sub-applications.md`. PR [#&#8203;10671](https://github.com/tiangolo/fastapi/pull/10671) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/websockets.md`. PR [#&#8203;10687](https://github.com/tiangolo/fastapi/pull/10687) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/testing-websockets.md`. PR [#&#8203;10703](https://github.com/tiangolo/fastapi/pull/10703) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/testing-events.md`. PR [#&#8203;10704](https://github.com/tiangolo/fastapi/pull/10704) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/testing-dependencies.md`. PR [#&#8203;10706](https://github.com/tiangolo/fastapi/pull/10706) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/openapi-callbacks.md`. PR [#&#8203;10710](https://github.com/tiangolo/fastapi/pull/10710) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/settings.md`. PR [#&#8203;10709](https://github.com/tiangolo/fastapi/pull/10709) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/advanced/wsgi.md`. PR [#&#8203;10713](https://github.com/tiangolo/fastapi/pull/10713) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/deployment/index.md`. PR [#&#8203;10733](https://github.com/tiangolo/fastapi/pull/10733) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/deployment/https.md`. PR [#&#8203;10737](https://github.com/tiangolo/fastapi/pull/10737) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/deployment/manually.md`. PR [#&#8203;10738](https://github.com/tiangolo/fastapi/pull/10738) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/deployment/concepts.md`. PR [#&#8203;10744](https://github.com/tiangolo/fastapi/pull/10744) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Update German translation for `docs/de/docs/features.md`. PR [#&#8203;10284](https://github.com/tiangolo/fastapi/pull/10284) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/deployment/server-workers.md`. PR [#&#8203;10747](https://github.com/tiangolo/fastapi/pull/10747) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/deployment/docker.md`. PR [#&#8203;10759](https://github.com/tiangolo/fastapi/pull/10759) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/how-to/index.md`. PR [#&#8203;10769](https://github.com/tiangolo/fastapi/pull/10769) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/how-to/general.md`. PR [#&#8203;10770](https://github.com/tiangolo/fastapi/pull/10770) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/how-to/graphql.md`. PR [#&#8203;10788](https://github.com/tiangolo/fastapi/pull/10788) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/how-to/custom-request-and-route.md`. PR [#&#8203;10789](https://github.com/tiangolo/fastapi/pull/10789) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/how-to/conditional-openapi.md`. PR [#&#8203;10790](https://github.com/tiangolo/fastapi/pull/10790) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/how-to/separate-openapi-schemas.md`. PR [#&#8203;10796](https://github.com/tiangolo/fastapi/pull/10796) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/how-to/configure-swagger-ui.md`. PR [#&#8203;10804](https://github.com/tiangolo/fastapi/pull/10804) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/how-to/custom-docs-ui-assets.md`. PR [#&#8203;10803](https://github.com/tiangolo/fastapi/pull/10803) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/reference/parameters.md`. PR [#&#8203;10814](https://github.com/tiangolo/fastapi/pull/10814) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/reference/status.md`. PR [#&#8203;10815](https://github.com/tiangolo/fastapi/pull/10815) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/reference/uploadfile.md`. PR [#&#8203;10816](https://github.com/tiangolo/fastapi/pull/10816) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/reference/exceptions.md`. PR [#&#8203;10817](https://github.com/tiangolo/fastapi/pull/10817) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/reference/dependencies.md`. PR [#&#8203;10818](https://github.com/tiangolo/fastapi/pull/10818) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/reference/apirouter.md`. PR [#&#8203;10819](https://github.com/tiangolo/fastapi/pull/10819) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/reference/websockets.md`. PR [#&#8203;10822](https://github.com/tiangolo/fastapi/pull/10822) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/reference/httpconnection.md`. PR [#&#8203;10823](https://github.com/tiangolo/fastapi/pull/10823) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/reference/response.md`. PR [#&#8203;10824](https://github.com/tiangolo/fastapi/pull/10824) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/reference/middleware.md`. PR [#&#8203;10837](https://github.com/tiangolo/fastapi/pull/10837) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/reference/openapi/*.md`. PR [#&#8203;10838](https://github.com/tiangolo/fastapi/pull/10838) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/reference/security/index.md`. PR [#&#8203;10839](https://github.com/tiangolo/fastapi/pull/10839) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/reference/staticfiles.md`. PR [#&#8203;10841](https://github.com/tiangolo/fastapi/pull/10841) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/reference/testclient.md`. PR [#&#8203;10843](https://github.com/tiangolo/fastapi/pull/10843) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/project-generation.md`. PR [#&#8203;10851](https://github.com/tiangolo/fastapi/pull/10851) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/history-design-future.md`. PR [#&#8203;10865](https://github.com/tiangolo/fastapi/pull/10865) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/dependencies/dependencies-with-yield.md`. PR [#&#8203;10422](https://github.com/tiangolo/fastapi/pull/10422) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/dependencies/global-dependencies.md`. PR [#&#8203;10420](https://github.com/tiangolo/fastapi/pull/10420) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Update German translation for `docs/de/docs/fastapi-people.md`. PR [#&#8203;10285](https://github.com/tiangolo/fastapi/pull/10285) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/dependencies/sub-dependencies.md`. PR [#&#8203;10409](https://github.com/tiangolo/fastapi/pull/10409) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/security/index.md`. PR [#&#8203;10429](https://github.com/tiangolo/fastapi/pull/10429) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md`. PR [#&#8203;10411](https://github.com/tiangolo/fastapi/pull/10411) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/extra-data-types.md`. PR [#&#8203;10534](https://github.com/tiangolo/fastapi/pull/10534) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/security/simple-oauth2.md`. PR [#&#8203;10504](https://github.com/tiangolo/fastapi/pull/10504) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/security/get-current-user.md`. PR [#&#8203;10439](https://github.com/tiangolo/fastapi/pull/10439) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/request-forms-and-files.md`. PR [#&#8203;10368](https://github.com/tiangolo/fastapi/pull/10368) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/encoder.md`. PR [#&#8203;10385](https://github.com/tiangolo/fastapi/pull/10385) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/request-forms.md`. PR [#&#8203;10361](https://github.com/tiangolo/fastapi/pull/10361) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/deployment/versions.md`. PR [#&#8203;10491](https://github.com/tiangolo/fastapi/pull/10491) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/async.md`. PR [#&#8203;10449](https://github.com/tiangolo/fastapi/pull/10449) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/cookie-params.md`. PR [#&#8203;10323](https://github.com/tiangolo/fastapi/pull/10323) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/dependencies/classes-as-dependencies.md`. PR [#&#8203;10407](https://github.com/tiangolo/fastapi/pull/10407) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/dependencies/index.md`. PR [#&#8203;10399](https://github.com/tiangolo/fastapi/pull/10399) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/header-params.md`. PR [#&#8203;10326](https://github.com/tiangolo/fastapi/pull/10326) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/path-params-numeric-validations.md`. PR [#&#8203;10307](https://github.com/tiangolo/fastapi/pull/10307) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/query-params-str-validations.md`. PR [#&#8203;10304](https://github.com/tiangolo/fastapi/pull/10304) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Add German translation for `docs/de/docs/tutorial/request-files.md`. PR [#&#8203;10364](https://github.com/tiangolo/fastapi/pull/10364) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - :globe_with_meridians: Add Portuguese translation for `docs/pt/docs/advanced/templates.md`. PR [#&#8203;11338](https://github.com/tiangolo/fastapi/pull/11338) by [@&#8203;SamuelBFavarin](https://github.com/SamuelBFavarin). - 🌐 Add Bengali translations for `docs/bn/docs/learn/index.md`. PR [#&#8203;11337](https://github.com/tiangolo/fastapi/pull/11337) by [@&#8203;imtiaz101325](https://github.com/imtiaz101325). - 🌐 Fix Korean translation for `docs/ko/docs/index.md`. PR [#&#8203;11296](https://github.com/tiangolo/fastapi/pull/11296) by [@&#8203;choi-haram](https://github.com/choi-haram). - 🌐 Add Korean translation for `docs/ko/docs/about/index.md`. PR [#&#8203;11299](https://github.com/tiangolo/fastapi/pull/11299) by [@&#8203;choi-haram](https://github.com/choi-haram). - 🌐 Add Korean translation for `docs/ko/docs/advanced/index.md`. PR [#&#8203;9613](https://github.com/tiangolo/fastapi/pull/9613) by [@&#8203;ElliottLarsen](https://github.com/ElliottLarsen). - 🌐 Add German translation for `docs/de/docs/how-to/extending-openapi.md`. PR [#&#8203;10794](https://github.com/tiangolo/fastapi/pull/10794) by [@&#8203;nilslindemann](https://github.com/nilslindemann). - 🌐 Update Chinese translation for `docs/zh/docs/tutorial/metadata.md`. PR [#&#8203;11286](https://github.com/tiangolo/fastapi/pull/11286) by [@&#8203;jackleeio](https://github.com/jackleeio). - 🌐 Update Chinese translation for `docs/zh/docs/contributing.md`. PR [#&#8203;10887](https://github.com/tiangolo/fastapi/pull/10887) by [@&#8203;Aruelius](https://github.com/Aruelius). - 🌐 Add Azerbaijani translation for `docs/az/docs/fastapi-people.md`. PR [#&#8203;11195](https://github.com/tiangolo/fastapi/pull/11195) by [@&#8203;vusallyv](https://github.com/vusallyv). - 🌐 Add Russian translation for `docs/ru/docs/tutorial/dependencies/index.md`. PR [#&#8203;11223](https://github.com/tiangolo/fastapi/pull/11223) by [@&#8203;kohiry](https://github.com/kohiry). - 🌐 Update Chinese translation for `docs/zh/docs/tutorial/query-params.md`. PR [#&#8203;11242](https://github.com/tiangolo/fastapi/pull/11242) by [@&#8203;jackleeio](https://github.com/jackleeio). - 🌐 Add Azerbaijani translation for `docs/az/learn/index.md`. PR [#&#8203;11192](https://github.com/tiangolo/fastapi/pull/11192) by [@&#8203;vusallyv](https://github.com/vusallyv). ##### Internal - 👥 Update FastAPI People. PR [#&#8203;11387](https://github.com/tiangolo/fastapi/pull/11387) by [@&#8203;tiangolo](https://github.com/tiangolo). - ⬆ Bump actions/cache from 3 to 4. PR [#&#8203;10988](https://github.com/tiangolo/fastapi/pull/10988) by [@&#8203;dependabot\[bot\]](https://github.com/apps/dependabot). - ⬆ Bump pypa/gh-action-pypi-publish from 1.8.11 to 1.8.14. PR [#&#8203;11318](https://github.com/tiangolo/fastapi/pull/11318) by [@&#8203;dependabot\[bot\]](https://github.com/apps/dependabot). - ⬆ Bump pillow from 10.1.0 to 10.2.0. PR [#&#8203;11011](https://github.com/tiangolo/fastapi/pull/11011) by [@&#8203;dependabot\[bot\]](https://github.com/apps/dependabot). - ⬆ Bump black from 23.3.0 to 24.3.0. PR [#&#8203;11325](https://github.com/tiangolo/fastapi/pull/11325) by [@&#8203;dependabot\[bot\]](https://github.com/apps/dependabot). - 👷 Add cron to run test once a week on monday. PR [#&#8203;11377](https://github.com/tiangolo/fastapi/pull/11377) by [@&#8203;estebanx64](https://github.com/estebanx64). - ➕ Replace mkdocs-markdownextradata-plugin with mkdocs-macros-plugin. PR [#&#8203;11383](https://github.com/tiangolo/fastapi/pull/11383) by [@&#8203;tiangolo](https://github.com/tiangolo). - 👷 Disable MkDocs insiders social plugin while an issue in MkDocs Material is handled. PR [#&#8203;11373](https://github.com/tiangolo/fastapi/pull/11373) by [@&#8203;tiangolo](https://github.com/tiangolo). - 👷 Fix logic for when to install and use MkDocs Insiders. PR [#&#8203;11372](https://github.com/tiangolo/fastapi/pull/11372) by [@&#8203;tiangolo](https://github.com/tiangolo). - 👷 Do not use Python packages cache for publish. PR [#&#8203;11366](https://github.com/tiangolo/fastapi/pull/11366) by [@&#8203;tiangolo](https://github.com/tiangolo). - 👷 Add CI to test sdists for redistribution (e.g. Linux distros). PR [#&#8203;11365](https://github.com/tiangolo/fastapi/pull/11365) by [@&#8203;tiangolo](https://github.com/tiangolo). - 👷 Update build-docs GitHub Action path filter. PR [#&#8203;11354](https://github.com/tiangolo/fastapi/pull/11354) by [@&#8203;tiangolo](https://github.com/tiangolo). - 🔧 Update Ruff config, add extra ignore rule from SQLModel. PR [#&#8203;11353](https://github.com/tiangolo/fastapi/pull/11353) by [@&#8203;tiangolo](https://github.com/tiangolo). - ⬆️ Upgrade configuration for Ruff v0.2.0. PR [#&#8203;11075](https://github.com/tiangolo/fastapi/pull/11075) by [@&#8203;charliermarsh](https://github.com/charliermarsh). - 🔧 Update sponsors, add MongoDB. PR [#&#8203;11346](https://github.com/tiangolo/fastapi/pull/11346) by [@&#8203;tiangolo](https://github.com/tiangolo). - ⬆ Bump dorny/paths-filter from 2 to 3. PR [#&#8203;11028](https://github.com/tiangolo/fastapi/pull/11028) by [@&#8203;dependabot\[bot\]](https://github.com/apps/dependabot). - ⬆ Bump dawidd6/action-download-artifact from 3.0.0 to 3.1.4. PR [#&#8203;11310](https://github.com/tiangolo/fastapi/pull/11310) by [@&#8203;dependabot\[bot\]](https://github.com/apps/dependabot). - ♻️ Refactor computing FastAPI People, include 3 months, 6 months, 1 year, based on comment date, not discussion date. PR [#&#8203;11304](https://github.com/tiangolo/fastapi/pull/11304) by [@&#8203;tiangolo](https://github.com/tiangolo). - 👥 Update FastAPI People. PR [#&#8203;11228](https://github.com/tiangolo/fastapi/pull/11228) by [@&#8203;tiangolo](https://github.com/tiangolo). - 🔥 Remove Jina AI QA Bot from the docs. PR [#&#8203;11268](https://github.com/tiangolo/fastapi/pull/11268) by [@&#8203;nan-wang](https://github.com/nan-wang). - 🔧 Update sponsors, remove Jina, remove Powens, move TestDriven.io. PR [#&#8203;11213](https://github.com/tiangolo/fastapi/pull/11213) by [@&#8203;tiangolo](https://github.com/tiangolo). </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44LjMiLCJ1cGRhdGVkSW5WZXIiOiIzOC44LjMiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->
renovate added 1 commit 2024-08-03 08:44:54 +00:00
Update dependency fastapi to v0.112.0
Some checks are pending
build / image-build (push) Waiting to run
renovate / renovate (push) Waiting to run
fe68e610b8
renovate scheduled this pull request to auto merge when all checks succeed 2024-08-03 08:44:54 +00:00
renovate merged commit fe68e610b8 into main 2024-08-03 08:44:56 +00:00
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: training/docker-build-exercise#21