mirror of
https://github.com/frappe/gunicorn.git
synced 2026-07-02 10:41:30 +08:00
say hello to 0.17.0
This commit is contained in:
parent
89a1936ce6
commit
82cc98746e
@ -1,6 +1,18 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
0.17.0 / 2012-12-25
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
- allows gunicorn to bind to multiple address
|
||||||
|
- add SSL support
|
||||||
|
- add syslog support
|
||||||
|
- add nworkers_changed hook
|
||||||
|
- add response arg for post_request hook
|
||||||
|
- parse command line with argparse (replace deprecated optparse)
|
||||||
|
- fix PWD detection in arbiter
|
||||||
|
- miscellenaeous PEP8 fixes
|
||||||
|
|
||||||
0.16.1 / 2012-11-19
|
0.16.1 / 2012-11-19
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
@ -51,8 +63,8 @@ Changelog
|
|||||||
|
|
||||||
- fix logging during daemonisation
|
- fix logging during daemonisation
|
||||||
|
|
||||||
0.14.4 / 2012-06-24
|
0.14.4 / 2012-06-24
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
- new --graceful-timeout option
|
- new --graceful-timeout option
|
||||||
- fix multiple issues with request limit
|
- fix multiple issues with request limit
|
||||||
@ -65,7 +77,7 @@ Changelog
|
|||||||
- **breaking change**: take the control on graceful reload back.
|
- **breaking change**: take the control on graceful reload back.
|
||||||
graceful can't be overrided anymore using the on_reload function.
|
graceful can't be overrided anymore using the on_reload function.
|
||||||
|
|
||||||
0.14.3 / 2012-05-15
|
0.14.3 / 2012-05-15
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
- improvement: performance of http.body.Body.readline()
|
- improvement: performance of http.body.Body.readline()
|
||||||
@ -78,7 +90,7 @@ Changelog
|
|||||||
- fix: django1.4 support
|
- fix: django1.4 support
|
||||||
- fix: only load the paster application 1 time
|
- fix: only load the paster application 1 time
|
||||||
|
|
||||||
0.14.2 / 2012-03-16
|
0.14.2 / 2012-03-16
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
- add validate_class validator: allows to use a class or a method to
|
- add validate_class validator: allows to use a class or a method to
|
||||||
@ -88,12 +100,12 @@ Changelog
|
|||||||
- gevent_wsgi is now an alias of gevent_pywsgi
|
- gevent_wsgi is now an alias of gevent_pywsgi
|
||||||
- Fix gevent_pywsgi worker
|
- Fix gevent_pywsgi worker
|
||||||
|
|
||||||
0.14.1 / 2012-03-02
|
0.14.1 / 2012-03-02
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
- fixing source archive, reducing its size
|
- fixing source archive, reducing its size
|
||||||
|
|
||||||
0.14.0 / 2012-02-27
|
0.14.0 / 2012-02-27
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
- check if Request line is too large: You can now pass the parameter
|
- check if Request line is too large: You can now pass the parameter
|
||||||
|
|||||||
@ -3,6 +3,6 @@
|
|||||||
# This file is part of gunicorn released under the MIT license.
|
# This file is part of gunicorn released under the MIT license.
|
||||||
# See the NOTICE for more information.
|
# See the NOTICE for more information.
|
||||||
|
|
||||||
version_info = (0, 16, 1)
|
version_info = (0, 17, 0)
|
||||||
__version__ = ".".join([str(v) for v in version_info])
|
__version__ = ".".join([str(v) for v in version_info])
|
||||||
SERVER_SOFTWARE = "gunicorn/%s" % __version__
|
SERVER_SOFTWARE = "gunicorn/%s" % __version__
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user