mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
parent
98c9e3b375
commit
01cdd8b62a
@ -6,6 +6,35 @@ Changelog - 2015
|
|||||||
|
|
||||||
Please see :doc:`news` for the latest changes.
|
Please see :doc:`news` for the latest changes.
|
||||||
|
|
||||||
|
19.4.2 / 2015/12/29
|
||||||
|
===================
|
||||||
|
|
||||||
|
Core
|
||||||
|
++++
|
||||||
|
|
||||||
|
- improvement: handle HaltServer in manage_workers (:issue:`1095`)
|
||||||
|
- fix: Do not rely on sendfile sending requested count (:issue:`1155`)
|
||||||
|
- fix: claridy --no-sendfile default (:issue:`1156`)
|
||||||
|
- fix: LoggingCatch sendfile failure from no file descriptor (:issue:`1160`)
|
||||||
|
|
||||||
|
Logging
|
||||||
|
+++++++
|
||||||
|
|
||||||
|
- fix: Always send access log to syslog if syslog is on`
|
||||||
|
- fix: Documentationcheck auth before trying to own a file (:issue:`1157`)
|
||||||
|
|
||||||
|
|
||||||
|
Documentation
|
||||||
|
+++++++++++++
|
||||||
|
|
||||||
|
- fix: Fix Slowloris broken link. (:issue:`1142`)
|
||||||
|
- Tweak markup in faq.rst
|
||||||
|
|
||||||
|
Testing
|
||||||
|
+++++++
|
||||||
|
|
||||||
|
- fix: gaiohttp test (:issue:`1164`)
|
||||||
|
|
||||||
19.4.1 / 2015/11/25
|
19.4.1 / 2015/11/25
|
||||||
===================
|
===================
|
||||||
|
|
||||||
|
|||||||
@ -2,6 +2,36 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
19.4.2 / 2015/12/29
|
||||||
|
===================
|
||||||
|
|
||||||
|
Core
|
||||||
|
++++
|
||||||
|
|
||||||
|
- improvement: handle HaltServer in manage_workers (:issue:`1095`)
|
||||||
|
- fix: Do not rely on sendfile sending requested count (:issue:`1155`)
|
||||||
|
- fix: claridy --no-sendfile default (:issue:`1156`)
|
||||||
|
- fix: LoggingCatch sendfile failure from no file descriptor (:issue:`1160`)
|
||||||
|
|
||||||
|
Logging
|
||||||
|
+++++++
|
||||||
|
|
||||||
|
- fix: Always send access log to syslog if syslog is on`
|
||||||
|
- fix: Documentationcheck auth before trying to own a file (:issue:`1157`)
|
||||||
|
|
||||||
|
|
||||||
|
Documentation
|
||||||
|
+++++++++++++
|
||||||
|
|
||||||
|
- fix: Fix Slowloris broken link. (:issue:`1142`)
|
||||||
|
- Tweak markup in faq.rst
|
||||||
|
|
||||||
|
Testing
|
||||||
|
+++++++
|
||||||
|
|
||||||
|
- fix: gaiohttp test (:issue:`1164`)
|
||||||
|
|
||||||
|
|
||||||
19.4.1 / 2015/11/25
|
19.4.1 / 2015/11/25
|
||||||
===================
|
===================
|
||||||
|
|
||||||
|
|||||||
@ -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 = (19, 4, 1)
|
version_info = (19, 4, 2)
|
||||||
__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