Skip to content

Commit

Permalink
Merge branch '0.8-maintenance'
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Reitz committed Feb 24, 2012
2 parents c5a6f36 + 95db7a1 commit 1fad0fd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 3 additions & 2 deletions CHANGES
Expand Up @@ -49,6 +49,7 @@ Version 0.8.3
(affects bool caching).
- Fixed an XSS problem with redirect targets coming from
untrusted sources.
- Redis cache backend now supports password authentication.

Version 0.8.2
-------------
Expand Down Expand Up @@ -362,7 +363,7 @@ Version 0.5.1
- file upload streams no longer have to provide a truncate()
method.
- implemented :meth:`BaseRequest._form_parsing_failed`.
- fixed #394
- fixed #394
- :meth:`ImmutableDict.copy`, :meth:`ImmutableMultiDict.copy` and
:meth:`ImmutableTypeConversionDict.copy` return mutable shallow
copies.
Expand Down Expand Up @@ -436,7 +437,7 @@ Released on April 24th, codename Schlagbohrer.
- added :mod:`werkzeug.contrib.lint`
- added `passthrough_errors` to `run_simple`.
- added `secure_filename`
- added :func:`make_line_iter`
- added :func:`make_line_iter`
- :class:`MultiDict` copies now instead of revealing internal
lists to the caller for `getlist` and iteration functions that
return lists.
Expand Down
6 changes: 5 additions & 1 deletion werkzeug/contrib/cache.py
Expand Up @@ -463,9 +463,13 @@ class RedisCache(BaseCache):
.. versionchanged:: 0.8
This cache backend now properly serializes objects.
.. versionchanged:: 0.8.3
This cache backend now supports password authentication.
:param host: address of the Redis server or an object which API is
compatible with the official Python Redis client (redis-py).
:param port: port number on which Redis server listens for connections
:param port: port number on which Redis server listens for connections.
:param password: password authentication for the Redis server.
:param default_timeout: the default timeout that is used if no timeout is
specified on :meth:`~BaseCache.set`.
:param key_prefix: A prefix that should be added to all keys.
Expand Down

0 comments on commit 1fad0fd

Please sign in to comment.