comparison docs/xml/nginx/changes.xml @ 4676:61b6a3438afe release-1.3.1

nginx-1.3.1-RELEASE
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 05 Jun 2012 13:47:29 +0000
parents 9ee68d629722
children 50107e2d96bb
comparison
equal deleted inserted replaced
4675:79c147bdeb6a 4676:61b6a3438afe
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.3.1" date="05.06.2012">
13
14 <change type="security">
15 <para lang="ru">
16 теперь nginx/Windows игнорирует точку в конце компонента URI
17 и не разрешает URI, содержащие последовательность ":$".<br/>
18 Спасибо Владимиру Кочеткову, Positive Research Center.
19 </para>
20 <para lang="en">
21 now nginx/Windows ignores trailing dot in URI path component, and
22 does not allow URIs with ":$" in it.<br/>
23 Thanks to Vladimir Kochetkov, Positive Research Center.
24 </para>
25 </change>
26
27 <change type="feature">
28 <para lang="ru">
29 директивы proxy_pass, fastcgi_pass, scgi_pass, uwsgi_pass и
30 директива server в блоке upstream
31 теперь поддерживают IPv6-адреса.
32 </para>
33 <para lang="en">
34 the "proxy_pass", "fastcgi_pass", "scgi_pass", "uwsgi_pass" directives, and
35 the "server" directive inside the "upstream" block,
36 now support IPv6 addresses.
37 </para>
38 </change>
39
40 <change type="feature">
41 <para lang="ru">
42 в директиве resolver теперь можно указывать порт и
43 задавать IPv6-адреса DNS-серверов.
44 </para>
45 <para lang="en">
46 the "resolver" directive now support IPv6 addresses and
47 an optional port specification.
48 </para>
49 </change>
50
51 <change type="feature">
52 <para lang="ru">
53 директива least_conn в блоке upstream.
54 </para>
55 <para lang="en">
56 the "least_conn" directive inside the "upstream" block.
57 </para>
58 </change>
59
60 <change type="feature">
61 <para lang="ru">
62 при использовании директивы ip_hash
63 теперь можно задавать веса серверов.
64 </para>
65 <para lang="en">
66 it is now possible to specify a weight for servers
67 while using the "ip_hash" directive.
68 </para>
69 </change>
70
71 <change type="bugfix">
72 <para lang="ru">
73 в рабочем процессе мог произойти segmentation fault,
74 если использовалась директива image_filter;
75 ошибка появилась в 1.3.0.
76 </para>
77 <para lang="en">
78 a segmentation fault might occur in a worker process
79 if the "image_filter" directive was used;
80 the bug had appeared in 1.3.0.
81 </para>
82 </change>
83
84 <change type="bugfix">
85 <para lang="ru">
86 nginx не собирался с модулем ngx_cpp_test_module;
87 ошибка появилась в 1.1.12.
88 </para>
89 <para lang="en">
90 nginx could not be built with ngx_cpp_test_module;
91 the bug had appeared in 1.1.12.
92 </para>
93 </change>
94
95 <change type="bugfix">
96 <para lang="ru">
97 доступ к переменным из SSI и встроенного перла мог не работать после
98 переконфигурации.<br/>
99 Спасибо Yichun Zhang.
100 </para>
101 <para lang="en">
102 access to variables from SSI and embedded perl module might not work after
103 reconfiguration.<br/>
104 Thanks to Yichun Zhang.
105 </para>
106 </change>
107
108 <change type="bugfix">
109 <para lang="ru">
110 в модуле ngx_http_xslt_filter_module.<br/>
111 Спасибо Kuramoto Eiji.
112 </para>
113 <para lang="en">
114 in the ngx_http_xslt_filter_module.<br/>
115 Thanks to Kuramoto Eiji.
116 </para>
117 </change>
118
119 <change type="bugfix">
120 <para lang="ru">
121 утечки памяти при использовании переменной $geoip_org.<br/>
122 Спасибо Денису Латыпову.
123 </para>
124 <para lang="en">
125 memory leak if $geoip_org variable was used.<br/>
126 Thanks to Denis F. Latypoff.
127 </para>
128 </change>
129
130 <change type="bugfix">
131 <para lang="ru">
132 в директивах proxy_cookie_domain и proxy_cookie_path.
133 </para>
134 <para lang="en">
135 in the "proxy_cookie_domain" and "proxy_cookie_path" directives.
136 </para>
137 </change>
138
139 </changes>
10 140
11 141
12 <changes ver="1.3.0" date="15.05.2012"> 142 <changes ver="1.3.0" date="15.05.2012">
13 143
14 <change type="feature"> 144 <change type="feature">