update the changes

This commit is contained in:
benoitc 2013-08-28 00:31:27 +02:00
parent 644ae4d4f2
commit d3b1687e03
3 changed files with 47 additions and 1 deletions

View File

@ -16,7 +16,7 @@
<div class="logo-div">
<div class="latest">
Latest version: <strong><a
href="http://docs.gunicorn.org/en/latest/news.html#id1">17.5</a></strong>
href="http://docs.gunicorn.org/en/18.0/news.html#id1">18.0</a></strong>
</div>
<div class="logo"><img src="images/logo.jpg" ></div>

View File

@ -1,6 +1,29 @@
Changelog - 2013
================
18.0 / 2013-08-26
-----------------
- new: add ``-e/--env`` command line argument to pass an environement variables to
gunicorn
- new: add ``--chdir`` command line argument to specified directory
before apps loading. - new: add wsgi.file_wrapper support in async workers
- new: add ``--paste`` command line argument to set the paster config file
- deprecated: the command ``gunicorn_django`` is now deprecated. You should now
run your application with the WSGI interface installed with your project (see
https://docs.djangoproject.com/en/1.4/howto/deployment/wsgi/gunicorn/) for
more infos.
- deprecated: the command ``gunicorn_paste`` is deprecated. You now should use
the new ``--paste`` argument to set the configuration file of your paster
application.
- fix: Removes unmatched leading quote from the beginning of the default access
log format string
- fix: null timeout
- fix: gevent worker
- fix: don't reloead the paster app when using pserve
- fix: after closing for error do not keep alive the connection
- fix: responses 1xx, 204 and 304 should not force the connection to be closed
17.5 / 2013-07-03
------------------

View File

@ -1,6 +1,29 @@
Changelog
=========
18.0 / 2013-08-26
-----------------
- new: add ``-e/--env`` command line argument to pass an environement variables to
gunicorn
- new: add ``--chdir`` command line argument to specified directory
before apps loading. - new: add wsgi.file_wrapper support in async workers
- new: add ``--paste`` command line argument to set the paster config file
- deprecated: the command ``gunicorn_django`` is now deprecated. You should now
run your application with the WSGI interface installed with your project (see
https://docs.djangoproject.com/en/1.4/howto/deployment/wsgi/gunicorn/) for
more infos.
- deprecated: the command ``gunicorn_paste`` is deprecated. You now should use
the new ``--paste`` argument to set the configuration file of your paster
application.
- fix: Removes unmatched leading quote from the beginning of the default access
log format string
- fix: null timeout
- fix: gevent worker
- fix: don't reloead the paster app when using pserve
- fix: after closing for error do not keep alive the connection
- fix: responses 1xx, 204 and 304 should not force the connection to be closed
17.5 / 2013-07-03
------------------