Skip to content

Latest commit

 

History

History
183 lines (96 loc) · 2.87 KB

CHANGES.md

File metadata and controls

183 lines (96 loc) · 2.87 KB

Version 0.14.0-dev

Unreleased

Version 0.13.0

Released 2025-04-02

Features

  • Support for Pydantic v1 namespace. (thanks to @Merinorus)

Version 0.12.0

Released 2024-01-08

Features

  • Support Pydantic 2. Drop support for Pydantic 1. (thanks to @jkseppan)

Version 0.11.0

Released 2022-09-25

Features

  • Allow raising flask_pydantic.ValidationError by setting FLASK_PYDANTIC_VALIDATION_ERROR_RAISE=True

Version 0.10.0

Released 2022-07-31

Features

  • Add validation for form data
  • Handle extra headers returned by route functions

Internal

  • Cleanup pipelines, drop python 3.6 tests, test on MacOS images

Version 0.9.0

Released 2021-10-28

Features

Internal

  • Add tests for Python 3.10 to pipeline

Version 0.8.0

Released 2021-05-09

Features

  • Return 400 response when model's __root__ validation fails

Version 0.7.2

Released 2021-04-26

Bugfixes

  • ignore return-type annotations

Version 0.7.1

Released 2021-04-08

Bugfixes

  • recognize mime types with character encoding standard

Version 0.7.0

Released 2021-04-05

Features

  • add support for URL path parameters parsing and validation

Version 0.6.3

Released 2021-03-26

  • do pin specific versions of required packages

Version 0.6.2

Released 2021-03-09

Bugfixes

  • fix type annotations of decorated method

Version 0.6.1

Released 2021-02-18

Bugfixes

  • parsing of query parameters in older versions of python 3.6

Version 0.6.0

Released 2021-01-31

Features

Version 0.5.0

Released 2021-01-17

Features

  • add Flask classifier

Version 0.4.0

Released 2020-09-10

Features

Version 0.3.0

Released 2020-09-08

Features

  • add possibility to specify models using keyword arguments

Version 0.2.0

Released 2020-08-07

Features

  • add support for python version 3.6

Version 0.1.0

Released 2020-08-02

Features

  • add proper parsing and validation of array query parameters

Version 0.0.7

Released 2020-07-20

  • add possibility to configure response status code after ValidationError using flask app config value FLASK_PYDANTIC_VALIDATION_ERROR_STATUS_CODE

Version 0.0.6

Released 2020-06-11

Features

  • return 415 - Unsupported media type response for requests to endpoints with specified body model with other content type than application/json.

Version 0.0.5

Released 2020-01-15

Bugfixes

  • do not try to access query or body requests parameters unless model is provided~~