comparison docs/xml/nginx/changes.xml @ 7182:20ca4bcff108 release-1.13.8

nginx-1.13.8-RELEASE
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 26 Dec 2017 19:01:11 +0300
parents 47cca243d0ed
children fb1212c7eca4
comparison
equal deleted inserted replaced
7181:c391f2e33000 7182:20ca4bcff108
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.13.8" date="2017-12-26">
9
10 <change type="feature">
11 <para lang="ru">
12 теперь при использовании параметра transparent директив proxy_bind,
13 fastcgi_bind, memcached_bind, scgi_bind и uwsgi_bind
14 nginx автоматически сохраняет capability CAP_NET_RAW в рабочих процессах.
15 </para>
16 <para lang="en">
17 now nginx automatically preserves the CAP_NET_RAW capability in worker processes
18 when using the "transparent" parameter of the "proxy_bind",
19 "fastcgi_bind", "memcached_bind", "scgi_bind", and "uwsgi_bind" directives.
20 </para>
21 </change>
22
23 <change type="feature">
24 <para lang="ru">
25 улучшения в определении размера строки кэша процессора.<br/>
26 Спасибо Debayan Ghosh.
27 </para>
28 <para lang="en">
29 improved CPU cache line size detection.<br/>
30 Thanks to Debayan Ghosh.
31 </para>
32 </change>
33
34 <change type="feature">
35 <para lang="ru">
36 новые директивы в скриптах подсветки синтаксиса для vim.<br/>
37 Спасибо Геннадию Махомеду.
38 </para>
39 <para lang="en">
40 new directives in vim syntax highlighting scripts.<br/>
41 Thanks to Gena Makhomed.
42 </para>
43 </change>
44
45 <change type="bugfix">
46 <para lang="ru">
47 процедура обновления исполняемого файла не работала,
48 если после завершения родительского процесса
49 новым родительским процессом nginx'а становился процесс с PID, отличным от 1.
50 </para>
51 <para lang="en">
52 binary upgrade refused to work
53 if nginx was re-parented to a process with PID different from 1
54 after its parent process has finished.
55 </para>
56 </change>
57
58 <change type="bugfix">
59 <para lang="ru">
60 модуль ngx_http_autoindex_module неправильно обрабатывал запросы с телом.
61 </para>
62 <para lang="en">
63 the ngx_http_autoindex_module incorrectly handled requests with bodies.
64 </para>
65 </change>
66
67 <change type="bugfix">
68 <para lang="ru">
69 в директиве proxy_limit_rate при использовании с директивой keepalive.
70 </para>
71 <para lang="en">
72 in the "proxy_limit_rate" directive when used with the "keepalive" directive.
73 </para>
74 </change>
75
76 <change type="bugfix">
77 <para lang="ru">
78 при использовании "proxy_buffering off" часть ответа могла буферизироваться,
79 если клиентское соединение использовало SSL.<br/>
80 Спасибо Patryk Lesiewicz.
81 </para>
82 <para lang="en">
83 some parts of a response might be buffered when using "proxy_buffering off"
84 if the client connection used SSL.<br/>
85 Thanks to Patryk Lesiewicz.
86 </para>
87 </change>
88
89 <change type="bugfix">
90 <para lang="ru">
91 в директиве proxy_cache_background_update.
92 </para>
93 <para lang="en">
94 in the "proxy_cache_background_update" directive.
95 </para>
96 </change>
97
98 <change type="bugfix">
99 <para lang="ru">
100 переменную вида "${name}" с именем в фигурных скобках
101 нельзя было использовать в начале параметра
102 не заключив весь параметр в кавычки.
103 </para>
104 <para lang="en">
105 it was not possible to start a parameter
106 with a variable in the "${name}" form with the name in curly brackets
107 without enclosing the parameter into single or double quotes.
108 </para>
109 </change>
110
111 </changes>
6 112
7 113
8 <changes ver="1.13.7" date="2017-11-21"> 114 <changes ver="1.13.7" date="2017-11-21">
9 115
10 <change type="bugfix"> 116 <change type="bugfix">