You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Tamir Duberstein
cfdb9476d4
Refine dataclass check
Change the `dataclasses.is_dataclass` overload used from
```
@overload
def is_dataclass(obj: object) -> TypeIs[DataclassInstance | type[DataclassInstance]]: ...
```
to
```
@overload
def is_dataclass(obj: type) -> TypeIs[type[DataclassInstance]]: ...
```
This fixes the following mypy errors:
```
fastapi/encoders.py:244: error: Argument 1 to "asdict" has incompatible type "DataclassInstance | type[DataclassInstance]"; expected "DataclassInstance" [arg-type]
fastapi/routing.py:122: error: Argument 1 to "asdict" has incompatible type "DataclassInstance | type[DataclassInstance]"; expected "DataclassInstance" [arg-type]
Found 2 errors in 2 files (checked 44 source files)
```
4 months ago
..
dependencies
♻️ Update logic to import and check `python-multipart` for compatibility with newer version (#12627)
5 months ago
middleware
✨ Add support for raising exceptions (including `HTTPException`) in dependencies with `yield` in the exit code, do not support them in background tasks (#10831)
1 year ago
openapi
✨ Add support for Pydantic models for parameters using `Query`, `Cookie`, `Header` (#12199)
7 months ago
security
Bump mypy, enable pydantic plugin
2 months ago
__init__.py
🔖 Release version 0.115.8
2 months ago
__main__.py
♻️ Add support for `pip install "fastapi[standard]"` with standard dependencies and `python -m fastapi` (#11935)
8 months ago
_compat.py
♻️ Update tests and internals for compatibility with Pydantic >=2.10 (#12971)
4 months ago
applications.py
🎨 Fix typing annotation for semi-internal `FastAPI.add_api_route()` (#10240)
8 months ago
background.py
♻️ Update mypy (#11049)
1 year ago
cli.py
♻️ Add support for `pip install "fastapi[standard]"` with standard dependencies and `python -m fastapi` (#11935)
8 months ago
concurrency.py
🐛 Preserve traceback when exception is raised in sync dependency with `yield` (#5823)
4 months ago
datastructures.py
♻️ Update mypy (#11049)
1 year ago
encoders.py
Refine dataclass check
2 months ago
exception_handlers.py
✨ Add exception handler for `WebSocketRequestValidationError` (which also allows to override it) (#6030)
2 years ago
exceptions.py
♻️ Update mypy (#11049)
1 year ago
logger.py
🔊 Refactor logging (#781)
5 years ago
param_functions.py
📝 Fix minor typos (#12516)
5 months ago
params.py
♻️ Update internal checks to support Pydantic 2.10 (#12914)
5 months ago
py.typed
✨ add py.typed to ship typing information (#209)
6 years ago
requests.py
⬆ Require Pydantic > 1.0 (#1862)
5 years ago
responses.py
✨ Add reference (code API) docs with PEP 727, add subclass with custom docstrings for `BackgroundTasks`, refactor docs structure (#10392)
1 year ago
routing.py
Refine dataclass check
2 months ago
staticfiles.py
✨ Improve type annotations, add support for mypy --strict, internally and for external packages (#2547)
4 years ago
templating.py
✨ Improve type annotations, add support for mypy --strict, internally and for external packages (#2547)
4 years ago
testclient.py
✨ Improve type annotations, add support for mypy --strict, internally and for external packages (#2547)
4 years ago
types.py
🔥 Remove unused NoneType (#10774)
1 year ago
utils.py
♻️ Rename internal `create_response_field()` to `create_model_field()` as it's used for more than response models (#12103)
7 months ago
websockets.py
✨ Export `WebSocketState` in `fastapi.websockets` (#4376)
3 years ago