diff --git a/Pipfile b/Pipfile index 8b0ef8e9e..50d9a98ff 100644 --- a/Pipfile +++ b/Pipfile @@ -26,7 +26,7 @@ uvicorn = "*" [packages] starlette = "==0.12.0" -pydantic = "==0.29.0" +pydantic = "==0.30.0" databases = {extras = ["sqlite"],version = "*"} hypercorn = "*" diff --git a/fastapi/openapi/utils.py b/fastapi/openapi/utils.py index 7786e2527..9c043103d 100644 --- a/fastapi/openapi/utils.py +++ b/fastapi/openapi/utils.py @@ -100,7 +100,7 @@ def get_openapi_operation_request_body( if not body_field: return None assert isinstance(body_field, Field) - body_schema, _ = field_schema( + body_schema, _, _ = field_schema( body_field, model_name_map=model_name_map, ref_prefix=REF_PREFIX ) body_field.schema = cast(Body, body_field.schema) @@ -184,7 +184,7 @@ def get_openapi_path( ), "An additional response must be a dict" field = route.response_fields.get(additional_status_code) if field: - response_schema, _ = field_schema( + response_schema, _, _ = field_schema( field, model_name_map=model_name_map, ref_prefix=REF_PREFIX ) response.setdefault("content", {}).setdefault( @@ -201,7 +201,7 @@ def get_openapi_path( response_schema = {"type": "string"} if lenient_issubclass(route.response_class, JSONResponse): if route.response_field: - response_schema, _ = field_schema( + response_schema, _, _ = field_schema( route.response_field, model_name_map=model_name_map, ref_prefix=REF_PREFIX, diff --git a/fastapi/utils.py b/fastapi/utils.py index fc3bc7289..de0260615 100644 --- a/fastapi/utils.py +++ b/fastapi/utils.py @@ -37,7 +37,7 @@ def get_model_definitions( ) -> Dict[str, Any]: definitions: Dict[str, Dict] = {} for model in flat_models: - m_schema, m_definitions = model_process_schema( + m_schema, m_definitions, m_nested_models = model_process_schema( model, model_name_map=model_name_map, ref_prefix=REF_PREFIX ) definitions.update(m_definitions) diff --git a/pyproject.toml b/pyproject.toml index 90ba93f80..37d806181 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ classifiers = [ ] requires = [ "starlette >=0.11.1,<=0.12.0", - "pydantic >=0.28,<=0.29.0" + "pydantic >=0.30,<=0.30.0" ] description-file = "README.md" requires-python = ">=3.6"