chore(deps): update pip deps #12
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Note
Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to
mend[bot]
.This notice will be removed on 2025-10-07.
This PR contains the following updates:
==0.116.1
->==0.118.0
~=2.10.1
->~=2.11.0
~=0.35.0
->~=0.37.0
Release Notes
fastapi/fastapi (fastapi)
v0.118.0
Compare Source
0.118.0
Fixes
StreamingResponse
s with dependencies withyield
orUploadFile
s, close after the response is done. PR #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 withyield
would have been already run.For example, if you had a database session in a dependency with
yield
, theStreamingResponse
would not be able to use that session while streaming data because the session would have already been closed in the exit code afteryield
.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
tutorial/security/oauth2-jwt/
to usepwdlib
with Argon2 instead ofpasslib
. PR #13917 by @Neizvestnyj.Translations
Internal
v0.117.1
Compare Source
Fixes
File
is declared afterForm
parameter. PR #11194 by @thomasleveil.v0.117.0
Compare Source
Features
None
as return type for bodiless responses. PR #9425 by @hofrob.type
field. PR #13639 by @sammasak.external_docs
parameter toFastAPI
. PR #13713 by @cmtoro.Fixes
default_factory
for response model field with Pydantic V1. PR #9704 by @vvanglro.jsonable_encoder
altersjson_encoders
of Pydantic v1 objects. PR #4972 by @aboubacs.allow_arbitrary_types
when only 1 argument is used on the API endpoint. PR #13694 by @rmawatson.inspect.getcoroutinefunction()
can break testing withunittest.mock.patch()
. PR #14022 by @secrett2633.Refactors
dependency-cache
dict insolve_dependencies
only ifNone
(don't re-create if empty). PR #13689 by @bokshitsky.test_tutorial/test_header_params/test_tutorial003.py
. PR #13864 by @Amogha-ark.httpx
to>=0.23.0,<1.0.0
. PR #14086 by @YuriiMotov.Docs
tutorial/cookie-params.md
. PR #13510 by @Kludex.path-params-numeric-validations.md
for languagesen
,es
anduk
.. PR #14059 by @svlandeg.Translations
Internal
docs.py generate-readme
command to remove permalinks from headers. PR #14055 by @YuriiMotov.v0.116.2
Compare Source
Upgrades
Docs
--forwarded-allow-ips="*"
. PR #14028 by @tiangolo.dict()
indocs/tutorial/body.md
. PR #13906 by @jomkv.termynal.js
. PR #13714 by @Ashish-Pandey62.url
field in error responses in docs. PR #13655 by @Taoup.scope
claim in line with the standard indocs_src/security/tutorial005.py
. PR #11189 by @DurandA.docs/en/docs/advanced/generate-clients.md
. PR #13793 by @mrlubos.Translations
docs/zh/docs/python-types.md
. PR #13997 by @anfreshman.docs/pt/docs/async.md
. PR #13863 by @EdmilsonRodrigues.docs/ja/docs/tutorial/body.md
. PR #13927 by @KoyoMiyazaki.docs/fa/docs/environment-variables.md
. PR #13923 by @Mohammad222PR.docs/fa/docs/python-types.md
. PR #13524 by @Mohammad222PR.docs/pt/docs/project-generation.md
. PR #13875 by @EdmilsonRodrigues.docs/fa/docs/async.md
. PR #13541 by @Mohammad222PR.docs/bn/about/index.md
. PR #13882 by @sajjadrahman56.Internal
mkdocs_hooks
to handle headers with permalinks when building docs. PR #14025 by @tiangolo.mkdocs-macros-plugin
from 1.3.7 to 1.3.9. PR #14003 by @YuriiMotov.pydantic/pydantic-settings (pydantic-settings)
v2.11.0
Compare Source
What's Changed
CliSettingsSource.__init__
. by @trygve-baerland in #656InitSettingsSource
resolution deterministic by @enrico-stauss in #681New Contributors
Full Changelog: pydantic/pydantic-settings@2.10.1...v2.11.0
Kludex/uvicorn (uvicorn)
v0.37.0
: Version 0.37.0Compare Source
What's Changed
--timeout-worker-healthcheck
setting by @Kludex in #2711os.PathLike[str]
type tossl_ca_certs
by @rnv812 in #2676New Contributors
Full Changelog: Kludex/uvicorn@0.36.1...0.37.0
v0.36.1
: Version 0.36.1Compare Source
What's Changed
Config.setup_event_loop()
by @Kludex in #2709Full Changelog: Kludex/uvicorn@0.36.0...0.36.1
v0.36.0
: Version 0.36.0Compare Source
Added
--http
,--ws
and--loop
by @Kludex in #2658New Contributors
Full Changelog: Kludex/uvicorn@0.35.0...0.36.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.