Released: 2023/7/26<br>Codename: Gongqing
Please see the [migration guide](/migration_guide/migrate-to-apiflask-2x) for APIFlask 1.x -> 2.0.0.
- Drop Python 3.7 support.
- Drop Flask 1.x support ([issue 442][issue_442]).
- Only pass keyword arguments to the view function. The argument name
of the parsed data from `app.input()` will be `{location}_data` or the
value of `arg_name` ([issue 427][issue_427]).
- Add `FileSchema` to generate OpenAPI file response ([issue 447][issue_447]).
- Support using `{}` to represent not only empty body (204) but also empty schema.
Use `{}` or `EmptySchema` will not set the status code to 204 anymore.
- Remove the previously deprecated code:
- The `tag` parameter in `app.doc`.
- The `role` parameter in `app.auth_required`.
- The `redoc_path` parameter in `apiflask.APIFlask` and the `/redoc` path.
- Support setting a complete response OpenAPI spec throught the `app.doc(responses)`
parameter (i.e. `responses={400: {'description': '', 'content': ...}}`)
([issue 327][issue_327]).
[issue_327]: https://github.com/apiflask/apiflask/issues/327
[issue_427]: https://github.com/apiflask/apiflask/issues/427
[issue_442]: https://github.com/apiflask/apiflask/issues/442
[issue_447]: https://github.com/apiflask/apiflask/issues/447