forked from pool/python-Werkzeug
Accepting request 358349 from home:aplanas:branches:devel:languages:python
- Add 0001_create_a_thread_to_reap_death_process.patch
Fixes bsc#954591
- update to 0.11.3:
- Added reloader_paths option to run_simple and other functions in
werkzeug.serving. This allows the user to completely override the
Python module watching of Werkzeug with custom paths.
- Many custom cached properties of Werkzeug’s classes are now
subclasses of Python’s property type (issue #616).
- bind_to_environ now doesn’t differentiate between implicit and
explicit default port numbers in HTTP_HOST (pull request #204).
- BuildErrors are now more informative. They come with a complete
sentence as error message, and also provide suggestions (pull
request #691).
- Fix a bug in the user agent parser where Safari’s build number
instead of version would be extracted (pull request #703).
- Fixed issue where RedisCache set_many was broken for twemproxy,
which doesn’t support the default MULTI command (pull request
#702).
- mimetype parameters on request and response classes are now always
converted to lowercase.
- Changed cache so that cache never expires if timeout is 0. This
also fixes an issue with redis setex (issue #550)
- Werkzeug now assumes UTF-8 as filesystem encoding on Unix if
Python detected it as ASCII.
- New optional has method on caches.
- Fixed various bugs in parse_options_header (pull request #643).
- If the reloader is enabled the server will now open the socket in
the parent process if this is possible. This means that when the
reloader kicks in the connection from client will wait instead of
OBS-URL: https://build.opensuse.org/request/show/358349
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Werkzeug?expand=0&rev=16
This commit is contained in:
@@ -1,3 +1,51 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 8 13:01:58 UTC 2016 - aplanas@suse.com
|
||||
|
||||
- Add 0001_create_a_thread_to_reap_death_process.patch
|
||||
Fixes bsc#954591
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 8 12:35:28 UTC 2016 - aplanas@suse.com
|
||||
|
||||
- update to 0.11.3:
|
||||
- Added reloader_paths option to run_simple and other functions in
|
||||
werkzeug.serving. This allows the user to completely override the
|
||||
Python module watching of Werkzeug with custom paths.
|
||||
- Many custom cached properties of Werkzeug’s classes are now
|
||||
subclasses of Python’s property type (issue #616).
|
||||
- bind_to_environ now doesn’t differentiate between implicit and
|
||||
explicit default port numbers in HTTP_HOST (pull request #204).
|
||||
- BuildErrors are now more informative. They come with a complete
|
||||
sentence as error message, and also provide suggestions (pull
|
||||
request #691).
|
||||
- Fix a bug in the user agent parser where Safari’s build number
|
||||
instead of version would be extracted (pull request #703).
|
||||
- Fixed issue where RedisCache set_many was broken for twemproxy,
|
||||
which doesn’t support the default MULTI command (pull request
|
||||
#702).
|
||||
- mimetype parameters on request and response classes are now always
|
||||
converted to lowercase.
|
||||
- Changed cache so that cache never expires if timeout is 0. This
|
||||
also fixes an issue with redis setex (issue #550)
|
||||
- Werkzeug now assumes UTF-8 as filesystem encoding on Unix if
|
||||
Python detected it as ASCII.
|
||||
- New optional has method on caches.
|
||||
- Fixed various bugs in parse_options_header (pull request #643).
|
||||
- If the reloader is enabled the server will now open the socket in
|
||||
the parent process if this is possible. This means that when the
|
||||
reloader kicks in the connection from client will wait instead of
|
||||
tearing down. This does not work on all Python versions.
|
||||
- Implemented PIN based authentication for the debugger. This can
|
||||
optionally be disabled but is discouraged. This change was
|
||||
necessary as it has been discovered that too many people run the
|
||||
debugger in production.
|
||||
- Devserver no longer requires SSL module to be installed.
|
||||
- Reloader: Correctly detect file changes made by moving temporary
|
||||
files over the original, which is e.g. the case with PyCharm (pull
|
||||
request #722).
|
||||
- Fix bool behavior of werkzeug.datastructures.ETags under Python 3
|
||||
(issue #744).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 22 14:22:45 UTC 2015 - tbechtold@suse.com
|
||||
|
||||
|
||||
Reference in New Issue
Block a user