diff options
author | Maxim Dounin <mdounin@mdounin.ru> | 2018-03-20 18:58:30 +0300 |
---|---|---|
committer | Maxim Dounin <mdounin@mdounin.ru> | 2018-03-20 18:58:30 +0300 |
commit | 383c328cea133041513c3577e15a409434c77702 (patch) | |
tree | 9904ed300151a636de05d2c463b1fbaa55b25ff6 | |
parent | e232421266416ed841272847ea307e935852230d (diff) | |
download | nginx-383c328cea133041513c3577e15a409434c77702.tar.gz nginx-383c328cea133041513c3577e15a409434c77702.zip |
nginx-1.13.10-RELEASErelease-1.13.10
-rw-r--r-- | docs/xml/nginx/changes.xml | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/docs/xml/nginx/changes.xml b/docs/xml/nginx/changes.xml index a58e16465..7cb1fcf06 100644 --- a/docs/xml/nginx/changes.xml +++ b/docs/xml/nginx/changes.xml @@ -5,6 +5,90 @@ <change_log title="nginx"> +<changes ver="1.13.10" date="2018-03-20"> + +<change type="feature"> +<para lang="ru"> +теперь параметр set в SSI-директиве include +позволяет сохранять в переменную любые ответы; +максимальный размер ответа задаётся директивой subrequest_output_buffer_size. +</para> +<para lang="en"> +the "set" parameter of the "include" SSI directive now allows +writing arbitrary responses to a variable; +the "subrequest_output_buffer_size" directive defines maximum response size. +</para> +</change> + +<change type="feature"> +<para lang="ru"> +теперь nginx использует вызов clock_gettime(CLOCK_MONOTONIC), если он доступен, +что позволяет избежать некорректного срабатывания таймаутов +при изменениях системного времени. +</para> +<para lang="en"> +now nginx uses clock_gettime(CLOCK_MONOTONIC) if available, +to avoid timeouts being incorrectly triggered +on system time changes. +</para> +</change> + +<change type="feature"> +<para lang="ru"> +параметр "escape=none" директивы log_format.<br/> +Спасибо Johannes Baiter и Calin Don. +</para> +<para lang="en"> +the "escape=none" parameter of the "log_format" directive.<br/> +Thanks to Johannes Baiter and Calin Don. +</para> +</change> + +<change type="feature"> +<para lang="ru"> +переменная $ssl_preread_alpn_protocols +в модуле ngx_stream_ssl_preread_module. +</para> +<para lang="en"> +the $ssl_preread_alpn_protocols variable +in the ngx_stream_ssl_preread_module. +</para> +</change> + +<change type="feature"> +<para lang="ru"> +модуль ngx_http_grpc_module. +</para> +<para lang="en"> +the ngx_http_grpc_module. +</para> +</change> + +<change type="bugfix"> +<para lang="ru"> +в обработке ошибок выделения памяти в директиве geo. +</para> +<para lang="en"> +in memory allocation error handling in the "geo" directive. +</para> +</change> + +<change type="bugfix"> +<para lang="ru"> +при использовании переменных в директиве auth_basic_user_file +в лог мог выводиться символ '\0'.<br/> +Спасибо Вадиму Филимонову. +</para> +<para lang="en"> +when using variables in the "auth_basic_user_file" directive +a null character might appear in logs.<br/> +Thanks to Vadim Filimonov. +</para> +</change> + +</changes> + + <changes ver="1.13.9" date="2018-02-20"> <change type="feature"> |