diff options
author | nginx <nginx@nginx.org> | 2013-04-02 12:44:13 +0000 |
---|---|---|
committer | Jon Kolb <jon@b0g.us> | 2013-04-02 12:44:13 +0000 |
commit | 3f85d9c48a5764419dcfd4a8903167ba6180c1aa (patch) | |
tree | bea3d4fd9ead91cb7ecda912b83d860895a21557 /src/http/modules/perl/nginx.pm | |
parent | 8c07e8f9375b3892e6b180d5b8e21a90bd2589bc (diff) | |
download | nginx-1.2.8.tar.gz |
Changes with nginx 1.2.8 02 Apr 2013v1.2.8
*) Bugfix: new sessions were not always stored if the "ssl_session_cache
shared" directive was used and there was no free space in shared
memory.
Thanks to Piotr Sikora.
*) Bugfix: responses might hang if subrequests were used and a DNS error
happened during subrequest processing.
Thanks to Lanshun Zhou.
*) Bugfix: in the ngx_http_mp4_module.
Thanks to Gernot Vormayr.
*) Bugfix: in backend usage accounting.
Diffstat (limited to 'src/http/modules/perl/nginx.pm')
-rw-r--r-- | src/http/modules/perl/nginx.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/perl/nginx.pm b/src/http/modules/perl/nginx.pm index 5c7a4c3fc..27a6f55a4 100644 --- a/src/http/modules/perl/nginx.pm +++ b/src/http/modules/perl/nginx.pm @@ -50,7 +50,7 @@ our @EXPORT = qw( HTTP_INSUFFICIENT_STORAGE ); -our $VERSION = '1.2.7'; +our $VERSION = '1.2.8'; require XSLoader; XSLoader::load('nginx', $VERSION); |