comparison docs/xml/nginx/changes.xml @ 6614:4d3b3a13a8cf release-1.11.2

nginx-1.11.2-RELEASE
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 05 Jul 2016 18:56:14 +0300
parents cb783d9cc197
children b83a067949a3
comparison
equal deleted inserted replaced
6613:4a32b3ac54c6 6614:4d3b3a13a8cf
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.2" date="05.07.2016">
9
10 <change type="change">
11 <para lang="ru">
12 теперь nginx всегда использует внутренние реализации MD5 и SHA1;
13 параметры configure --with-md5 и --with-sha1 упразднены.
14 </para>
15 <para lang="en">
16 now nginx always uses internal MD5 and SHA1 implementations;
17 the --with-md5 and --with-sha1 configure options were canceled.
18 </para>
19 </change>
20
21 <change type="feature">
22 <para lang="ru">
23 поддержка переменных в модуле stream.
24 </para>
25 <para lang="en">
26 variables support in the stream module.
27 </para>
28 </change>
29
30 <change type="feature">
31 <para lang="ru">
32 модуль ngx_stream_map_module.
33 </para>
34 <para lang="en">
35 the ngx_stream_map_module.
36 </para>
37 </change>
38
39 <change type="feature">
40 <para lang="ru">
41 модуль ngx_stream_return_module.
42 </para>
43 <para lang="en">
44 the ngx_stream_return_module.
45 </para>
46 </change>
47
48 <change type="feature">
49 <para lang="ru">
50 в директивах proxy_bind, fastcgi_bind, memcached_bind, scgi_bind и uwsgi_bind
51 теперь можно указывать порт.
52 </para>
53 <para lang="en">
54 a port can be specified in the "proxy_bind", "fastcgi_bind",
55 "memcached_bind", "scgi_bind", and "uwsgi_bind" directives.
56 </para>
57 </change>
58
59 <change type="feature">
60 <para lang="ru">
61 теперь nginx использует опцию сокета IP_BIND_ADDRESS_NO_PORT, если она доступна.
62 </para>
63 <para lang="en">
64 now nginx uses the IP_BIND_ADDRESS_NO_PORT socket option when available.
65 </para>
66 </change>
67
68 <change type="bugfix">
69 <para lang="ru">
70 при использовании HTTP/2 и директивы proxy_request_buffering
71 в рабочем процессе мог произойти segmentation fault.
72 </para>
73 <para lang="en">
74 a segmentation fault might occur in a worker process
75 when using HTTP/2 and the "proxy_request_buffering" directive.
76 </para>
77 </change>
78
79 <change type="bugfix">
80 <para lang="ru">
81 при использовании HTTP/2
82 к запросам, передаваемым на бэкенд,
83 всегда добавлялась строка заголовка "Content-Length",
84 даже если у запроса не было тела.
85 </para>
86 <para lang="en">
87 the "Content-Length" request header line
88 was always added to requests passed to backends,
89 including requests without body,
90 when using HTTP/2.
91 </para>
92 </change>
93
94 <change type="bugfix">
95 <para lang="ru">
96 при использовании HTTP/2
97 в логах могли появляться сообщения "http request count is zero".
98 </para>
99 <para lang="en">
100 "http request count is zero" alerts might appear in logs
101 when using HTTP/2.
102 </para>
103 </change>
104
105 <change type="bugfix">
106 <para lang="ru">
107 при использовании директивы sub_filter
108 могло буферизироваться больше данных, чем это необходимо;
109 проблема появилась в 1.9.4.
110 </para>
111 <para lang="en">
112 unnecessary buffering might occur
113 when using the "sub_filter" directive;
114 the issue had appeared in 1.9.4.
115 </para>
116 </change>
117
118 </changes>
6 119
7 120
8 <changes ver="1.11.1" date="31.05.2016"> 121 <changes ver="1.11.1" date="31.05.2016">
9 122
10 <change type="security"> 123 <change type="security">