diff options
author | Maxim Dounin <mdounin@mdounin.ru> | 2012-03-05 15:19:49 +0000 |
---|---|---|
committer | Maxim Dounin <mdounin@mdounin.ru> | 2012-03-05 15:19:49 +0000 |
commit | 072a2aa26a5d171adb95387d4faf10839498c665 (patch) | |
tree | 793d64e8fb99aae536cda0e598df677ba5cc3f38 | |
parent | fc03bdde05ef82c3e215a0a0d41a1e88419996df (diff) | |
download | nginx-release-1.0.13.tar.gz nginx-release-1.0.13.zip |
nginx-1.0.13-RELEASErelease-1.0.13
-rw-r--r-- | docs/xml/nginx/changes.xml | 127 |
1 files changed, 127 insertions, 0 deletions
diff --git a/docs/xml/nginx/changes.xml b/docs/xml/nginx/changes.xml index 50205ce60..b299b1a67 100644 --- a/docs/xml/nginx/changes.xml +++ b/docs/xml/nginx/changes.xml @@ -9,6 +9,133 @@ <title lang="en">nginx changelog</title> +<changes ver="1.0.13" date="05.03.2012"> + +<change type="feature"> +<para lang="ru"> +директивы return и error_page теперь могут использоваться для возврата +перенаправлений с кодом 307. +</para> +<para lang="en"> +the "return" and "error_page" directives can now be used to return 307 +redirections. +</para> +</change> + +<change type="bugfix"> +<para lang="ru"> +в рабочем процессе мог произойти segmentation fault, +если использовалась директива resolver +и на глобальном уровне не была задана директива error_log.<br/> +Спасибо Роману Арутюняну. +</para> +<para lang="en"> +a segmentation fault might occur in a worker process +if the "resolver" directive was used +and there was no "error_log" directive specified at global level.<br/> +Thanks to Roman Arutyunyan. +</para> +</change> + +<change type="bugfix"> +<para lang="ru"> +утечек памяти.<br/> +Спасибо Lanshun Zhou. +</para> +<para lang="en"> +memory leaks.<br/> +Thanks to Lanshun Zhou. +</para> +</change> + +<change type="bugfix"> +<para lang="ru"> +nginx мог некорректно сообщать об ошибке "upstream prematurely closed +connection" вместо "upstream sent too big header".<br/> +Спасибо Feibo Li. +</para> +<para lang="en"> +nginx might log incorrect error "upstream prematurely closed connection" +instead of correct "upstream sent too big header" one.<br/> +Thanks to Feibo Li. +</para> +</change> + +<change type="bugfix"> +<para lang="ru"> +при использовании ZFS размер кэша на диске мог считаться некорректно; +ошибка появилась в 1.0.1. +</para> +<para lang="en"> +on ZFS filesystem disk cache size might be calculated incorrectly; +the bug had appeared in 1.0.1. +</para> +</change> + +<change type="bugfix"> +<para lang="ru"> +количество внутренних перенаправлений в именованные location'ы +не ограничивалось. +</para> +<para lang="en"> +the number of internal redirects to named locations was not limited. +</para> +</change> + +<change type="bugfix"> +<para lang="ru"> +при использовании директивы proxy_store с SSI-подзапросами +временные файлы могли не удаляться. +</para> +<para lang="en"> +temporary files might be not removed +if the "proxy_store" directive was used with SSI includes. +</para> +</change> + +<change type="bugfix"> +<para lang="ru"> +в некоторых случаях некэшируемые переменные (такие, как $args) +возвращали старое пустое закэшированное значение. +</para> +<para lang="en"> +in some cases non-cacheable variables (such as the $args variable) +returned old empty cached value. +</para> +</change> + +<change type="bugfix"> +<para lang="ru"> +директивы proxy_redirect могли наследоваться некорректно. +</para> +<para lang="en"> +the "proxy_redirect" directives might be inherited incorrectly. +</para> +</change> + +<change type="bugfix"> +<para lang="ru"> +nginx не собирался с модулем ngx_http_perl_module, +если использовался параметр --with-openssl. +</para> +<para lang="en"> +nginx could not be built with the ngx_http_perl_module +if the --with-openssl option was used. +</para> +</change> + +<change type="bugfix"> +<para lang="ru"> +nginx не собирался компилятором icc 12.1. +</para> +<para lang="en"> +nginx could not be built by the icc 12.1 compiler. +</para> +</change> + +</changes> + + <changes ver="1.0.12" date="06.02.2012"> <change type="feature"> |