]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
📝 Tweak release notes 0.106.0
authorSebastián Ramírez <tiangolo@gmail.com>
Mon, 25 Dec 2023 18:06:04 +0000 (19:06 +0100)
committerSebastián Ramírez <tiangolo@gmail.com>
Mon, 25 Dec 2023 18:06:04 +0000 (19:06 +0100)
docs/en/docs/release-notes.md

index fc38cb475f052caba2e4c11e2680c9d443b5f6f7..0c118e7c9edc002f7df9bbea50a81a99aa384a11 100644 (file)
@@ -57,7 +57,7 @@ def get_item(item_id: str, username: Annotated[str, Depends(get_username)]):
 
 ---
 
-Before FastAPI 0.106.0, raising exceptions after `yield` was not possible, the exit code in dependencies with `yield` was executed *after* the response was sent, so [Exception Handlers](../handling-errors.md#install-custom-exception-handlers){.internal-link target=_blank} would have already run.
+Before FastAPI 0.106.0, raising exceptions after `yield` was not possible, the exit code in dependencies with `yield` was executed *after* the response was sent, so [Exception Handlers](https://fastapi.tiangolo.com/tutorial/handling-errors/#install-custom-exception-handlers) would have already run.
 
 This was designed this way mainly to allow using the same objects "yielded" by dependencies inside of background tasks, because the exit code would be executed after the background tasks were finished.