File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -213,6 +213,21 @@ unreleased
213
213
.. _#2691 : https://github.com/pallets/flask/pull/2691
214
214
.. _#2693 : https://github.com/pallets/flask/pull/2693
215
215
.. _#2709 : https://github.com/pallets/flask/pull/2709
216
+ Version 0.12.3
217
+ --------------
218
+
219
+ Released on April 26th 2018
220
+
221
+ - :func: `Request.get_json ` no longer accepts arbitrary encodings.
222
+ Incoming JSON should be encoded using UTF-8 per :rfc: `8259 `, but
223
+ Flask will autodetect UTF-8, -16, or -32. (`#2692 `_)
224
+ - Fix a Python warning about imports when using ``python -m flask ``.
225
+ (`#2666 `_)
226
+ - Fix a ``ValueError `` caused by invalid ``Range `` requests in some
227
+ cases.
228
+
229
+ .. _#2666 : https://github.com/pallets/flask/issues/2666
230
+ .. _#2692 : https://github.com/pallets/flask/issues/2692
216
231
217
232
218
233
Version 0.12.2
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Welcome to Flask
6
6
.. image :: _static/logo-full.png
7
7
:alt: Flask: web development, one drop at a time
8
8
:align: right
9
+ :align: right
9
10
10
11
Welcome to Flask's documentation. Get started with :ref: `installation `
11
12
and then get an overview with the :ref: `quickstart `. There is also a
Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ good.
215
215
To apply the upgrade script do the following:
216
216
217
217
1. Download the script: `flask-07-upgrade.py
218
- <https://raw.githubusercontent.com/pallets/flask/master /scripts/flask-07-upgrade.py> `_
218
+ <https://raw.githubusercontent.com/pallets/flask/0.12.3 /scripts/flask-07-upgrade.py> `_
219
219
2. Run it in the directory of your application::
220
220
221
221
python flask-07-upgrade.py > patchfile.diff
You can’t perform that action at this time.
0 commit comments