From ea19562b98479ae46cbd88f94fda8f0bec5560ff46daa2f698d1862bb651ccdc Mon Sep 17 00:00:00 2001 From: Marcus Rueckert Date: Thu, 12 Oct 2017 15:43:26 +0000 Subject: [PATCH] - update to 1.13.6 - Bugfix: switching to the next upstream server in the stream module did not work when using the "ssl_preread" directive. - Bugfix: in the ngx_http_v2_module. Thanks to Piotr Sikora. - Bugfix: nginx did not support dates after the year 2038 on 32-bit platforms with 64-bit time_t. - Bugfix: in handling of dates prior to the year 1970 and after the year 10000. - Bugfix: in the stream module timeouts waiting for UDP datagrams from upstream servers were not logged or logged at the "info" level instead of "error". - Bugfix: when using HTTP/2 nginx might return the 400 response without logging the reason. - Bugfix: in processing of corrupted cache files. - Bugfix: cache control headers were ignored when caching errors intercepted by error_page. - Bugfix: when using HTTP/2 client request body might be corrupted. - Bugfix: in handling of client addresses when using unix domain sockets. - Bugfix: nginx hogged CPU when using the "hash ... consistent" directive in the upstream block if large weights were used and all or most of the servers were unavailable. OBS-URL: https://build.opensuse.org/package/show/server:http/nginx?expand=0&rev=95 --- nginx-1.13.5.tar.gz | 3 --- nginx-1.13.5.tar.gz.asc | 10 ---------- nginx-1.13.6.tar.gz | 3 +++ nginx-1.13.6.tar.gz.asc | 10 ++++++++++ nginx.changes | 27 +++++++++++++++++++++++++++ nginx.spec | 2 +- 6 files changed, 41 insertions(+), 14 deletions(-) delete mode 100644 nginx-1.13.5.tar.gz delete mode 100644 nginx-1.13.5.tar.gz.asc create mode 100644 nginx-1.13.6.tar.gz create mode 100644 nginx-1.13.6.tar.gz.asc diff --git a/nginx-1.13.5.tar.gz b/nginx-1.13.5.tar.gz deleted file mode 100644 index f45e29a..0000000 --- a/nginx-1.13.5.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0e75b94429b3f745377aeba3aff97da77bf2b03fcb9ff15b3bad9b038db29f2e -size 988821 diff --git a/nginx-1.13.5.tar.gz.asc b/nginx-1.13.5.tar.gz.asc deleted file mode 100644 index 523268f..0000000 --- a/nginx-1.13.5.tar.gz.asc +++ /dev/null @@ -1,10 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQEcBAABAgAGBQJZrsNEAAoJEFIKmZOhwFL4I2UH/01ZDIEOJPAL+r5O8xkvOkyA -N8cu334iqaEBsujtYPWw1SnvEot0tW+vLf2Bto/boPnyB6DinnCKCNjmiLEHzLGq -5+q/ujn48eVBhvsb1RviSjSMLmw+75uk1eN1txdFeinbP6BLUW3vVNEcx8SITPpU -HPraDNKfEOKRPn389TWKO3yfkGuAeu56ZSboxtpkvRDHDryZdbNELFxovgf6MEwt -K08jLbgTUTwZQIBfteqE5JrZos/KJBxsalE5jW5la+I6iK6+Wsb3prKp1l79ayIf -6/albhnkLlecasx5i0G6P7k+fUOJ6ldWvcJ38z7jtUTOTOiBKBH4NW8LX9F25xA= -=H4wZ ------END PGP SIGNATURE----- diff --git a/nginx-1.13.6.tar.gz b/nginx-1.13.6.tar.gz new file mode 100644 index 0000000..68c6800 --- /dev/null +++ b/nginx-1.13.6.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8512fc6f986a20af293b61f33b0e72f64a72ea5b1acbcc790c4c4e2d6f63f8f8 +size 989760 diff --git a/nginx-1.13.6.tar.gz.asc b/nginx-1.13.6.tar.gz.asc new file mode 100644 index 0000000..6391f7d --- /dev/null +++ b/nginx-1.13.6.tar.gz.asc @@ -0,0 +1,10 @@ +-----BEGIN PGP SIGNATURE----- + +iQEcBAABAgAGBQJZ3Oa4AAoJEFIKmZOhwFL4mvgH/RQfaLKxkZEWc19dnH3SCexc +l9tcrYD1LfiRtypExDKjRP4AvMBhuNyulpOGdj8DDJmUQ/RPOCCQJGpEPKyePOIV +TKJnUCFvieRdfTX5d5QEiDEiySd1UKgdee+1YWe7qr4lTY/fHGyOyolm2iX4Xnah +Ov2L9+WdeLO4LarYRLoUVSplXzhG6PQLK3lcb7c3coDAYetHK/AmU/I7IggDjJif +pVDk3lqCpCiZd8HDDdwxoWNj4KgFtX0bVrd6lkbAgl+QTZzmlZ6OplQO/dEkGogI +SWPCe0JMQoE4t/pqgJ+Mop53M3izLDu/L91iaZpLoLcY75OL+8KDc1w36ngd8bE= +=pJtw +-----END PGP SIGNATURE----- diff --git a/nginx.changes b/nginx.changes index 78d24d5..1e8b7ac 100644 --- a/nginx.changes +++ b/nginx.changes @@ -1,3 +1,30 @@ +------------------------------------------------------------------- +Thu Oct 12 12:54:28 UTC 2017 - mrueckert@suse.de + +- update to 1.13.6 + - Bugfix: switching to the next upstream server in the stream + module did not work when using the "ssl_preread" directive. + - Bugfix: in the ngx_http_v2_module. Thanks to Piotr Sikora. + - Bugfix: nginx did not support dates after the year 2038 on + 32-bit platforms with 64-bit time_t. + - Bugfix: in handling of dates prior to the year 1970 and after + the year 10000. + - Bugfix: in the stream module timeouts waiting for UDP datagrams + from upstream servers were not logged or logged at the "info" + level instead of "error". + - Bugfix: when using HTTP/2 nginx might return the 400 response + without logging the reason. + - Bugfix: in processing of corrupted cache files. + - Bugfix: cache control headers were ignored when caching errors + intercepted by error_page. + - Bugfix: when using HTTP/2 client request body might be + corrupted. + - Bugfix: in handling of client addresses when using unix domain + sockets. + - Bugfix: nginx hogged CPU when using the "hash ... consistent" + directive in the upstream block if large weights were used and + all or most of the servers were unavailable. + ------------------------------------------------------------------- Fri Oct 6 13:33:54 UTC 2017 - mrueckert@suse.de diff --git a/nginx.spec b/nginx.spec index fee3f05..d04192a 100644 --- a/nginx.spec +++ b/nginx.spec @@ -69,7 +69,7 @@ %define ngx_doc_dir %{_datadir}/doc/packages/%{name} # Name: nginx -Version: 1.13.5 +Version: 1.13.6 Release: 0 %define ngx_fancyindex_version 0.4.1 %define ngx_fancyindex_module_path ngx-fancyindex-%{ngx_fancyindex_version}