15
0

Accepting request 486169 from devel:languages:python:singlespec

- update to 0.12.1
- use python3-Sphinx for build

- update for singlespec
- update to 0.12.1
  * deprecate werkzeug.script
  * Use `inspect.getfullargspec` internally when available as
    `inspect.getargspec` is gone in 3.6
  * Added support for status code 451 and 423
  * Improved the build error suggestions.  In particular only if
    someone stringifies the error will the suggestions be calculated.
  * Added support for uWSGI's caching backend.
  * Fix a bug where iterating over a `FileStorage` would result in an infinite
    loop.
  * Datastructures now inherit from the relevant baseclasses from the
    `collections` module in the stdlib. See #794.
  * Add support for recognizing NetBSD, OpenBSD, FreeBSD, DragonFlyBSD platforms
    in the user agent string.
  * Recognize SeaMonkey browser name and version correctly
  * Recognize Baiduspider, and bingbot user agents
  * If `LocalProxy`'s wrapped object is a function, refer to it with __wrapped__
    attribute.
  * The defaults of ``generate_password_hash`` have been changed to more secure
    ones, see pull request ``#753``.
  * Add support for encoding in options header parsing, see pull request
    ``#933``.
  * ``test.Client`` now properly handles Location headers with relative URLs, see
    pull request ``#879``.
  * When `HTTPException` is raised, it now prints the description, for easier
    debugging.

OBS-URL: https://build.opensuse.org/request/show/486169
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Werkzeug?expand=0&rev=24
This commit is contained in:
Jan Matejek
2017-04-06 15:05:56 +00:00
committed by Git OBS Bridge
parent cea97ae4ab
commit 12ae1efe13
7 changed files with 96 additions and 36 deletions

View File

@@ -1,3 +1,52 @@
-------------------------------------------------------------------
Tue Apr 4 15:26:59 UTC 2017 - jmatejek@suse.com
- update for singlespec
- update to 0.12.1
* deprecate werkzeug.script
* Use `inspect.getfullargspec` internally when available as
`inspect.getargspec` is gone in 3.6
* Added support for status code 451 and 423
* Improved the build error suggestions. In particular only if
someone stringifies the error will the suggestions be calculated.
* Added support for uWSGI's caching backend.
* Fix a bug where iterating over a `FileStorage` would result in an infinite
loop.
* Datastructures now inherit from the relevant baseclasses from the
`collections` module in the stdlib. See #794.
* Add support for recognizing NetBSD, OpenBSD, FreeBSD, DragonFlyBSD platforms
in the user agent string.
* Recognize SeaMonkey browser name and version correctly
* Recognize Baiduspider, and bingbot user agents
* If `LocalProxy`'s wrapped object is a function, refer to it with __wrapped__
attribute.
* The defaults of ``generate_password_hash`` have been changed to more secure
ones, see pull request ``#753``.
* Add support for encoding in options header parsing, see pull request
``#933``.
* ``test.Client`` now properly handles Location headers with relative URLs, see
pull request ``#879``.
* When `HTTPException` is raised, it now prints the description, for easier
debugging.
* Werkzeug's dict-like datastructures now have ``view``-methods under Python 2,
see pull request ``#968``.
* Fix a bug in ``MultiPartParser`` when no ``stream_factory`` was provided
during initialization, see pull request ``#973``.
* Disable autocorrect and spellchecker in the debugger middleware's Python
prompt, see pull request ``#994``.
* Don't redirect to slash route when method doesn't match, see pull request
``#907``.
* Fix a bug when using ``SharedDataMiddleware`` with frozen packages, see pull
request ``#959``.
* `Range` header parsing function fixed for invalid values ``#974``.
* Add support for byte Range Requests, see pull request ``#978``.
* Use modern cryptographic defaults in the dev servers ``#1004``.
* the post() method of the test client now accept file object through the data
parameter.
* Color run_simple's terminal output based on HTTP codes ``#1013``.
* Fix self-XSS in debugger console, see ``#1031``.
* Fix IPython 5.x shell support, see ``#1033``.
-------------------------------------------------------------------
Thu Nov 17 13:02:10 UTC 2016 - rjschwei@suse.com