You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
headers attribute added to OpenAPIResponse datatype
RequestParameters' header attribute as Headers type
RequestParameters' cookie attribute as ImmutableMultiDict type
RequestValidationResult' parameters attribute as Parameters type
unused server, operation and path attributes removed from RequestValidationResult
EmptyParameterValue exception renamed to EmptyQueryParameterValue
FalconOpenAPIRequestFactory requires to be instantiated
create_spec shortcut replaced with Spec.create
OpenAPIRequest and OpenAPIResponse removed. All backward compabilities fromcontrib removed.
spec_validate_* shortcuts removed. Use validate_request and validate_response with validator parameter instead.
validate_{parameters,body,security} shortcuts removed. Use predefined openapi_request_parameters_validator, openapi_request_body_validator and openapi_request_security_validator from openapi_core.validation.request instead.
validate_{data,headers} shortcuts removed. Use predefined openapi_response_data_validator and openapi_response_headers_validator from openapi_core.validation.response instead.
custom_media_type_deserializers parameter for RequestValidator and ResponseValidator removed. Use MediaTypeDeserializersFactory with custom_deserializers parameter and pass it to validator with media_type_deserializers_factory parameter.
custom_formatters parameter for RequestValidator and ResponseValidator removed. Use SchemaUnmarshallersFactory with custom_formatters parameter and pass it to validator.