chat
chat copied to clipboard
Bump flask from 0.11.1 to 1.0
Bumps flask from 0.11.1 to 1.0.
Release notes
Sourced from flask's releases.
1.0
The Pallets team is pleased to release Flask 1.0. [Read the announcement on our blog.](https://www.palletsprojects.com/blog/flask-1-0-released/
There are over a year's worth of changes in this release. Many features have been improved or changed. Read the changelog to understand how your project's code will be affected.
JSON Security Fix
Flask previously decoded incoming JSON bytes using the content type of the request. Although JSON should only be encoded as UTF-8, Flask was more lenient. However, Python includes non-text related encodings that could result in unexpected memory use by a request.
Flask will now detect the encoding of incoming JSON data as one of the supported UTF encodings, and will not allow arbitrary encodings from the request.
Install or Upgrade
Install from PyPI with pip:
pip install -U Flask0.12.4
This is a repackage of 0.12.3 to fix an issue with how the package was built.
Upgrade
Upgrade from PyPI with pip. Use a version identifier if you want to stay at 0.12:
pip install -U 'Flask~=0.12.4'0.12.3
This release includes an important security fix for JSON and a minor backport for CLI support in PyCharm. It is provided for projects that cannot update to Flask 1.0 immediately. See the 1.0 announcement and update to it instead if possible.
JSON Security Fix
Flask previously decoded incoming JSON bytes using the content type of the request. Although JSON should only be encoded as UTF-8, Flask was more lenient. However, Python includes non-text related encodings that could result in unexpected memory use by a request.
Flask will now detect the encoding of incoming JSON data as one of the supported UTF encodings, and will not allow arbitrary encodings from the request.
Upgrade
Upgrade from PyPI with pip. Use a version identifier if you want to stay at 0.12:
pip install -U 'Flask~=0.12.3'
Changelog
Sourced from flask's changelog.
Version 1.0
Released 2018-04-26
- Python 2.6 and 3.3 are no longer supported.
- Bump minimum dependency versions to the latest stable versions: Werkzeug >= 0.14, Jinja >= 2.10, itsdangerous >= 0.24, Click >= 5.1. :issue:
2586- Skip :meth:
app.run <Flask.run>when a Flask application is run from the command line. This avoids some behavior that was confusing to debug.- Change the default for :data:
JSONIFY_PRETTYPRINT_REGULARtoFalse. :func:~json.jsonifyreturns a compact format by default, and an indented format in debug mode. :pr:2193- :meth:
Flask.__init__ <Flask>accepts thehost_matchingargument and sets it on :attr:~Flask.url_map. :issue:1559- :meth:
Flask.__init__ <Flask>accepts thestatic_hostargument and passes it as thehostargument when defining the static route. :issue:1559- :func:
send_filesupports Unicode inattachment_filename. :pr:2223- Pass
_schemeargument from :func:url_forto :meth:~Flask.handle_url_build_error. :pr:2017- :meth:
~Flask.add_url_ruleaccepts theprovide_automatic_optionsargument to disable adding theOPTIONSmethod. :pr:1489- :class:
~views.MethodViewsubclasses inherit method handlers from base classes. :pr:1936- Errors caused while opening the session at the beginning of the request are handled by the app's error handlers. :pr:
2254- Blueprints gained :attr:
~Blueprint.json_encoderand :attr:~Blueprint.json_decoderattributes to override the app's encoder and decoder. :pr:1898- :meth:
Flask.make_responseraisesTypeErrorinstead ofValueErrorfor bad response types. The error messages have been improved to describe why the type is invalid. :pr:2256- Add
routesCLI command to output routes registered on the application. :pr:2259- Show warning when session cookie domain is a bare hostname or an IP address, as these may not behave properly in some browsers, such as Chrome. :pr:
2282- Allow IP address as exact session cookie domain. :pr:
2282SESSION_COOKIE_DOMAINis set if it is detected throughSERVER_NAME. :pr:2282- Auto-detect zero-argument app factory called
create_appormake_appfromFLASK_APP. :pr:2297- Factory functions are not required to take a
script_infoparameter to work with theflaskcommand. If they take a single parameter or a parameter namedscript_info, the
Commits
291f3c3Bump version number to 1.036e68a4release 1.0216151cMerge branch '0.12-maintenance'23047a7Bump version number to 0.12.4.dev1a9e58eBump version number to 0.12.363deee0release 0.12.3062745bMerge pull request #2720 from pallets/setup-link5c8110densure order of project urls10a77a5Add project_urls so that PyPI will show GitHub stats.22992a0add donate link- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.