comparison docs/xml/nginx/changes.xml @ 6739:5253015a339a release-1.11.5

nginx-1.11.5-RELEASE
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 11 Oct 2016 18:03:00 +0300
parents 953512ca02c6
children 49d7dbd25a27
comparison
equal deleted inserted replaced
6738:e78705391830 6739:5253015a339a
1 <?xml version="1.0" ?> 1 <?xml version="1.0" ?>
2 <!DOCTYPE change_log SYSTEM "../../dtd/changes.dtd" > 2 <!DOCTYPE change_log SYSTEM "../../dtd/changes.dtd" >
3 3
4 4
5 <change_log title="nginx"> 5 <change_log title="nginx">
6
7
8 <changes ver="1.11.5" date="11.10.2016">
9
10 <change type="change">
11 <para lang="ru">
12 параметр configure --with-ipv6 упразднён,
13 поддержка IPv6 теперь собирается автоматически.
14 </para>
15 <para lang="en">
16 the --with-ipv6 configure option was removed,
17 now IPv6 support is configured automatically.
18 </para>
19 </change>
20
21 <change type="change">
22 <para lang="ru">
23 теперь, если в блоке upstream не оказалось доступных серверов,
24 nginx не сбрасывает статистику ошибок всех серверов, как делал ранее,
25 а ожидает истечения fail_timeout.
26 </para>
27 <para lang="en">
28 now if there are no available servers in an upstream,
29 nginx will not reset number of failures of all servers as it previously did,
30 but will wait for fail_timeout to expire.
31 </para>
32 </change>
33
34 <change type="feature">
35 <para lang="ru">
36 модуль ngx_stream_ssl_preread_module.
37 </para>
38 <para lang="en">
39 the ngx_stream_ssl_preread_module.
40 </para>
41 </change>
42
43 <change type="feature">
44 <para lang="ru">
45 директива server в блоке upstream поддерживает параметр max_conns.
46 </para>
47 <para lang="en">
48 the "server" directive in the "upstream" context supports
49 the "max_conns" parameter.
50 </para>
51 </change>
52
53 <change type="feature">
54 <para lang="ru">
55 параметр configure --with-compat.
56 </para>
57 <para lang="en">
58 the --with-compat configure option.
59 </para>
60 </change>
61
62 <change type="feature">
63 <para lang="ru">
64 параметры manager_files, manager_threshold и manager_sleep
65 директив proxy_cache_path, fastcgi_cache_path, scgi_cache_path и
66 uwsgi_cache_path.
67 </para>
68 <para lang="en">
69 "manager_files", "manager_threshold", and "manager_sleep" parameters
70 of the "proxy_cache_path", "fastcgi_cache_path", "scgi_cache_path", and
71 "uwsgi_cache_path" directives.
72 </para>
73 </change>
74
75 <change type="bugfix">
76 <para lang="ru">
77 при сборке perl-модуля не использовались флаги,
78 заданные с помощью параметра configure --with-ld-opt.
79 </para>
80 <para lang="en">
81 flags passed by the --with-ld-opt configure option
82 were not used while building perl module.
83 </para>
84 </change>
85
86 <change type="bugfix">
87 <para lang="ru">
88 в директиве add_after_body при использовании совместно с директивой sub_filter.
89 </para>
90 <para lang="en">
91 in the "add_after_body" directive when used with the "sub_filter" directive.
92 </para>
93 </change>
94
95 <change type="bugfix">
96 <para lang="ru">
97 в переменной $realip_remote_addr.
98 </para>
99 <para lang="en">
100 in the $realip_remote_addr variable.
101 </para>
102 </change>
103
104 <change type="bugfix">
105 <para lang="ru">
106 директивы dav_access, proxy_store_access, fastcgi_store_access,
107 scgi_store_access и uwsgi_store_access
108 игнорировали права, заданные для пользователя.
109 </para>
110 <para lang="en">
111 the "dav_access", "proxy_store_access", "fastcgi_store_access",
112 "scgi_store_access", and "uwsgi_store_access" directives
113 ignored permissions specified for user.
114 </para>
115 </change>
116
117 <change type="bugfix">
118 <para lang="ru">
119 unix domain listen-сокеты могли не наследоваться
120 при обновлении исполняемого файла на Linux.
121 </para>
122 <para lang="en">
123 unix domain listen sockets might not be inherited
124 during binary upgrade on Linux.
125 </para>
126 </change>
127
128 <change type="bugfix">
129 <para lang="ru">
130 nginx возвращал ошибку 400 на запросы
131 с символом "-" в HTTP-методе.
132 </para>
133 <para lang="en">
134 nginx returned the 400 response on requests
135 with the "-" character in the HTTP method.
136 </para>
137 </change>
138
139 </changes>
6 140
7 141
8 <changes ver="1.11.4" date="13.09.2016"> 142 <changes ver="1.11.4" date="13.09.2016">
9 143
10 <change type="feature"> 144 <change type="feature">