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
213213.. _#2691 : https://github.com/pallets/flask/pull/2691
214214.. _#2693 : https://github.com/pallets/flask/pull/2693
215215.. _#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
216231
217232
218233Version 0.12.2
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Welcome to Flask
66.. image :: _static/logo-full.png
77 :alt: Flask: web development, one drop at a time
88 :align: right
9+ :align: right
910
1011Welcome to Flask's documentation. Get started with :ref: `installation `
1112and 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.
215215To apply the upgrade script do the following:
216216
2172171. 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> `_
2192192. Run it in the directory of your application::
220220
221221 python flask-07-upgrade.py > patchfile.diff
You can’t perform that action at this time.
0 commit comments