comparison docs/xml/nginx/changes.xml @ 3402:4f8411591449 release-0.8.31

nginx-0.8.31-RELEASE
author Igor Sysoev <igor@sysoev.ru>
date Wed, 23 Dec 2009 15:44:31 +0000
parents 9852c5965a32
children 59dee6f7f3af
comparison
equal deleted inserted replaced
3401:9e7926763f87 3402:4f8411591449
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="0.8.31" date="23.12.2009">
13
14 <change type="feature">
15 <para lang="ru">
16 теперь директива error_page может перенаправлять ответы со статусом 301 и 302.
17 </para>
18 <para lang="en">
19 now the "error_page" directive may redirect the 301 and 302 responses.
20 </para>
21 </change>
22
23 <change type="feature">
24 <para lang="ru">
25 переменные $geoip_city_continent_code, $geoip_latitude и $geoip_longitude.<br/>
26 Спасибо Arvind Sundararajan.
27 </para>
28 <para lang="en">
29 the $geoip_city_continent_code, $geoip_latitude, and $geoip_longitude
30 variables.<br/>
31 Thanks to Arvind Sundararajan.
32 </para>
33 </change>
34
35 <change type="feature">
36 <para lang="ru">
37 модуль ngx_http_image_filter_module теперь всегда удаляет
38 EXIF и другие данные, если они занимают больше 5% в JPEG-файле.
39 </para>
40 <para lang="en">
41 now the ngx_http_image_filter_module deletes always EXIF and other
42 application specific data if the data consume more than 5% of a JPEG file.
43 </para>
44 </change>
45
46 <change type="bugfix">
47 <para lang="ru">
48 nginx закрывал соединение при запросе закэшированного
49 ответа с пустым телом.<br/>
50 Спасибо Piotr Sikora.
51 </para>
52 <para lang="en">
53 nginx closed a connection if a cached response had an empty body.<br/>
54 Thanks to Piotr Sikora.
55 </para>
56 </change>
57
58 <change type="bugfix">
59 <para lang="ru">
60 nginx мог не собираться gcc 4.x при использовании оптимизации -O2 и выше.<br/>
61 Спасибо Максиму Дунину и Денису Латыпову.
62 </para>
63 <para lang="en">
64 nginx might not be built by gcc 4.x if the -O2 or higher optimization option
65 was used.<br/>
66 Thanks to Maxim Dounin and Denis F. Latypoff.
67 </para>
68 </change>
69
70 <change type="bugfix">
71 <para lang="ru">
72 регулярные выражения в location всегда тестировались с учётом регистра;
73 ошибка появилась в 0.8.25.
74 </para>
75 <para lang="en">
76 regular expressions in location were always tested in case-sensitive mode;
77 the bug had appeared in 0.8.25.
78 </para>
79 </change>
80
81 <change type="bugfix">
82 <para lang="ru">
83 nginx кэшировал 304 ответ, если в заголовке проксируемого запроса
84 была строка "If-None-Match".<br/>
85 Спасибо Tim Dettrick и David Kostal.
86 </para>
87 <para lang="en">
88 nginx cached a 304 response if there was the "If-None-Match" header line
89 in a proxied request.<br/>
90 Thanks to Tim Dettrick and David Kostal.
91 </para>
92 </change>
93
94 <change type="bugfix">
95 <para lang="ru">
96 nginx/Windows пытался дважды удалить временный файл
97 при перезаписи уже существующего файла.
98 </para>
99 <para lang="en">
100 nginx/Windows tried to delete a temporary file twice
101 if the file should replace an already existent file.
102 </para>
103 </change>
104
105 </changes>
10 106
11 107
12 <changes ver="0.8.30" date="15.12.2009"> 108 <changes ver="0.8.30" date="15.12.2009">
13 109
14 <change type="change"> 110 <change type="change">
1298 </change> 1394 </change>
1299 1395
1300 <change type="bugfix"> 1396 <change type="bugfix">
1301 <para lang="ru"> 1397 <para lang="ru">
1302 в обработке строк "Last-Modified" и "Accept-Ranges" в заголовке ответа бэкенда; 1398 в обработке строк "Last-Modified" и "Accept-Ranges" в заголовке ответа бэкенда;
1303 ошибка появилась в 0.7.44<br/> 1399 ошибка появилась в 0.7.44.<br/>
1304 Спасибо Максиму Дунину. 1400 Спасибо Максиму Дунину.
1305 </para> 1401 </para>
1306 <para lang="en"> 1402 <para lang="en">
1307 in handling "Last-Modified" and "Accept-Ranges" backend response header lines; 1403 in handling "Last-Modified" and "Accept-Ranges" backend response header lines;
1308 the bug had appeared in 0.7.44.<br/> 1404 the bug had appeared in 0.7.44.<br/>