mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
document the 19.1.1 tag
This commit is contained in:
parent
717460b336
commit
3e76389ef0
@ -1,7 +1,34 @@
|
|||||||
Changelog - 2014
|
Changelog - 2014
|
||||||
================
|
================
|
||||||
|
|
||||||
19.1 / 2014-07-26
|
19.1.1 / 2014-08-16
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
Changes
|
||||||
|
-------
|
||||||
|
|
||||||
|
Core
|
||||||
|
++++
|
||||||
|
|
||||||
|
- fix `#835 <https://github.com/benoitc/gunicorn/issues/835>`_: display correct pid of already running instance
|
||||||
|
- fix : fix `PyTest` class in setup.py.
|
||||||
|
|
||||||
|
Logging
|
||||||
|
+++++++
|
||||||
|
|
||||||
|
- fix `#838 <https://github.com/benoitc/gunicorn/issues/838>`_: statsd logegr, send statsd timing metrics in milliseconds
|
||||||
|
- fix `#839 <https://github.com/benoitc/gunicorn/issues/839>`_: statsd logger, allows for empty log message while pushing metrics and restore worker number in DEBUG logs
|
||||||
|
- fix `#850 <https://github.com/benoitc/gunicorn/issues/850>`_: add
|
||||||
|
timezonw to logging
|
||||||
|
- fix `#853 <https://github.com/benoitc/gunicorn/issues/853>`_: Respect logger_class setting unless statsd is on
|
||||||
|
|
||||||
|
AioHttp worker
|
||||||
|
++++++++++++++
|
||||||
|
|
||||||
|
- fix `#830 <https://github.com/benoitc/gunicorn/issues/830>`_ make sure
|
||||||
|
gaiohttp worker is shipped with gunicorn.
|
||||||
|
|
||||||
|
19.1 / 2014-07-26
|
||||||
~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
@ -115,7 +142,7 @@ core
|
|||||||
keep-alive requests after the listener has closed.
|
keep-alive requests after the listener has closed.
|
||||||
- add on_exit hook called just before exiting gunicorn.
|
- add on_exit hook called just before exiting gunicorn.
|
||||||
- add support for python 3.4
|
- add support for python 3.4
|
||||||
- fix: do not swallow unexpected errors when reaping
|
- fix: do not swallow unexpected errors when reaping
|
||||||
- fix: remove incompatible SSL option with python 2.6
|
- fix: remove incompatible SSL option with python 2.6
|
||||||
- add new async gthread worker and `--threads` options allows to set multiple
|
- add new async gthread worker and `--threads` options allows to set multiple
|
||||||
threads to listen on connection
|
threads to listen on connection
|
||||||
@ -125,7 +152,7 @@ core
|
|||||||
- add universal wheel support
|
- add universal wheel support
|
||||||
- use `email.utils.formatdate` in gunicorn.util.http_date
|
- use `email.utils.formatdate` in gunicorn.util.http_date
|
||||||
- deprecate the `--debug` option
|
- deprecate the `--debug` option
|
||||||
- fix: log exceptions that occur after response start …
|
- fix: log exceptions that occur after response start …
|
||||||
- allows loading of applications from `.pyc` files (#693)
|
- allows loading of applications from `.pyc` files (#693)
|
||||||
- fix: issue #691, raw_env config file parsing
|
- fix: issue #691, raw_env config file parsing
|
||||||
- use a dynamic timeout to wait for the optimal time. (Reduce power
|
- use a dynamic timeout to wait for the optimal time. (Reduce power
|
||||||
@ -143,7 +170,7 @@ core
|
|||||||
- fix logging: don't try to redirect stdout/stderr to the logfile.
|
- fix logging: don't try to redirect stdout/stderr to the logfile.
|
||||||
- fix logging: don't propagate log
|
- fix logging: don't propagate log
|
||||||
- improve logging: file option can be overriden by the gunicorn options `--error-logfile` and `--access-logfile` if they are given.
|
- improve logging: file option can be overriden by the gunicorn options `--error-logfile` and `--access-logfile` if they are given.
|
||||||
- fix: dont' override SERVER_* by the Host header
|
- fix: dont' override SERVER_* by the Host header
|
||||||
- fix: handle_error
|
- fix: handle_error
|
||||||
- add more option to configure SSL
|
- add more option to configure SSL
|
||||||
- fix: sendfile with SSL
|
- fix: sendfile with SSL
|
||||||
@ -153,7 +180,7 @@ core
|
|||||||
- fix: Error messages are now encoded in latin1
|
- fix: Error messages are now encoded in latin1
|
||||||
- fix: request line length check
|
- fix: request line length check
|
||||||
- improvement: proxy_allow_ips: Allow proxy protocol if "*" specified
|
- improvement: proxy_allow_ips: Allow proxy protocol if "*" specified
|
||||||
- fix: run worker's `setup` method before setting num_workers
|
- fix: run worker's `setup` method before setting num_workers
|
||||||
- fix: FileWrapper inherit from `object` now
|
- fix: FileWrapper inherit from `object` now
|
||||||
- fix: Error messages are now encoded in latin1
|
- fix: Error messages are now encoded in latin1
|
||||||
- fix: don't spam the console on SIGWINCH.
|
- fix: don't spam the console on SIGWINCH.
|
||||||
@ -167,7 +194,7 @@ gevent worker
|
|||||||
+++++++++++++
|
+++++++++++++
|
||||||
|
|
||||||
- fix: make sure to stop all listeners
|
- fix: make sure to stop all listeners
|
||||||
- fix: monkey patching is now done in the worker
|
- fix: monkey patching is now done in the worker
|
||||||
- fix: "global name 'hub' is not defined"
|
- fix: "global name 'hub' is not defined"
|
||||||
- fix: reinit `hub` on old versions of gevent
|
- fix: reinit `hub` on old versions of gevent
|
||||||
- support gevent 1.0
|
- support gevent 1.0
|
||||||
|
|||||||
@ -1,7 +1,34 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
19.1 / 2014-07-26
|
19.1.1 / 2014-08-16
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
Changes
|
||||||
|
-------
|
||||||
|
|
||||||
|
Core
|
||||||
|
++++
|
||||||
|
|
||||||
|
- fix `#835 <https://github.com/benoitc/gunicorn/issues/835>`_: display correct pid of already running instance
|
||||||
|
- fix : fix `PyTest` class in setup.py.
|
||||||
|
|
||||||
|
Logging
|
||||||
|
+++++++
|
||||||
|
|
||||||
|
- fix `#838 <https://github.com/benoitc/gunicorn/issues/838>`_: statsd logegr, send statsd timing metrics in milliseconds
|
||||||
|
- fix `#839 <https://github.com/benoitc/gunicorn/issues/839>`_: statsd logger, allows for empty log message while pushing metrics and restore worker number in DEBUG logs
|
||||||
|
- fix `#850 <https://github.com/benoitc/gunicorn/issues/850>`_: add
|
||||||
|
timezonw to logging
|
||||||
|
- fix `#853 <https://github.com/benoitc/gunicorn/issues/853>`_: Respect logger_class setting unless statsd is on
|
||||||
|
|
||||||
|
AioHttp worker
|
||||||
|
++++++++++++++
|
||||||
|
|
||||||
|
- fix `#830 <https://github.com/benoitc/gunicorn/issues/830>`_ make sure
|
||||||
|
gaiohttp worker is shipped with gunicorn.
|
||||||
|
|
||||||
|
19.1 / 2014-07-26
|
||||||
~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user