comparison docs/xml/nginx/changes.xml @ 483:621229427cba release-0.1.16

nginx-0.1.16-RELEASE import *) Bugfix: if the response were transferred by chunks, then on the HEAD request the final chunk was issued. *) Bugfix: the "Connection: keep-alive" header were issued, even if the keepalive_timeout directive forbade the keep-alive use. *) Bugfix: the errors in the ngx_http_fastcgi_module caused the segmentation faults. *) Bugfix: the compressed response encrypted by SSL may not transferred complete. *) Bugfix: the TCP-specific TCP_NODELAY, TCP_NOPSUH, and TCP_CORK options, are not used for the unix domain sockets. *) Feature: the rewrite directive supports the arguments rewriting. *) Bugfix: the response code 400 was returned for the POST request with the "Content-Length: 0" header; the bug had appeared in 0.1.14.
author Igor Sysoev <igor@sysoev.ru>
date Tue, 25 Jan 2005 12:27:35 +0000
parents fd661d14a7fa
children 4ebe09b07e30
comparison
equal deleted inserted replaced
482:49f5aef41157 483:621229427cba
2 <!DOCTYPE change_log SYSTEM "../../dtd/changes.dtd" > 2 <!DOCTYPE change_log SYSTEM "../../dtd/changes.dtd" >
3 3
4 4
5 <change_log link="/nginx/changes.html" path="/nginx/" root=".." 5 <change_log link="/nginx/changes.html" path="/nginx/" root=".."
6 title="nginx"> 6 title="nginx">
7
8 <title lang="ru">Изменения в nginx</title>
9 <title lang="en">nginx changelog</title>
10
11
12 <changes ver="0.1.16" date="25.01.2005">
13
14 <change type="bugfix">
15 <para lang="ru">
16 если ответ передавался chunk'ами, то при запросе HEAD выдавался
17 завершающий chunk.
18 </para>
19 <para lang="en">
20 if the response were transferred by chunks, then on the HEAD request
21 the final chunk was issued.
22 </para>
23 </change>
24
25 <change type="bugfix">
26 <para lang="ru">
27 заголовок "Connection: keep-alive" выдавался, даже если директива
28 keepalive_timeout запрещала использование keep-alive.
29 </para>
30 <para lang="en">
31 the "Connection: keep-alive" header were issued, even if the
32 keepalive_timeout derective forbade the keep-alive use.
33 </para>
34 </change>
35
36 <change type="bugfix">
37 <para lang="ru">
38 ошибки в модуле ngx_http_fastcgi_module вызывали segmentation fault.
39 </para>
40 <para lang="en">
41 the errors in the ngx_http_fastcgi_module caused the segmentation faults.
42 </para>
43 </change>
44
45 <change type="bugfix">
46 <para lang="ru">
47 при использовании SSL сжатый ответ мог передаваться не до конца.
48 </para>
49 <para lang="en">
50 the compressed response encrypted by SSL may not transferred complete.
51 </para>
52 </change>
53
54 <change type="bugfix">
55 <para lang="ru">
56 опции TCP_NODELAY, TCP_NOPSUH и TCP_CORK, специфичные для TCP сокетов,
57 не используются для unix domain сокетов.
58 </para>
59 <para lang="en">
60 the TCP-specific TCP_NODELAY, TCP_NOPSUH, and TCP_CORK options,
61 are not used for the unix domain sockets.
62 </para>
63 </change>
64
65 <change type="feature">
66 <para lang="ru">
67 директива rewrite поддерживает перезаписывание аргументов.
68 </para>
69 <para lang="en">
70 the rewrite directive supports the agruments rewriting.
71 </para>
72 </change>
73
74 <change type="bugfix">
75 <para lang="ru">
76 на запрос POST с заголовком "Content-Length: 0" возвращался ответ 400;
77 ошибка появилась в 0.1.14.
78 </para>
79 <para lang="en">
80 the response code 400 was returend for the POST request with the
81 "Content-Length: 0" header;
82 bug appeared in 0.1.14.
83 </para>
84 </change>
85
86 </changes>
7 87
8 88
9 <changes ver="0.1.15" date="19.01.2005"> 89 <changes ver="0.1.15" date="19.01.2005">
10 90
11 <change type="bugfix"> 91 <change type="bugfix">