From 46231b2394eea1c2f57bb4ddf0c78a966fa5cad7 Mon Sep 17 00:00:00 2001 From: Hakase Date: Wed, 4 Jul 2018 02:36:11 +0900 Subject: [PATCH] Version bump - v1.15.2 --- .hgtags | 1 + docs/xml/nginx/changes.xml | 67 ++++++++++++++++++++++++++++++++++++++ src/core/nginx.h | 4 +-- 3 files changed, 70 insertions(+), 2 deletions(-) diff --git a/.hgtags b/.hgtags index 1b26568..d6477c0 100644 --- a/.hgtags +++ b/.hgtags @@ -426,3 +426,4 @@ fb1212c7eca4c5328fe17d6cd95b010c67336aac release-1.13.9 64179f242cb55fc206bca59de9bfdc4cf5ebcec7 release-1.13.11 051e5fa03b92b8a564f6b12debd483d267391e82 release-1.13.12 990b3e885636d763b97ed02d0d2cfc161a4e0c09 release-1.15.0 +4189160cb946bb38d0bc0a452b5eb4cdd8979fb5 release-1.15.1 diff --git a/docs/xml/nginx/changes.xml b/docs/xml/nginx/changes.xml index 6bbff2c..6d4c5d9 100644 --- a/docs/xml/nginx/changes.xml +++ b/docs/xml/nginx/changes.xml @@ -5,6 +5,73 @@ + + + + +директива random в блоке upstream. + + +the "random" directive inside the "upstream" block. + + + + + +улучшена производительность при использовании директив hash и ip_hash +совместно с директивой zone. + + +improved performance when using the "hash" and "ip_hash" directives +with the "zone" directive. + + + + + +параметр reuseport директивы listen +теперь использует SO_REUSEPORT_LB на FreeBSD 12. + + +the "reuseport" parameter of the "listen" directive +now uses SO_REUSEPORT_LB on FreeBSD 12. + + + + + +HTTP/2 server push не работал, если SSL терминировался прокси-сервером +перед nginx'ом. + + +HTTP/2 server push did not work if SSL was terminated by a proxy server +in front of nginx. + + + + + +директива tcp_nopush всегда использовалась для соединений к бэкендам. + + +the "tcp_nopush" directive was always used on backend connections. + + + + + +при отправке сохранённого на диск тела запроса на gRPC-бэкенд +могли возникать ошибки. + + +sending a disk-buffered request body to a gRPC backend +might fail. + + + + + + diff --git a/src/core/nginx.h b/src/core/nginx.h index 6cfb517..f837674 100644 --- a/src/core/nginx.h +++ b/src/core/nginx.h @@ -9,8 +9,8 @@ #define _NGINX_H_INCLUDED_ -#define nginx_version 1015001 -#define NGINX_VERSION "1.15.1" +#define nginx_version 1015002 +#define NGINX_VERSION "1.15.2" #define NGINX_VER "nginx/" NGINX_VERSION " by Hakase" #define NGINX_SERVER_FULL NGINX_SERVER "/" NGINX_VERSION #define NGINX_ORIG "nginx/" NGINX_VERSION