From 95f07d8f33ad16d436c8581451fedf8138331ac4 Mon Sep 17 00:00:00 2001 From: Hakase Date: Tue, 5 Jun 2018 23:49:28 +0900 Subject: [PATCH] Version bump - v1.15.1 --- .hgtags | 2 +- docs/xml/nginx/changes.xml | 125 +++++++++++++++++++++++++++++++++++-- src/core/nginx.h | 4 +- 3 files changed, 124 insertions(+), 7 deletions(-) diff --git a/.hgtags b/.hgtags index 66a7d8f..1b26568 100644 --- a/.hgtags +++ b/.hgtags @@ -425,4 +425,4 @@ fb1212c7eca4c5328fe17d6cd95b010c67336aac release-1.13.9 31c929e16910c38492581ef474e72fa67c28f124 release-1.13.10 64179f242cb55fc206bca59de9bfdc4cf5ebcec7 release-1.13.11 051e5fa03b92b8a564f6b12debd483d267391e82 release-1.13.12 -588054867fef65d3dc38df1ffefcade02a88f140 release-1.14.0 +990b3e885636d763b97ed02d0d2cfc161a4e0c09 release-1.15.0 diff --git a/docs/xml/nginx/changes.xml b/docs/xml/nginx/changes.xml index ae52829..6bbff2c 100644 --- a/docs/xml/nginx/changes.xml +++ b/docs/xml/nginx/changes.xml @@ -5,14 +5,131 @@ - + - + -Стабильная ветка 1.14.x. +директива "ssl" теперь считается устаревшей; +вместо неё следует использовать параметр ssl директивы listen. -1.14.x stable branch. +the "ssl" directive is deprecated; +the "ssl" parameter of the "listen" directive should be used instead. + + + + + +теперь при использовании директивы listen с параметром ssl +nginx определяет отсутствие SSL-сертификатов при тестировании конфигурации. + + +now nginx detects missing SSL certificates during configuration testing +when using the "ssl" parameter of the "listen" directive. + + + + + +теперь модуль stream умеет обрабатывать +несколько входящих UDP-пакетов от клиента в рамках одной сессии. + + +now the stream module can handle +multiple incoming UDP datagrams from a client within a single session. + + + + + +в директиве proxy_cache_valid +можно было указать некорректный код ответа. + + +it was possible to specify an incorrect response code +in the "proxy_cache_valid" directive. + + + + + +nginx не собирался gcc 8.1. + + +nginx could not be built by gcc 8.1. + + + + + +логгирование в syslog останавливалось при изменении локального IP-адреса. + + +logging to syslog stopped on local IP address changes. + + + + + +nginx не собирался компилятором clang, если был установлен CUDA SDK; +ошибка появилась в 1.13.8. + + +nginx could not be built by clang with CUDA SDK installed; +the bug had appeared in 1.13.8. + + + + + +при использовании unix domain listen-сокетов на FreeBSD +в процессе обновления исполняемого файла +в логе могли появляться сообщения "getsockopt(TCP_FASTOPEN) ... failed". + + +"getsockopt(TCP_FASTOPEN) ... failed" messages might appear in logs +during binary upgrade +when using unix domain listen sockets on FreeBSD. + + + + + +nginx не собирался на Fedora 28 Linux. + + +nginx could not be built on Fedora 28 Linux. + + + + + +при использовании директивы limit_req +заданная скорость обработки запросов могла не соблюдаться. + + +request processing rate might exceed configured rate +when using the "limit_req" directive. + + + + + +в обработке адресов клиентов при использовании unix domain listen-сокетов +для работы с датаграммами на Linux. + + +in handling of client addresses when using unix domain listen sockets +to work with datagrams on Linux. + + + + + +в обработке ошибок выделения памяти. + + +in memory allocation error handling. diff --git a/src/core/nginx.h b/src/core/nginx.h index 81c1767..6cfb517 100644 --- a/src/core/nginx.h +++ b/src/core/nginx.h @@ -9,8 +9,8 @@ #define _NGINX_H_INCLUDED_ -#define nginx_version 1015000 -#define NGINX_VERSION "1.15.0" +#define nginx_version 1015001 +#define NGINX_VERSION "1.15.1" #define NGINX_VER "nginx/" NGINX_VERSION " by Hakase" #define NGINX_SERVER_FULL NGINX_SERVER "/" NGINX_VERSION #define NGINX_ORIG "nginx/" NGINX_VERSION