comparison docs/xml/nginx/changes.xml @ 581:326634fb9d47 release-0.3.12

nginx-0.3.12-RELEASE import *) Security: if nginx was built with the ngx_http_realip_module and the "satisfy_any on" directive was used, then access and authorization directives did not work. The ngx_http_realip_module was not built and is not built by default. *) Change: the "$time_gmt" variable name was changed to "$time_local". *) Change: the "proxy_header_buffer_size" and "fastcgi_header_buffer_size" directives was renamed to the "proxy_buffer_size" and "fastcgi_buffer_size" directives. *) Feature: the ngx_http_memcached_module. *) Feature: the "proxy_buffering" directive. *) Bugfix: the changes in accept mutex handling when the "rtsig" method was used; the bug had appeared in 0.3.0. *) Bugfix: if the client sent the "Transfer-Encoding: chunked" header line, then nginx returns the 411 error. *) Bugfix: if the "auth_basic" directive was inherited from the http level, then the realm in the "WWW-Authenticate" header line was without the "Basic realm" text. *) Bugfix: if the "combined" format was explicitly specified in the "access_log" directive, then the empty lines was written to the log; the bug had appeared in 0.3.8. *) Bugfix: nginx did not run on the sparc platform under any OS except Solaris. *) Bugfix: now it is not necessary to place space between the quoted string and closing bracket in the "if" directive.
author Igor Sysoev <igor@sysoev.ru>
date Sat, 26 Nov 2005 10:11:11 +0000
parents 4c5c2c55975c
children 4e296b7d25bf
comparison
equal deleted inserted replaced
580:8393757dc220 581:326634fb9d47
7 7
8 <title lang="ru">Изменения в nginx</title> 8 <title lang="ru">Изменения в nginx</title>
9 <title lang="en">nginx changelog</title> 9 <title lang="en">nginx changelog</title>
10 10
11 11
12 <changes ver="0.3.12" date="26.11.2005">
13
14 <change type="security">
15 <para lang="ru">
16 если nginx был собран с модулем ngx_http_realip_module, то при использовании
17 директивы "satisfy_any on" директивы доступа и аутентификации не работали.
18 Модуль ngx_http_realip_module не собирался и не собирается по умолчанию.
19 </para>
20 <para lang="en">
21 if nginx was built with the ngx_http_realip_module and the "satisfy_any on"
22 directive was used, then access and authorization directives did not work.
23 The ngx_http_realip_module was not built and is not built by default.
24 </para>
25 </change>
26
27 <change type="change">
28 <para lang="ru">
29 имя переменной "$time_gmt" изменено на "$time_local".
30 </para>
31 <para lang="en">
32 the "$time_gmt" variable name was changed to "$time_local".
33 </para>
34 </change>
35
36 <change type="change">
37 <para lang="ru">
38 директивы proxy_header_buffer_size и fastcgi_header_buffer_size
39 переименованы соответственно в proxy_buffer_size и fastcgi_buffer_size.
40 </para>
41 <para lang="en">
42 the "proxy_header_buffer_size" and "fastcgi_header_buffer_size" directives
43 was renamed to the "proxy_buffer_size" and "fastcgi_buffer_size" directives.
44 </para>
45 </change>
46
47 <change type="feature">
48 <para lang="ru">
49 модуль ngx_http_memcached_module.
50 </para>
51 <para lang="en">
52 the ngx_http_memcached_module.
53 </para>
54 </change>
55
56 <change type="feature">
57 <para lang="ru">
58 директива proxy_buffering.
59 </para>
60 <para lang="en">
61 the "proxy_buffering" directive.
62 </para>
63 </change>
64
65 <change type="bugfix">
66 <para lang="ru">
67 изменение в работе с accept mutex при использовании метода rtsig;
68 ошибка появилась в 0.3.0.
69 </para>
70 <para lang="en">
71 the changes in accept mutex handling when the "rtsig" method was used;
72 bug appeared in 0.3.0.
73 </para>
74 </change>
75
76 <change type="bugfix">
77 <para lang="ru">
78 если клиент передал строку "Transfer-Encoding: chunked" в заголоовке
79 запроса, то nginx теперь выдаёт ошибку 411.
80 </para>
81 <para lang="en">
82 if the client sent the "Transfer-Encoding: chunked" header line, then
83 nginx returns the 411 error.
84 </para>
85 </change>
86
87 <change type="bugfix">
88 <para lang="ru">
89 при наследовании директивы auth_basic с уровня http в строке
90 "WWW-Authenticate" заголовка ответа выводился realm без текста "Basic realm".
91 </para>
92 <para lang="en">
93 if the "auth_basic" directive was inherited from the http level,
94 then the realm in the "WWW-Authenticate" header line was without
95 the "Basic realm" text.
96 </para>
97 </change>
98
99 <change type="bugfix">
100 <para lang="ru">
101 если в директиве access_log был явно указан формат combined, то в лог
102 записывались пустые строки;
103 ошибка появилась в 0.3.8.
104 </para>
105 <para lang="en">
106 if the "combined" format was explicitly specified in the "access_log" directive,
107 then the empty lines was written to the log;
108 bug appeared in 0.3.8.
109 </para>
110 </change>
111
112 <change type="bugfix">
113 <para lang="ru">
114 nginx не работал на платформе sparc под любыми OS, кроме Solaris.
115 </para>
116 <para lang="en">
117 nginx did not run on the sparc platform under any OS except Solaris.
118 </para>
119 </change>
120
121 <change type="bugfix">
122 <para lang="ru">
123 в директиве if теперь не нужно разделять пробелом строку в кавычках и
124 закрывающую скобку.
125 </para>
126 <para lang="en">
127 now it is not necessary to place space between the quoted string and closing
128 bracket in the "if" directive.
129 </para>
130 </change>
131
132 </changes>
133
134
12 <changes ver="0.3.11" date="15.11.2005"> 135 <changes ver="0.3.11" date="15.11.2005">
13 136
14 <change type="bugfix"> 137 <change type="bugfix">
15 <para lang="ru"> 138 <para lang="ru">
16 nginx не передавал при проксировании тело запроса и строки заголовка клиента; 139 nginx не передавал при проксировании тело запроса и строки заголовка клиента;
17 ошибка появилась в 0.3.10. 140 ошибка появилась в 0.3.10.
18 </para> 141 </para>
19 <para lang="en"> 142 <para lang="en">
20 nginx did not pass while proxying the client request headers and body; 143 nginx did not pass the client request headers and body while proxying;
21 bug appeared in 0.3.10. 144 bug appeared in 0.3.10.
22 </para> 145 </para>
23 </change> 146 </change>
24 147
25 </changes> 148 </changes>