comparison docs/xml/nginx/changes.xml @ 4518:fa326e57ef4a stable-1.0 release-1.0.13

nginx-1.0.13-RELEASE
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 05 Mar 2012 15:19:49 +0000
parents bd1a95dd6dd3
children ea69e97a812b
comparison
equal deleted inserted replaced
4517:50143b8fb95f 4518:fa326e57ef4a
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 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
11
12 <changes ver="1.0.13" date="05.03.2012">
13
14 <change type="feature">
15 <para lang="ru">
16 директивы return и error_page теперь могут использоваться для возврата
17 перенаправлений с кодом 307.
18 </para>
19 <para lang="en">
20 the "return" and "error_page" directives can now be used to return 307
21 redirections.
22 </para>
23 </change>
24
25 <change type="bugfix">
26 <para lang="ru">
27 в рабочем процессе мог произойти segmentation fault,
28 если использовалась директива resolver
29 и на глобальном уровне не была задана директива error_log.<br/>
30 Спасибо Роману Арутюняну.
31 </para>
32 <para lang="en">
33 a segmentation fault might occur in a worker process
34 if the "resolver" directive was used
35 and there was no "error_log" directive specified at global level.<br/>
36 Thanks to Roman Arutyunyan.
37 </para>
38 </change>
39
40 <change type="bugfix">
41 <para lang="ru">
42 утечек памяти.<br/>
43 Спасибо Lanshun Zhou.
44 </para>
45 <para lang="en">
46 memory leaks.<br/>
47 Thanks to Lanshun Zhou.
48 </para>
49 </change>
50
51 <change type="bugfix">
52 <para lang="ru">
53 nginx мог некорректно сообщать об ошибке "upstream prematurely closed
54 connection" вместо "upstream sent too big header".<br/>
55 Спасибо Feibo Li.
56 </para>
57 <para lang="en">
58 nginx might log incorrect error "upstream prematurely closed connection"
59 instead of correct "upstream sent too big header" one.<br/>
60 Thanks to Feibo Li.
61 </para>
62 </change>
63
64 <change type="bugfix">
65 <para lang="ru">
66 при использовании ZFS размер кэша на диске мог считаться некорректно;
67 ошибка появилась в 1.0.1.
68 </para>
69 <para lang="en">
70 on ZFS filesystem disk cache size might be calculated incorrectly;
71 the bug had appeared in 1.0.1.
72 </para>
73 </change>
74
75 <change type="bugfix">
76 <para lang="ru">
77 количество внутренних перенаправлений в именованные location'ы
78 не ограничивалось.
79 </para>
80 <para lang="en">
81 the number of internal redirects to named locations was not limited.
82 </para>
83 </change>
84
85 <change type="bugfix">
86 <para lang="ru">
87 при использовании директивы proxy_store с SSI-подзапросами
88 временные файлы могли не удаляться.
89 </para>
90 <para lang="en">
91 temporary files might be not removed
92 if the "proxy_store" directive was used with SSI includes.
93 </para>
94 </change>
95
96 <change type="bugfix">
97 <para lang="ru">
98 в некоторых случаях некэшируемые переменные (такие, как $args)
99 возвращали старое пустое закэшированное значение.
100 </para>
101 <para lang="en">
102 in some cases non-cacheable variables (such as the $args variable)
103 returned old empty cached value.
104 </para>
105 </change>
106
107 <change type="bugfix">
108 <para lang="ru">
109 директивы proxy_redirect могли наследоваться некорректно.
110 </para>
111 <para lang="en">
112 the "proxy_redirect" directives might be inherited incorrectly.
113 </para>
114 </change>
115
116 <change type="bugfix">
117 <para lang="ru">
118 nginx не собирался с модулем ngx_http_perl_module,
119 если использовался параметр --with-openssl.
120 </para>
121 <para lang="en">
122 nginx could not be built with the ngx_http_perl_module
123 if the --with-openssl option was used.
124 </para>
125 </change>
126
127 <change type="bugfix">
128 <para lang="ru">
129 nginx не собирался компилятором icc 12.1.
130 </para>
131 <para lang="en">
132 nginx could not be built by the icc 12.1 compiler.
133 </para>
134 </change>
135
136 </changes>
10 137
11 138
12 <changes ver="1.0.12" date="06.02.2012"> 139 <changes ver="1.0.12" date="06.02.2012">
13 140
14 <change type="feature"> 141 <change type="feature">