Accepting request 487844 from devel:languages:python

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/487844
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=16
This commit is contained in:
2017-04-28 08:38:31 +00:00
committed by Git OBS Bridge
parent c59066d40e
commit 91aa95ef11
5 changed files with 92 additions and 43 deletions

View File

@@ -1,3 +1,38 @@
-------------------------------------------------------------------
Tue Apr 4 14:51:27 UTC 2017 - jmatejek@suse.com
- update for singlespec
- flask-python36.patch: fix test failures in Python 3.6
- update to 0.12.1
* Prevent `flask run` from showing a NoAppException when an ImportError occurs
within the imported application module.
* Fix encoding behavior of ``app.config.from_pyfile`` for Python 3. Fix
``#2118``.
* Call `ctx.auto_pop` with the exception object instead of `None`, in the
event that a `BaseException` such as `KeyboardInterrupt` is raised in a
request handler.
-------------------------------------------------------------------
Thu Mar 16 12:26:19 UTC 2017 - michael@stroeder.com
- update to version 0.12:
* the cli command now responds to `--version`.
* Mimetype guessing and ETag generation for file-like objects in
"send_file" has been removed, as per issue "#104". See pull
request "#1849".
* Mimetype guessing in "send_file" now fails loudly and doesn't fall
back to "application/octet-stream". See pull request "#1988".
* Make "flask.safe_join" able to join multiple paths like
"os.path.join" (pull request "#1730").
* Revert a behavior change that made the dev server crash instead of
returning a Internal Server Error (pull request "#2006").
* Correctly invoke response handlers for both regular request
dispatching as well as error handlers.
* Disable logger propagation by default for the app logger.
* Add support for range requests in "send_file".
* "app.test_client" includes preset default environment, which can
now be directly set, instead of per "client.get".
-------------------------------------------------------------------
Thu Nov 17 13:00:22 UTC 2016 - rjschwei@suse.com