mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
fix 19.1 changelogs
This commit is contained in:
parent
428c7e1f98
commit
d3e747a300
@ -1,6 +1,70 @@
|
||||
Changelog - 2014
|
||||
================
|
||||
|
||||
19.1 / 2013-07-26
|
||||
~~~~~~~~~~~~~~~~~
|
||||
|
||||
Changes
|
||||
-------
|
||||
|
||||
Core
|
||||
++++
|
||||
|
||||
- fix `#785 <https://github.com/benoitc/gunicorn/issues/785>`_: handle binary type address given to a client socket address
|
||||
- fix graceful shutdown. make sure QUIT and TERMS signals are switched
|
||||
everywhere.
|
||||
- support loading config from module (`#799 <https://github.com/benoitc/gunicorn/issues/799>`_)
|
||||
- fix check for file-like objects (`#805 <https://github.com/benoitc/gunicorn/issues/805>`_)
|
||||
- fix `#815 <https://github.com/benoitc/gunicorn/issues/815>`_ args validation in WSGIApplication.init
|
||||
- fix `#787 <https://github.com/benoitc/gunicorn/issues/787>`_ check if we load a pyc file or not.
|
||||
|
||||
|
||||
Tornado worker
|
||||
++++++++++++++
|
||||
|
||||
|
||||
- fix `#771 <https://github.com/benoitc/gunicorn/issues/771>`_: support tornado 4.0
|
||||
- fix #783: x_headers error. The x-forwarded-headers option has been removed
|
||||
in `c4873681299212d6082cd9902740eef18c2f14f1
|
||||
<https://github.com/benoitc/gunicorn/commit/c4873681299212d6082cd9902740eef18c2f14f1>`_. The discussion is
|
||||
available on `#633 <https://github.com/benoitc/gunicorn/pull/633>`_.
|
||||
|
||||
AioHttp worker
|
||||
++++++++++++++
|
||||
|
||||
- fix: fetch all body in input. fix `#803 <https://github.com/benoitc/gunicorn/issues/803>`_
|
||||
- fix: don't install the worker if python < 3.3
|
||||
- fix `#822 <https://github.com/benoitc/gunicorn/issues/822>`_: Support UNIX sockets in gaiohttp worker
|
||||
|
||||
|
||||
Async worker
|
||||
++++++++++++
|
||||
|
||||
- fix `#790 <https://github.com/benoitc/gunicorn/issues/790>`_ StopIteration shouldn't be catched at this level.
|
||||
|
||||
Logging
|
||||
+++++++
|
||||
|
||||
- add statsd logging handler fix `#748 <https://github.com/benoitc/gunicorn/issues/748>`_
|
||||
|
||||
Paster
|
||||
++++++
|
||||
|
||||
- fix `#809 <https://github.com/benoitc/gunicorn/issues/809>`_ Set global logging configuration from a Paste config.
|
||||
|
||||
Extra
|
||||
+++++
|
||||
|
||||
- fix RuntimeError in gunicorn.reloader (`#807 <https://github.com/benoitc/gunicorn/issues/807>`_)
|
||||
|
||||
Documentation
|
||||
+++++++++++++
|
||||
|
||||
- update faq: put a note on how `watch logs in the console
|
||||
<http://docs.gunicorn.org/en/latest/faq.html#why-i-don-t-see-any-logs-in-the-console>`_
|
||||
since many people asked for it.
|
||||
|
||||
|
||||
19.0 / 2014-06-12
|
||||
-----------------
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
Changelog
|
||||
=========
|
||||
|
||||
19.1 / unreleased
|
||||
19.1 / 2013-07-26
|
||||
~~~~~~~~~~~~~~~~~
|
||||
|
||||
Changes
|
||||
@ -15,10 +15,15 @@ Core
|
||||
everywhere.
|
||||
- support loading config from module (`#799 <https://github.com/benoitc/gunicorn/issues/799>`_)
|
||||
- fix check for file-like objects (`#805 <https://github.com/benoitc/gunicorn/issues/805>`_)
|
||||
- fix `#815 <https://github.com/benoitc/gunicorn/issues/815>`_ args validation in WSGIApplication.init
|
||||
- fix `#787 <https://github.com/benoitc/gunicorn/issues/787>`_ check if we load a pyc file or not.
|
||||
|
||||
|
||||
Tornado worker
|
||||
++++++++++++++
|
||||
|
||||
|
||||
- fix `#771 <https://github.com/benoitc/gunicorn/issues/771>`_: support tornado 4.0
|
||||
- fix #783: x_headers error. The x-forwarded-headers option has been removed
|
||||
in `c4873681299212d6082cd9902740eef18c2f14f1
|
||||
<https://github.com/benoitc/gunicorn/commit/c4873681299212d6082cd9902740eef18c2f14f1>`_. The discussion is
|
||||
@ -29,12 +34,24 @@ AioHttp worker
|
||||
|
||||
- fix: fetch all body in input. fix `#803 <https://github.com/benoitc/gunicorn/issues/803>`_
|
||||
- fix: don't install the worker if python < 3.3
|
||||
- fix `#822 <https://github.com/benoitc/gunicorn/issues/822>`_: Support UNIX sockets in gaiohttp worker
|
||||
|
||||
|
||||
Async worker
|
||||
++++++++++++
|
||||
|
||||
- fix `#790 <https://github.com/benoitc/gunicorn/issues/790>`_ StopIteration shouldn't be catched at this level.
|
||||
|
||||
Logging
|
||||
+++++++
|
||||
|
||||
- add statsd logging handler fix `#748 <https://github.com/benoitc/gunicorn/issues/748>`_
|
||||
|
||||
Paster
|
||||
++++++
|
||||
|
||||
- fix `#809 <https://github.com/benoitc/gunicorn/issues/809>`_ Set global logging configuration from a Paste config.
|
||||
|
||||
Extra
|
||||
+++++
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user