From 919c95c5009fb3275cce15702427db124a6fa9fdd236042c99b79b5bea8c4a42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=98=D0=BB=D1=8C=D1=8F=20=D0=98=D0=BD=D0=B4=D0=B8=D0=B3?= =?UTF-8?q?=D0=BE?= Date: Wed, 1 Sep 2021 07:19:48 +0000 Subject: [PATCH] Accepting request 915418 from home:13ilya:branches:server:http - Updated to 1.21.2 * https://nginx.org/en/CHANGES * Now nginx rejects HTTP/1.0 requests with the "Transfer-Encoding" header line. * Export ciphers are no longer supported. * Added OpenSSL 3.0 compatibility. * Added the "Auth-SSL-Protocol" and "Auth-SSL-Cipher" header lines are now passed to the mail proxy authentication server. * Added request body filters API now permits buffering of the data being processed. * Fixed backend SSL connections in the stream module might hang after an SSL handshake. * Fixed the security level, which is available in OpenSSL 1.1.0 or newer, did not affect loading of the server certificates when set with "@SECLEVEL=N" in the "ssl_ciphers" directive. * Fixed SSL connections with gRPC backends might hang if select, poll, or /dev/poll methods were used. * Fixed when using HTTP/2 client request body was always written to disk if the "Content-Length" header line was not present in the request. OBS-URL: https://build.opensuse.org/request/show/915418 OBS-URL: https://build.opensuse.org/package/show/server:http/nginx?expand=0&rev=212 --- nginx-1.21.1.tar.gz | 3 --- nginx-1.21.1.tar.gz.asc | 10 ---------- nginx-1.21.2.tar.gz | 3 +++ nginx-1.21.2.tar.gz.asc | 10 ++++++++++ nginx.changes | 20 ++++++++++++++++++++ nginx.spec | 2 +- 6 files changed, 34 insertions(+), 14 deletions(-) delete mode 100644 nginx-1.21.1.tar.gz delete mode 100644 nginx-1.21.1.tar.gz.asc create mode 100644 nginx-1.21.2.tar.gz create mode 100644 nginx-1.21.2.tar.gz.asc diff --git a/nginx-1.21.1.tar.gz b/nginx-1.21.1.tar.gz deleted file mode 100644 index b8db54b..0000000 --- a/nginx-1.21.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:68ba0311342115163a0354cad34f90c05a7e8bf689dc498abf07899eda155560 -size 1064925 diff --git a/nginx-1.21.1.tar.gz.asc b/nginx-1.21.1.tar.gz.asc deleted file mode 100644 index db6db0c..0000000 --- a/nginx-1.21.1.tar.gz.asc +++ /dev/null @@ -1,10 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQEcBAABCAAGBQJg5HAgAAoJEFIKmZOhwFL4LbEIALGdEvTgGsBvLWLLOH2vd6z1 -LhsKzV6enYVWmjBKqAyUt1nr5lz1hPuJd+iOHtMxuKUnDkSZ7i/Y38GwtSml8q00 -5fMOsUSsh9apQoB6Hg44bn5UxXHY0t5XeV8KlktIkWQOBnjI5Wk7oowQqL+ixzSH -xpwsooreYSE1MgiYFJEFxd5Q+ZuC0zKNHkgkz8l2AQYODgyWYh9+iCfdUMGBw8YW -r9bkKf6swcZQYa1hwaSbhgrNxTPqB/8HAmxHdG0MHoBOu2PtGwqdiyxhX2rohdv5 -Iv8DKvWBhQOOfyCntxAYl0uvRy24VelKJNbRnlU9CI/YplxJshVk2wxfbN2+yYQ= -=UhVc ------END PGP SIGNATURE----- diff --git a/nginx-1.21.2.tar.gz b/nginx-1.21.2.tar.gz new file mode 100644 index 0000000..3ec9592 --- /dev/null +++ b/nginx-1.21.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31771c560e46d73650568e8193cb94d981081f83dd62d1ba43af1a1e0ba25185 +size 1066678 diff --git a/nginx-1.21.2.tar.gz.asc b/nginx-1.21.2.tar.gz.asc new file mode 100644 index 0000000..d9384b8 --- /dev/null +++ b/nginx-1.21.2.tar.gz.asc @@ -0,0 +1,10 @@ +-----BEGIN PGP SIGNATURE----- + +iQEcBAABCAAGBQJhLksvAAoJEFIKmZOhwFL4mL0IALUESdn/lfiUBZreah8E2HAP +OmydhMqNiruNzynQ5pgFL5GGeDqnBPZoAJpySz06pQpAF2ynDdfU2XT73Dq1BC0D +CIe6uRabzNwnBNGlsa35sHzdbF9MxvUQV/BpcGmtUU1OFsOnICtpQ95BvMARaFug +MElPEpbR9nIrV+X8FCjuByM2k5RMboniEzechEEVG53ODHQVO9uA+Qz9kz+CY+d7 +KJ8yEdSjx37/FLdLKVybQUF6H06mrKsNoXx/3IvA6PUcHFOQieCbteFOqurhEINU +51e8DlKnhuGj/XAXImoDudJiUsBUfmO5baBgxTrbg7qfWRsCQBnCgD1rVgF6xGQ= +=b5kW +-----END PGP SIGNATURE----- diff --git a/nginx.changes b/nginx.changes index 82e86aa..0aa8123 100644 --- a/nginx.changes +++ b/nginx.changes @@ -1,3 +1,23 @@ +------------------------------------------------------------------- +Wed Sep 1 07:09:54 UTC 2021 - Илья Индиго + +- Updated to 1.21.2 + * https://nginx.org/en/CHANGES + * Now nginx rejects HTTP/1.0 requests with the "Transfer-Encoding" header line. + * Export ciphers are no longer supported. + * Added OpenSSL 3.0 compatibility. + * Added the "Auth-SSL-Protocol" and "Auth-SSL-Cipher" header lines + are now passed to the mail proxy authentication server. + * Added request body filters API now permits buffering of the data being processed. + * Fixed backend SSL connections in the stream module might hang after an SSL handshake. + * Fixed the security level, which is available in OpenSSL 1.1.0 or newer, + did not affect loading of the server certificates when set + with "@SECLEVEL=N" in the "ssl_ciphers" directive. + * Fixed SSL connections with gRPC backends might hang if select, poll, + or /dev/poll methods were used. + * Fixed when using HTTP/2 client request body was always written to + disk if the "Content-Length" header line was not present in the request. + ------------------------------------------------------------------- Wed Jul 7 18:53:17 UTC 2021 - Илья Индиго diff --git a/nginx.spec b/nginx.spec index fba4194..509c51e 100644 --- a/nginx.spec +++ b/nginx.spec @@ -23,7 +23,7 @@ %bcond_with ngx_google_perftools # Name: nginx -Version: 1.21.1 +Version: 1.21.2 Release: 0 Summary: A HTTP server and IMAP/POP3 proxy server License: BSD-2-Clause