- update to 0.9.4:
- Fixed an issue with Python 3.3 and an edge case in cookie parsing.
- Fixed decoding errors not handled properly through the WSGI
decoding dance.
- Fixed URI to IRI conversion incorrectly decoding percent signs.
- Restored beahvior of the ``data`` descriptor of the request class to pre 0.9
behavior. This now also means that ``.data`` and ``.get_data()`` have
different behavior. New code should use ``.get_data()`` always.
In addition to that there is now a flag for the ``.get_data()`` method that
controls what should happen with form data parsing and the form parser will
honor cached data. This makes dealing with custom form data more consistent.
- Added `unsafe` parameter to :func:`~werkzeug.urls.url_quote`.
- Fixed an issue with :func:`~werkzeug.urls.url_quote_plus` not quoting
`'+'` correctly.
- Ported remaining parts of :class:`~werkzeug.contrib.RedisCache` to
Python 3.3.
- Ported remaining parts of :class:`~werkzeug.contrib.MemcachedCache` to
Python 3.3
- Fixed a deprecation warning in the contrib atom module.
- Fixed a regression with setting of content types through the
headers dictionary instead with the content type parameter.
- Use correct name for stdlib secure string comparision function.
- Fixed a wrong reference in the docstring of
:func:`~werkzeug.local.release_local`.
- Fixed an `AttributeError` that sometimes occurred when accessing the
:attr:`werkzeug.wrappers.BaseResponse.is_streamed` attribute.
- Fixed an issue with integers no longer being accepted in certain
parts of the routing system or URL quoting functions.
- Fixed an issue with `url_quote` not producing the right escape
codes for single digit codepoints. (forwarded request 197223 from dirkmueller)
OBS-URL: https://build.opensuse.org/request/show/197224
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Werkzeug?expand=0&rev=8
- update to 0.9.4:
- Fixed an issue with Python 3.3 and an edge case in cookie parsing.
- Fixed decoding errors not handled properly through the WSGI
decoding dance.
- Fixed URI to IRI conversion incorrectly decoding percent signs.
- Restored beahvior of the ``data`` descriptor of the request class to pre 0.9
behavior. This now also means that ``.data`` and ``.get_data()`` have
different behavior. New code should use ``.get_data()`` always.
In addition to that there is now a flag for the ``.get_data()`` method that
controls what should happen with form data parsing and the form parser will
honor cached data. This makes dealing with custom form data more consistent.
- Added `unsafe` parameter to :func:`~werkzeug.urls.url_quote`.
- Fixed an issue with :func:`~werkzeug.urls.url_quote_plus` not quoting
`'+'` correctly.
- Ported remaining parts of :class:`~werkzeug.contrib.RedisCache` to
Python 3.3.
- Ported remaining parts of :class:`~werkzeug.contrib.MemcachedCache` to
Python 3.3
- Fixed a deprecation warning in the contrib atom module.
- Fixed a regression with setting of content types through the
headers dictionary instead with the content type parameter.
- Use correct name for stdlib secure string comparision function.
- Fixed a wrong reference in the docstring of
:func:`~werkzeug.local.release_local`.
- Fixed an `AttributeError` that sometimes occurred when accessing the
:attr:`werkzeug.wrappers.BaseResponse.is_streamed` attribute.
- Fixed an issue with integers no longer being accepted in certain
parts of the routing system or URL quoting functions.
- Fixed an issue with `url_quote` not producing the right escape
codes for single digit codepoints.
OBS-URL: https://build.opensuse.org/request/show/197223
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Werkzeug?expand=0&rev=8
- Update to version 0.8.3:
- Fixed another issue with :func:`werkzeug.wsgi.make_line_iter`
where lines longer than the buffer size were not handled
properly.
- Restore stdout after debug console finished executing so
that the debugger can be used on GAE better.
- Fixed a bug with the redis cache for int subclasses
(affects bool caching).
- Fixed an XSS problem with redirect targets coming from
untrusted sources.
- Changes from version 0.8.2:
- Fixed a problem with request handling of the builtin server
not repsonding to socket errors properly.
- The routing request redirect exception's code attribute is now
used properly.
- Fixed a bug with shutdowns on Windows.
- Fixed a few unicode issues with non-ascii characters being
hardcoded in URL rules.
- Fixed two property docstrings being assigned to fdel instead
of ``__doc__``.
- Fixed an issue where CRLF line endings could be split into two
by the line iter function, causing problems with multipart file
uploads.
OBS-URL: https://build.opensuse.org/request/show/109044
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Werkzeug?expand=0&rev=5
- Fixed another issue with :func:`werkzeug.wsgi.make_line_iter`
where lines longer than the buffer size were not handled
properly.
- Restore stdout after debug console finished executing so
that the debugger can be used on GAE better.
- Fixed a bug with the redis cache for int subclasses
(affects bool caching).
- Fixed an XSS problem with redirect targets coming from
untrusted sources.
- Changes from version 0.8.2:
- Fixed a problem with request handling of the builtin server
not repsonding to socket errors properly.
- The routing request redirect exception's code attribute is now
used properly.
- Fixed a bug with shutdowns on Windows.
- Fixed a few unicode issues with non-ascii characters being
hardcoded in URL rules.
- Fixed two property docstrings being assigned to fdel instead
of ``__doc__``.
- Fixed an issue where CRLF line endings could be split into two
by the line iter function, causing problems with multipart file
uploads.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Werkzeug?expand=0&rev=6
- Update to version 0.8.1:
* Fixed an issue with the memcache not working properly.
* Fixed an issue for Python 2.7.1 and higher that broke
copying of multidicts with :func:`copy.copy`.
* Changed hashing methodology of immutable ordered multi dicts
for a potential problem with alternative Python implementations.
- Changes from version 0.8:
* Removed data structure specific KeyErrors for a general
purpose :exc:`~werkzeug.exceptions.BadRequestKeyError`.
* Documented :meth:`werkzeug.wrappers.BaseRequest._load_form_data`.
* The routing system now also accepts strings instead of
dictionaries for the `query_args` parameter since we're only
passing them through for redirects.
* Werkzeug now automatically sets the content length immediately when
the :attr:`~werkzeug.wrappers.BaseResponse.data` attribute is set
for efficiency and simplicity reasons.
* The routing system will now normalize server names to lowercase.
* The routing system will no longer raise ValueErrors in case the
configuration for the server name was incorrect. This should make
deployment much easier because you can ignore that factor now.
* Fixed a bug with parsing HTTP digest headers. It rejected headers
with missing nc and nonce params.
* Proxy fix now also updates wsgi.url_scheme based on X-Forwarded-Proto.
* Added support for key prefixes to the redis cache.
* Added the ability to supress some auto corrections in the wrappers
that are now controlled via `autocorrect_location_header` and
`automatically_set_content_length` on the response objects.
* Werkzeug now uses a new method to check that the length of incoming
data is complete and will raise IO errors by itself if the server
fails to do so.
OBS-URL: https://build.opensuse.org/request/show/90918
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Werkzeug?expand=0&rev=3
* Fixed an issue with the memcache not working properly.
* Fixed an issue for Python 2.7.1 and higher that broke
copying of multidicts with :func:`copy.copy`.
* Changed hashing methodology of immutable ordered multi dicts
for a potential problem with alternative Python implementations.
- Changes from version 0.8:
* Removed data structure specific KeyErrors for a general
purpose :exc:`~werkzeug.exceptions.BadRequestKeyError`.
* Documented :meth:`werkzeug.wrappers.BaseRequest._load_form_data`.
* The routing system now also accepts strings instead of
dictionaries for the `query_args` parameter since we're only
passing them through for redirects.
* Werkzeug now automatically sets the content length immediately when
the :attr:`~werkzeug.wrappers.BaseResponse.data` attribute is set
for efficiency and simplicity reasons.
* The routing system will now normalize server names to lowercase.
* The routing system will no longer raise ValueErrors in case the
configuration for the server name was incorrect. This should make
deployment much easier because you can ignore that factor now.
* Fixed a bug with parsing HTTP digest headers. It rejected headers
with missing nc and nonce params.
* Proxy fix now also updates wsgi.url_scheme based on X-Forwarded-Proto.
* Added support for key prefixes to the redis cache.
* Added the ability to supress some auto corrections in the wrappers
that are now controlled via `autocorrect_location_header` and
`automatically_set_content_length` on the response objects.
* Werkzeug now uses a new method to check that the length of incoming
data is complete and will raise IO errors by itself if the server
fails to do so.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Werkzeug?expand=0&rev=3
- Update to version 0.7.1:
* Fixed a problem with newer versions of IPython
* Disabled pyinotify based reloader which does not work reliably.
- Changes from version 0.7.0:
* Add support for python-libmemcached to the Werkzeug cache abstraction
layer.
* improved url_decode and url_encode performance.
* fixed an issue where the SharedDataMiddleware could cause an
internal server error on weird paths when loading via pkg_resources.
* fixed an URL generation bug that caused URLs to be invalid if a
generated component contains a colon.
* werkzeug.import_string now works with partially set up
packages properly.
* disabled automatic socket swiching for IPv6 on the development
server due to problems it caused.
* Werkzeug no longer overrides the Date header when creating a
conditional HTTP response.
* The routing system provides a method to retrieve the matching
methods for a given path.
* The routing system now accepts a parameter to change the encoding
error behaviour.
* The local manager can now accept custom ident functions in the
constructor that are forwarded to the wrapped local objects.
* url_unquote_plus now accepts unicode strings again.
* fixed an issues with the filesystem session support's prune
function and concurrent usage.
* fixed a problem with external URL generation discarding the port.
* added support for pylibmc to the Werkzeug cache abstraction layer.
* fixed an issue with the new multipart parser that happened when
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Werkzeug?expand=0&rev=1