update news for next release.

This commit is contained in:
benoitc 2012-02-25 15:23:12 +01:00
parent 86ea0c6f8d
commit 5afb58c91d
2 changed files with 64 additions and 19 deletions

View File

@ -81,8 +81,31 @@ def app(environ, start_response):
<div class="blurb"> <div class="blurb">
<h3>Version 0.13.4 / 2011-09-23</h3> <h3>Version 0.13.4 / 2011-09-23</h3>
<ul> <ul>
<li>fix util.closerange function used to prevent leaking fds <li>check if Request line is too large: You can now pass the
on python 2.5 (typo)</li> parameter <code>--limit-request-line</code> or set the
<code>limit_request_line</code> in your configuration file to set the max
size of the request line in bytes.</li>
<li>limit the number of headers fields and their size. Add
<code>--limit-request-fieldsw</code> and
<code>limit-request-field-size</code> settings</li>
<li>add 'p' variable to the log access format to log
pidfile</li>
<li>add '{HeaderName}o' variable to the logo access format to
log the response header HeaderName</li>
<li>request header is now logged with the variable
'{HeaderName}i' in the access log file</lI>
<li>improve error logging</li>
<li>support logging.configFile</li>
<li><strong>support django 1.4</strong> in both
<code>gunicorn_django</code> &amp; <code>run_gunicorn</code> command</li>
<li>improve reload in django run_gunicorn command (should just
work now)</li>
<li>allows people to set the <code>X-Forwarded-For</code> header key and
disable it by setting an empty string.</li>
<li>fix support of Tornado</li>
<li>many <a
href="https://github.com/benoitc/gunicorn/compare/0.13.4...0.14.0">other
fixes.</a></li></li>
</ul> </ul>
</div> </div>
<div id="footer"> <div id="footer">

View File

@ -8,6 +8,28 @@ _TOC_TOP_
_TOC_BOT_ _TOC_BOT_
0.14.0 / 2012-02-27
-------------------
- check if Request line is too large: You can now pass the parameter
'--limit-request-line` or set the 'limit_request_line` in your
configuration file to set the max size of the request line in bytes.
- limit the number of headers fields and their size. Add
'--limit-request-fields` and 'limit-request-field-size` settings
- add 'p' variable to the log access format to log pidfile
- add '{HeaderName}o' variable to the logo access format to log the
response header HeaderName
- request header is now logged with the variable '{HeaderName}i' in the
access log file
- improve error logging
- support logging.configFile
- support django 1.4 in both gunicorn_django & run_gunicorn command
- improve reload in django run_gunicorn command (should just work now)
- allows people to set the 'X-Forwarded-For` header key and disable it by
setting an empty string.
- fix support of Tornado
- many other fixes.
0.13.4 / 2011-09-23 0.13.4 / 2011-09-23
------------------- -------------------