Bump dependency FastAPI from 0.115.12 to 0.118.2
This MR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
| FastAPI (changelog) |
0.115.12 -> 0.118.2
|
||
| fastapi (changelog) |
==0.115.12 -> ==0.118.2
|
Release Notes
fastapi/fastapi (FastAPI)
v0.118.2
Fixes
-
🐛 Fix tagged discriminated union not recognized as body field. MR #12942 by @frankie567.
Internal
-
⬆️ Bump astral-sh/setup-uv from 6 to 7. MR #14167 by @dependabot[bot].
v0.118.1
Upgrades
- 👽️ Ensure compatibility with Pydantic 2.12.0. MR #14036 by @cjwatson.
Docs
-
📝 Add External Link: Getting started with logging in FastAPI. MR #14152 by @itssimon.
Translations
-
🔨 Add Russian translations LLM prompt. MR #13936 by @tiangolo. -
🌐 Sync German docs. MR #14149 by @nilslindemann. -
🌐 Add Russian translations for missing pages (LLM-generated). MR #14135 by @YuriiMotov. -
🌐 Update Russian translations for existing pages (LLM-generated). MR #14123 by @YuriiMotov. -
🌐 Remove configuration files for inactive translations. MR #14130 by @tiangolo.
Internal
-
🔨 Move local coverage logic to its own script. MR #14166 by @tiangolo. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #14161 by @pre-commit-ci[bot]. -
⬆️ Bump griffe-typingdoc from 0.2.8 to 0.2.9. MR #14144 by @dependabot[bot]. -
⬆️ Bump mkdocs-macros-plugin from 1.3.9 to 1.4.0. MR #14145 by @dependabot[bot]. -
⬆️ Bump markdown-include-variants from 0.0.4 to 0.0.5. MR #14146 by @dependabot[bot]. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #14126 by @pre-commit-ci[bot]. -
👥 Update FastAPI GitHub topic repositories. MR #14150 by @tiangolo. -
👥 Update FastAPI People - Sponsors. MR #14139 by @tiangolo. -
👥 Update FastAPI People - Contributors and Translators. MR #14138 by @tiangolo. -
⬆️ Bump ruff from 0.12.7 to 0.13.2. MR #14147 by @dependabot[bot]. -
⬆️ Bump sqlmodel from 0.0.24 to 0.0.25. MR #14143 by @dependabot[bot]. -
⬆️ Bump tiangolo/issue-manager from 0.5.1 to 0.6.0. MR #14148 by @dependabot[bot]. -
👷 Update docs previews comment, single comment, add failure status. MR #14129 by @tiangolo. -
🔨 Modifymkdocs_hooks.pyto addtitleto page's metadata (remove permalinks in social cards). MR #14125 by @YuriiMotov.
v0.118.0
0.118.0
Fixes
-
🐛 Fix support forStreamingResponses with dependencies withyieldorUploadFiles, close after the response is done. MR #14099 by @tiangolo.
Before FastAPI 0.118.0, if you used a dependency with yield, it would run the exit code after the path operation function returned but right before sending the response.
This change also meant that if you returned a StreamingResponse, the exit code of the dependency with yield would have been already run.
For example, if you had a database session in a dependency with yield, the StreamingResponse would not be able to use that session while streaming data because the session would have already been closed in the exit code after yield.
This behavior was reverted in 0.118.0, to make the exit code after yield be executed after the response is sent.
You can read more about it in the docs for Advanced Dependencies - Dependencies with yield, HTTPException, except and Background Tasks. Including what you could do if you wanted to close a database session earlier, before returning the response to the client.
Docs
-
📝 Updatetutorial/security/oauth2-jwt/to usepwdlibwith Argon2 instead ofpasslib. MR #13917 by @Neizvestnyj. -
✏️ Fix typos in OAuth2 password request forms. MR #14112 by @alv2017. -
📝 Update contributing guidelines for installing requirements. MR #14095 by @alejsdev.
Translations
-
🌐 Sync German docs. MR #14098 by @nilslindemann.
Internal
-
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #14103 by @pre-commit-ci[bot]. -
♻️ Refactor sponsor image handling. MR #14102 by @alejsdev. -
🐛 Fix sponsor display issue by hiding element on image error. MR #14097 by @alejsdev. -
🐛 Hide sponsor badge when sponsor image is not displayed. MR #14096 by @alejsdev.
v0.117.1
Fixes
-
🐛 Fix validation error whenFileis declared afterFormparameter. MR #11194 by @thomasleveil.
v0.117.0
Features
-
✨ AllowNoneas return type for bodiless responses. MR #9425 by @hofrob. -
✨ Allow array values for OpenAPI schematypefield. MR #13639 by @sammasak. -
✨ Add OpenAPIexternal_docsparameter toFastAPI. MR #13713 by @cmtoro.
Fixes
-
⚡ Fixdefault_factoryfor response model field with Pydantic V1. MR #9704 by @vvanglro. -
🐛 Fix inconsistent processing of model docstring formfeed char with Pydantic V1. MR #6039 by @MaxwellPayne. -
🐛 Fixjsonable_encoderaltersjson_encodersof Pydantic v1 objects. MR #4972 by @aboubacs. -
🐛 Reenableallow_arbitrary_typeswhen only 1 argument is used on the API endpoint. MR #13694 by @rmawatson. -
🐛 Fixinspect.getcoroutinefunction()can break testing withunittest.mock.patch(). MR #14022 by @secrett2633.
Refactors
-
♻️ Createdependency-cachedict insolve_dependenciesonly ifNone(don't re-create if empty). MR #13689 by @bokshitsky. -
✅ Enable test case for duplicated headers intest_tutorial/test_header_params/test_tutorial003.py. MR #13864 by @Amogha-ark. -
📌 Pinhttpxto>=0.23.0,<1.0.0. MR #14086 by @YuriiMotov.
Docs
-
📝 Add note about Cookies and JavaScript ontutorial/cookie-params.md. MR #13510 by @Kludex. -
📝 Remove outdated formatting frompath-params-numeric-validations.mdfor languagesen,esanduk.. MR #14059 by @svlandeg. -
📝 Fix and Improve English Documentation. MR #14048 by @nilslindemann.
Translations
-
📝 Update prompts and German translation. MR #14015 by @nilslindemann.
Internal
-
✅ Simplify tests for response_model. MR #14062 by @dynamicy. -
🚨 Install pydantic.mypy plugin. MR #14081 by @svlandeg. -
✅ Add LLM test file. MR #14049 by @nilslindemann. -
🔨 Update translations script. MR #13968 by @YuriiMotov. -
🛠️ Updatedocs.py generate-readmecommand to remove permalinks from headers. MR #14055 by @YuriiMotov. -
⬆️ Update mypy to 1.14.1. MR #12970 by @tamird.
v0.116.2
Upgrades
-
⬆️ Upgrade Starlette supported version range to >=0.40.0,<0.49.0. MR #14077 by @musicinmybrain.
Docs
-
📝 Add documentation for Behind a Proxy - Proxy Forwarded Headers, using--forwarded-allow-ips="*". MR #14028 by @tiangolo. -
📝 Add deprecation info block aboutdict()indocs/tutorial/body.md. MR #13906 by @jomkv. -
📝 Fix Twitter to be X (Twitter) everywhere in documentation. MR #13809 by @valentinDruzhinin. -
🐛 Prevent scroll-to-top on restart/fast buttons intermynal.js. MR #13714 by @Ashish-Pandey62. -
📝 Update testing events documentation. MR #13259 by @z0z0r4. -
📝 Remove obsoleteurlfield in error responses in docs. MR #13655 by @Taoup. -
📝 Bring thescopeclaim in line with the standard indocs_src/security/tutorial005.py. MR #11189 by @DurandA. -
📝 Update TrustedHostMiddleware Documentation. MR #11441 by @soulee-dev. -
📝 Remove links to site callbackhell.com that doesn't exist anymore. MR #14006 by @dennybiasiolli. -
📝 Add permalinks to headers in English docs. MR #13993 by @YuriiMotov. -
📝 Updatedocs/en/docs/advanced/generate-clients.md. MR #13793 by @mrlubos. -
📝 Add discussion template for new language translation requests. MR #13535 by @alejsdev.
Translations
-
📝 Fix code include for Pydantic models example indocs/zh/docs/python-types.md. MR #13997 by @anfreshman. -
🌐 Update Portuguese Translation fordocs/pt/docs/async.md. MR #13863 by @EdmilsonRodrigues. -
📝 Fix highlight line indocs/ja/docs/tutorial/body.md. MR #13927 by @KoyoMiyazaki. -
🌐 Add Persian translation fordocs/fa/docs/environment-variables.md. MR #13923 by @Mohammad222PR. -
🌐 Add Persian translation fordocs/fa/docs/python-types.md. MR #13524 by @Mohammad222PR. -
🌐 Update Portuguese Translation fordocs/pt/docs/project-generation.md. MR #13875 by @EdmilsonRodrigues. -
🌐 Add Persian translation fordocs/fa/docs/async.md. MR #13541 by @Mohammad222PR. -
🌐 Add Bangali translation fordocs/bn/about/index.md. MR #13882 by @sajjadrahman56.
Internal
-
⬆️ Bump pyjwt from 2.8.0 to 2.9.0. MR #13960 by @dependabot[bot]. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #14080 by @pre-commit-ci[bot]. -
⬆️ Bump actions/setup-python from 5 to 6. MR #14042 by @dependabot[bot]. -
⬆️ Bump actions/labeler from 5 to 6. MR #14046 by @dependabot[bot]. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #14056 by @pre-commit-ci[bot]. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #14035 by @pre-commit-ci[bot]. -
⬆️ Bump pypa/gh-action-pypi-publish from 1.12.4 to 1.13.0. MR #14041 by @dependabot[bot]. -
👥 Update FastAPI People - Contributors and Translators. MR #14029 by @tiangolo. -
👥 Update FastAPI People - Sponsors. MR #14030 by @tiangolo. -
👥 Update FastAPI GitHub topic repositories. MR #14031 by @tiangolo. -
👥 Update FastAPI People - Experts. MR #14034 by @tiangolo. -
👷 Detect and label merge conflicts on MRs automatically. MR #14045 by @svlandeg. -
🔧 Update sponsors: remove Platform.sh. MR #14027 by @tiangolo. -
🔧 Update sponsors: remove Mobb. MR #14026 by @tiangolo. -
🛠️ Updatemkdocs_hooksto handle headers with permalinks when building docs. MR #14025 by @tiangolo. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #14016 by @pre-commit-ci[bot]. -
⬆️ Bumpmkdocs-macros-pluginfrom 1.3.7 to 1.3.9. MR #14003 by @YuriiMotov. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #13999 by @pre-commit-ci[bot]. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #13983 by @pre-commit-ci[bot]. -
⬆️ Bump actions/checkout from 4 to 5. MR #13986 by @dependabot[bot]. -
🔧 Update Speakeasy sponsor graphic. MR #13971 by @chailandau. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #13969 by @pre-commit-ci[bot]. -
⬆️ Bump actions/download-artifact from 4 to 5. MR #13975 by @dependabot[bot]. -
👥 Update FastAPI People - Experts. MR #13963 by @tiangolo. -
⬆️ Bump ruff from 0.11.2 to 0.12.7. MR #13957 by @dependabot[bot]. -
⬆️ Bump cairosvg from 2.7.1 to 2.8.2. MR #13959 by @dependabot[bot]. -
⬆️ Bump pydantic-ai from 0.0.30 to 0.4.10. MR #13958 by @dependabot[bot]. -
👥 Update FastAPI GitHub topic repositories. MR #13962 by @tiangolo. -
⬆️ Bump mkdocs-material from 9.6.15 to 9.6.16. MR #13961 by @dependabot[bot]. -
⬆️ Bump tiangolo/latest-changes from 0.3.2 to 0.4.0. MR #13952 by @dependabot[bot]. -
👥 Update FastAPI People - Sponsors. MR #13956 by @tiangolo. -
👥 Update FastAPI People - Contributors and Translators. MR #13955 by @tiangolo. -
🔧 Update sponsors: Databento link and sponsors_badge data. MR #13954 by @tiangolo. -
🔧 Update sponsors: Add Railway. MR #13953 by @tiangolo. -
⚒️ Update translate script, update prompt to minimize generated diff. MR #13947 by @YuriiMotov. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #13943 by @pre-commit-ci[bot]. -
⚒️ Tweak translate script and CI. MR #13939 by @tiangolo. -
👷 Add CI to translate with LLMs. MR #13937 by @tiangolo. -
⚒️ Update translate script, show and update outdated translations. MR #13933 by @tiangolo. -
🔨 Refactor translate script with extra feedback (prints). MR #13932 by @tiangolo. -
🔨 Update translations script to remove old (removed) files. MR #13928 by @tiangolo. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #13894 by @pre-commit-ci[bot]. -
⬆️ Update httpx requirement to >=0.23.0,<0.29.0. MR #13114 by @yan12125. -
🔧 Update sponsors: Add Mobb. MR #13916 by @tiangolo. -
👥 Update FastAPI People - Experts. MR #13889 by @tiangolo. -
🔨 Update FastAPI People sleep interval, use external settings. MR #13888 by @tiangolo.
v0.116.1
Upgrades
-
⬆️ Upgrade Starlette supported version range to>=0.40.0,<0.48.0. MR #13884 by @tiangolo.
Docs
-
📝 Add notification about impending changes in Translations todocs/en/docs/contributing.md. MR #13886 by @YuriiMotov.
Internal
-
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #13871 by @pre-commit-ci[bot].
v0.116.0
Features
-
✨ Add support for deploying to FastAPI Cloud withfastapi deploy. MR #13870 by @tiangolo.
Installing fastapi[standard] now includes fastapi-cloud-cli.
This will allow you to deploy to FastAPI Cloud with the fastapi deploy command.
If you want to install fastapi with the standard dependencies but without fastapi-cloud-cli, you can install instead fastapi[standard-no-fastapi-cloud-cli].
Translations
-
🌐 Add Russian translation fordocs/ru/docs/advanced/response-directly.md. MR #13801 by @NavesSapnis. -
🌐 Add Russian translation fordocs/ru/docs/advanced/additional-status-codes.md. MR #13799 by @NavesSapnis. -
🌐 Add Ukrainian translation fordocs/uk/docs/tutorial/body-updates.md. MR #13804 by @valentinDruzhinin.
Internal
-
⬆️ Bump pillow from 11.1.0 to 11.3.0. MR #13852 by @dependabot[bot]. -
👥 Update FastAPI People - Sponsors. MR #13846 by @tiangolo. -
👥 Update FastAPI GitHub topic repositories. MR #13848 by @tiangolo. -
⬆️ Bump mkdocs-material from 9.6.1 to 9.6.15. MR #13849 by @dependabot[bot]. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #13843 by @pre-commit-ci[bot]. -
👥 Update FastAPI People - Contributors and Translators. MR #13845 by @tiangolo.
v0.115.14
Fixes
-
🐛 Fix support for unions when usingForm. MR #13827 by @patrick91.
Docs
-
✏️ Fix grammar mistake indocs/en/docs/advanced/response-directly.md. MR #13800 by @NavesSapnis. -
📝 Update Speakeasy URL to Speakeasy Sandbox. MR #13697 by @ndimares.
Translations
-
🌐 Add Ukrainian translation fordocs/uk/docs/tutorial/response-model.md. MR #13792 by @valentinDruzhinin. -
🌐 Add Ukrainian translation fordocs/uk/docs/tutorial/security/index.md. MR #13805 by @valentinDruzhinin. -
✏️ Fix typo indocs/ja/docs/tutorial/encoder.md. MR #13815 by @ruzia. -
✏️ Fix typo indocs/ja/docs/tutorial/handling-errors.md. MR #13814 by @ruzia. -
✏️ Fix typo indocs/ja/docs/tutorial/body-fields.md. MR #13802 by @ruzia. -
🌐 Add Russian translation fordocs/ru/docs/advanced/index.md. MR #13797 by @NavesSapnis.
Internal
-
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #13823 by @pre-commit-ci[bot].
v0.115.13
Fixes
-
🐛 Fix truncating the model's description with form feed (\f) character for Pydantic V2. MR #13698 by @YuriiMotov.
Refactors
-
✨ AddrefreshUrlparameter inOAuth2PasswordBearer. MR #11460 by @snosratiershad. -
🚸 Set format to password for fieldspasswordandclient_secretinOAuth2PasswordRequestForm, make docs show password fields for passwords. MR #11032 by @Thodoris1999. -
✅ Simplify tests forsettings. MR #13505 by @valentinDruzhinin. -
✅ Simplify tests forvalidate_response_recursive. MR #13507 by @valentinDruzhinin.
Upgrades
-
⬆️ Update ReDoc to version 2.x. MR #9700 by @joakimnordling.
Docs
-
📝 Add annotations to HTTP middleware example. MR #11530 by @Kilo59. -
📝 Clarify in CORS docs that wildcards and credentials are mutually exclusive. MR #9829 by @dfioravanti. -
✏️ Fix typo in docstring. MR #13532 by @comp64. -
📝 Clarify guidance on usingasync defwithoutawait. MR #13642 by @swastikpradhan1999. -
📝 Update exclude-parameters-from-openapi documentation links. MR #13600 by @timonrieger. -
📝 Clarify the middleware execution order in docs. MR #13699 by @YuriiMotov. -
🍱 Update Drawio diagrams SVGs, single file per diagram, sans-serif font. MR #13706 by @tiangolo. -
📝 Update docs for "Help FastAPI", simplify and reduce "sponsor" section. MR #13670 by @tiangolo. -
📝 Remove unnecessary bullet from docs. MR #13641 by @Adamowoc. -
✏️ Fix syntax error indocs/en/docs/tutorial/handling-errors.md. MR #13623 by @gsheni. -
📝 Fix typo in documentation. MR #13599 by @Taoup. -
📝 Fix liblab client generation doc link. MR #13571 by @EFord36. -
✏️ Fix talk information typo. MR #13544 by @blueswen. -
📝 Add External Link: Taiwanese talk on FastAPI with observability . MR #13527 by @blueswen.
Translations
-
🌐 Add Russian Translation fordocs/ru/docs/advanced/response-change-status-code.md. MR #13791 by @NavesSapnis. -
🌐 Add Persian translation fordocs/fa/docs/learn/index.md. MR #13518 by @Mohammad222PR. -
🌐 Add Korean translation fordocs/ko/docs/advanced/sub-applications.md. MR #4543 by @NinaHwang. -
🌐 Add Ukrainian translation fordocs/uk/docs/tutorial/schema-extra-example.md. MR #13769 by @valentinDruzhinin. -
✏️ Remove redundant words in docs/zh/docs/python-types.md. MR #13774 by @CharleeWa. -
🌐 Add Ukrainian translation fordocs/uk/docs/tutorial/query-param-models.md. MR #13748 by @valentinDruzhinin. -
🌐 Add Bengali translation fordocs/bn/docs/environment-variables.md. MR #13629 by @SakibSibly. -
🌐 Add Ukrainian translation fordocs/uk/docs/tutorial/query-params-str-validations.mdpage. MR #13546 by @valentinDruzhinin. -
🌐 Add Russian translation fordocs/ru/docs/tutorial/cookie-param-models.md. MR #13616 by @EgorOnishchuk. -
🌐 Add Korean translation fordocs/ko/docs/tutorial/extra-models.md. MR #13063 by @timothy-jeong. -
🌐 Add Ukrainian translation fordocs/uk/docs/tutorial/path-params-numeric-validations.mdpage. MR #13548 by @valentinDruzhinin. -
🌐 Add Ukrainian translation fordocs/uk/docs/tutorial/middleware.mdpage. MR #13520 by @valentinDruzhinin. -
🌐 Add Ukrainian translation fordocs/uk/docs/tutorial/background-tasks.mdpage. MR #13502 by @valentinDruzhinin. -
🌐 Add Ukrainian translation fordocs/uk/docs/tutorial/cors.mdpage. MR #13519 by @valentinDruzhinin. -
🌐 Update Korean translation fordocs/ko/docs/advanced/events.md. MR #13487 by @bom1215. -
🌐 Add Ukrainian translation fordocs/uk/docs/tutorial/handling-errors.mdpage. MR #13420 by @valentinDruzhinin. -
🌐 Add Russian translation fordocs/ru/docs/tutorial/request-form-models.md. MR #13552 by @EgorOnishchuk. -
📝 Fix internal anchor link in Spanish deployment docs. MR #13737 by @fabianfalon. -
🌐 Update Korean translation fordocs/ko/docs/virtual-environments.md. MR #13630 by @sungchan1. -
🌐 Add Russian translation fordocs/ru/docs/tutorial/header-param-models.md. MR #13526 by @minaton-ru. -
🌐 Update Chinese translation fordocs/zh/docs/tutorial/index.md. MR #13374 by @Zhongheng-Cheng. -
🌐 Update Chinese translation fordocs/zh/docs/deployment/manually.md. MR #13324 by @Zhongheng-Cheng. -
🌐 Update Chinese translation fordocs/zh/docs/deployment/server-workers.md. MR #13292 by @Zhongheng-Cheng. -
🌐 Update Chinese translation fordocs/zh/docs/tutorial/first-steps.md. MR #13348 by @Zhongheng-Cheng.
Internal
-
🔨 Resolve Pydantic deprecation warnings in internal script. MR #13696 by @emmanuel-ferdman. -
🔧 Update sponsors: remove Porter. MR #13783 by @tiangolo. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #13781 by @pre-commit-ci[bot]. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #13757 by @pre-commit-ci[bot]. -
⬆️ Bump griffe-typingdoc from 0.2.7 to 0.2.8. MR #13751 by @dependabot[bot]. -
🍱 Update sponsors: Dribia badge size. MR #13773 by @tiangolo. -
🔧 Update sponsors: add Dribia. MR #13771 by @tiangolo. -
⬆️ Bump typer from 0.15.3 to 0.16.0. MR #13752 by @dependabot[bot]. -
👥 Update FastAPI GitHub topic repositories. MR #13754 by @tiangolo. -
👥 Update FastAPI People - Sponsors. MR #13750 by @tiangolo. -
👥 Update FastAPI People - Contributors and Translators. MR #13749 by @tiangolo. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #13736 by @pre-commit-ci[bot]. -
🔧 Update sponsors: Add InterviewPal. MR #13728 by @tiangolo. -
🔧 Remove Google Analytics. MR #13727 by @tiangolo. -
🔧 Update sponsors: remove MongoDB. MR #13725 by @tiangolo. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #13711 by @pre-commit-ci[bot]. -
🔧 Update sponsors: add Subtotal. MR #13701 by @tiangolo. -
🔧 Update sponsors: remove deepset / Haystack. MR #13700 by @tiangolo. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #13688 by @pre-commit-ci[bot]. -
👥 Update FastAPI People - Experts. MR #13671 by @tiangolo. -
⬆️ Bump typer from 0.12.5 to 0.15.3. MR #13666 by @dependabot[bot]. -
⬆️ Bump sqlmodel from 0.0.23 to 0.0.24. MR #13665 by @dependabot[bot]. -
🔧 Update Sponsors: Zuplo logo and alt text. MR #13645 by @martyndavies. -
👥 Update FastAPI GitHub topic repositories. MR #13667 by @tiangolo. -
🔧 Update links for LinkedIn and bottom. MR #13669 by @tiangolo. -
🔧 Update sponsors: remove Bump.sh and Coherence. MR #13668 by @tiangolo. -
👥 Update FastAPI People - Sponsors. MR #13664 by @tiangolo. -
👥 Update FastAPI People - Contributors and Translators. MR #13662 by @tiangolo. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #13656 by @pre-commit-ci[bot]. -
✅ Useinline-snapshotto support different Pydantic versions in the test suite. MR #12534 by @15r10nk. -
⬆️ Bump astral-sh/setup-uv from 5 to 6. MR #13648 by @dependabot[bot]. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #13634 by @pre-commit-ci[bot]. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #13619 by @pre-commit-ci[bot]. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #13594 by @pre-commit-ci[bot]. -
👥 Update FastAPI People - Experts. MR #13568 by @tiangolo. -
👥 Update FastAPI GitHub topic repositories. MR #13565 by @tiangolo. -
👥 Update FastAPI People - Sponsors. MR #13559 by @tiangolo. -
👥 Update FastAPI People - Contributors and Translators. MR #13558 by @tiangolo. -
⬆️ Bump dirty-equals from 0.8.0 to 0.9.0. MR #13561 by @dependabot[bot]. -
🔧 Clean updocs/en/mkdocs.ymlconfiguration file. MR #13542 by @svlandeg. -
⬆️ [pre-commit.ci] pre-commit autoupdate. MR #12986 by @pre-commit-ci[bot].
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.