- changes from 1.13.9

- Feature: HTTP/2 server push support; the "http2_push" and
    "http2_push_preload" directives.
  - Bugfix: "header already sent" alerts might appear in logs when
    using cache; the bug had appeared in 1.9.13.
  - Bugfix: a segmentation fault might occur in a worker process if
    the "ssl_verify_client" directive was used and no SSL
    certificate was specified in a virtual server.
  - Bugfix: in the ngx_http_v2_module.
  - Bugfix: in the ngx_http_dav_module.
- updates from 1.13.8
  - Feature: now nginx automatically preserves the CAP_NET_RAW
    capability in worker processes when using the "transparent"
    parameter of the "proxy_bind", "fastcgi_bind",
    "memcached_bind", "scgi_bind", and "uwsgi_bind" directives.
  - Feature: improved CPU cache line size detection. Thanks to
    Debayan Ghosh.
  - Feature: new directives in vim syntax highlighting scripts.
    Thanks to Gena Makhomed.
  - Bugfix: binary upgrade refused to work if nginx was re-parented
    to a process with PID different from 1 after its parent process
    has finished.
  - Bugfix: the ngx_http_autoindex_module incorrectly handled
    requests with bodies.
  - Bugfix: in the "proxy_limit_rate" directive when used with the
    "keepalive" directive.
  - Bugfix: some parts of a response might be buffered when using
    "proxy_buffering off" if the client connection used SSL.
    Thanks to Patryk Lesiewicz.
  - Bugfix: in the "proxy_cache_background_update" directive.
  - Bugfix: it was not possible to start a parameter with a
    variable in the "${name}" form with the name in curly brackets
    without enclosing the parameter into single or double quotes.

OBS-URL: https://build.opensuse.org/package/show/server:http/nginx?expand=0&rev=102
This commit is contained in:
Marcus Rückert 2018-02-21 13:26:47 +00:00 committed by Git OBS Bridge
parent 477548018f
commit 597fc4b85d
6 changed files with 52 additions and 14 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:beb732bc7da80948c43fd0bf94940a21a21b1c1ddfba0bd99a4b88e026220f5c
size 990836

View File

@ -1,10 +0,0 @@
-----BEGIN PGP SIGNATURE-----
iQEcBAABAgAGBQJaFEK1AAoJEFIKmZOhwFL4HLgH/0W7+C8DqX03b6+tItKbSagv
SviexjqubQXKgbjbUOAoDsTvoWhxNiYkMNjTNedaVacAucyCpxwgxhXBKq6NkJ5y
/CdQ/qGQ1E0gH9gwD3OP+2NB7L0kw1kDejvIO6P6cmlv2Yb5rCTJcQzaNlIBWzFe
HlujVpNvuCqYHBjzwGw5RXvT4yc/vJB5H0EFyJER/zTqB7Co/BRp3sscRXSS3v8w
U+RuQHz/NI7zpQNNu4qwZWUXZ07PR2+aHjVH2Li30AptpU45FXBFXOR6aa3Zb1JG
t3ZXETLnIzdQ9Yky0MXxJoIQM97J2QDQG4YtROkDn8f2A5aakZweL+1NCa+UVuA=
=qrcB
-----END PGP SIGNATURE-----

3
nginx-1.13.9.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5faea18857516fe68d30be39c3032bd22ed9cf85e1a6fdf32e3721d96ff7fa42
size 994802

10
nginx-1.13.9.tar.gz.asc Normal file
View File

@ -0,0 +1,10 @@
-----BEGIN PGP SIGNATURE-----
iQEcBAABAgAGBQJajCw/AAoJEFIKmZOhwFL44XoH/jRx2DtVS1DQUWqhke0ntVUD
KC13k63u4OGcf32qk/T7BeUb+09nuQ/K3Z43yN4qxprPby2RimEnOxrzh3bBaPNn
9m3jLEN84ARq0oWws95L0ITMxWI3KCDjZ16KrRD6HzZ3pNA+/+uwqilkl0+si7iK
sXbE8FNL+4w+fMz0NBG+l/x1wGdL8vbodbKji3BNYxleSn5t2AwTpYv6xEUEl8aT
2EnzUC0JAwpiJIgC7ExNX7sN5mG/hha2qfXIVIynEf2bmHN6GT3K4ywSZaQohbJr
QOp7LrGTDFIGi3SduqgNUMsWb6KXdY0niIrMlL9cE1BHO17fAIsbIWFUVDRVoEE=
=coXe
-----END PGP SIGNATURE-----

View File

@ -1,3 +1,40 @@
-------------------------------------------------------------------
Wed Feb 21 13:23:44 UTC 2018 - mrueckert@suse.de
- changes from 1.13.9
- Feature: HTTP/2 server push support; the "http2_push" and
"http2_push_preload" directives.
- Bugfix: "header already sent" alerts might appear in logs when
using cache; the bug had appeared in 1.9.13.
- Bugfix: a segmentation fault might occur in a worker process if
the "ssl_verify_client" directive was used and no SSL
certificate was specified in a virtual server.
- Bugfix: in the ngx_http_v2_module.
- Bugfix: in the ngx_http_dav_module.
- updates from 1.13.8
- Feature: now nginx automatically preserves the CAP_NET_RAW
capability in worker processes when using the "transparent"
parameter of the "proxy_bind", "fastcgi_bind",
"memcached_bind", "scgi_bind", and "uwsgi_bind" directives.
- Feature: improved CPU cache line size detection. Thanks to
Debayan Ghosh.
- Feature: new directives in vim syntax highlighting scripts.
Thanks to Gena Makhomed.
- Bugfix: binary upgrade refused to work if nginx was re-parented
to a process with PID different from 1 after its parent process
has finished.
- Bugfix: the ngx_http_autoindex_module incorrectly handled
requests with bodies.
- Bugfix: in the "proxy_limit_rate" directive when used with the
"keepalive" directive.
- Bugfix: some parts of a response might be buffered when using
"proxy_buffering off" if the client connection used SSL.
Thanks to Patryk Lesiewicz.
- Bugfix: in the "proxy_cache_background_update" directive.
- Bugfix: it was not possible to start a parameter with a
variable in the "${name}" form with the name in curly brackets
without enclosing the parameter into single or double quotes.
-------------------------------------------------------------------
Wed Feb 7 15:43:27 UTC 2018 - achernikov@suse.com

View File

@ -18,6 +18,7 @@
%bcond_with cpp_test
%bcond_with google_perftools
%if 0%{?is_opensuse}
%bcond_without extra_modules
%else
@ -69,7 +70,7 @@
%define ngx_doc_dir %{_datadir}/doc/packages/%{name}
#
Name: nginx
Version: 1.13.7
Version: 1.13.9
Release: 0
%define ngx_fancyindex_version 0.4.1
%define ngx_fancyindex_module_path ngx-fancyindex-%{ngx_fancyindex_version}