|
| 1 | +0.18.0 2022-07-23 |
| 2 | +----------------- |
| 3 | + |
| 4 | +* Remove Quart's safe_join, use Werkzeug's version instead. |
| 5 | +* Drop toml dependency, as it isn't required in Quart (use |
| 6 | + config.from_file as desired). |
| 7 | +* Change websocket.send_json to match jsonify's options. |
| 8 | +* Allow while serving decorators on blueprints. |
| 9 | +* Support synchronous background tasks, they will be run on a thread. |
| 10 | +* Follow Flask's API an allow empty argument Response construction. |
| 11 | +* Add get_root_path to helpers to match Flask. |
| 12 | +* Support silent argument in config.from_envvar. |
| 13 | +* Adopt Flask's logging setup. |
| 14 | +* Add stream_template and stream_template_string functions to stream a |
| 15 | + large template in parts. |
| 16 | +* Switch to Flask's top level name exportion style. |
| 17 | +* Add aborter object to app to allow for abort customisation. |
| 18 | +* Add redirect method to app to allow for redirect customisation. |
| 19 | +* Remove usage of LocalStacks, using ContextVars more directly. This |
| 20 | + should improve performance, but introduces backwards |
| 21 | + incompatibility. _*_ctx_stack globals are removed, use *_context |
| 22 | + instead. Extensions should store on ``g`` as appropriate. Requires |
| 23 | + Werkzeug >= 2.2.0. |
| 24 | +* Returned lists are now jsonified. |
| 25 | +* Move url_for to the app to allow for url_for customisation. |
| 26 | +* Remove config from_json use from_file instead. |
| 27 | +* Match the Flask views classes and API. |
| 28 | +* Adopt the Flask cli code adding ``--app``, ``--env``, and ``-debug`` |
| 29 | + options to the CLI. |
| 30 | +* Adopt the Flask JSON provider interface, use instead of JSON |
| 31 | + encoders and decoders. |
| 32 | +* Switch to being a Pallets project. |
| 33 | +
|
| 34 | + |
1 | 35 | 0.17.0 2022-03-26 |
2 | 36 | ----------------- |
3 | 37 |
|
|
0 commit comments