nginxtra 1.4.3.9 → 1.4.4.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 81cc27b496477f82ca37b4d7750379effd5e0574
4
- data.tar.gz: c41eaef205f94780ec52649c4b7acee8ce2954b4
3
+ metadata.gz: e1593ffeccbe522ab4d9a3f44489adaa158cbe9d
4
+ data.tar.gz: eb15917c3201fb99073d79e2073ad522b2b74679
5
5
  SHA512:
6
- metadata.gz: 60bce9431469687065e84c9feedeedd760cddf6e69182be80da015c5bc0a37c21b090cf99e82143470d3c21f4d589f7ab80e1035a6fb7a25ccdc3d437b76b6b0
7
- data.tar.gz: e1a00910874d0d142d2677ff397c1065c4d5887ca002f54846fcb49f98c4778d33a43b6d1439fa93171e7a7f96298f6b8d15ea0acc219702e7d9f5c93a0da735
6
+ metadata.gz: 67043314e52762e016640ae83c238017d51ba48cfc6cf53e517ea6c413cce9de17edfa0bcbe4ff366913dafc9f751c47bb02c1effbb35ab04c1b3907ec351d77
7
+ data.tar.gz: 5100c75a0437abdfa52628b49c944c3d450bf3d7db572817843fccea9b3ea85ac696655c92a0a1b4c52b279b4033ea78f9726c8bdc24a17ee2f0b309d9d27a2c
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
  require "rubygems"
3
- gem "nginxtra", "= 1.4.3.9"
3
+ gem "nginxtra", "= 1.4.4.9"
4
4
  gem "thor", "~> 0.16"
5
5
  require "nginxtra"
6
6
  Nginxtra::CLI.start
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
  require "rubygems"
3
- gem "nginxtra", "= 1.4.3.9"
3
+ gem "nginxtra", "= 1.4.4.9"
4
4
  gem "thor", "~> 0.16"
5
5
  require "nginxtra"
6
6
  Nginxtra::Rails::CLI.start
@@ -6,7 +6,7 @@ module Nginxtra
6
6
  end
7
7
 
8
8
  def to_s
9
- "1.4.3.9"
9
+ "1.4.4.9"
10
10
  end
11
11
  end
12
12
  end
@@ -1,4 +1,12 @@
1
1
 
2
+ Changes with nginx 1.4.4 19 Nov 2013
3
+
4
+ *) Security: a character following an unescaped space in a request line
5
+ was handled incorrectly (CVE-2013-4547); the bug had appeared in
6
+ 0.8.41.
7
+ Thanks to Ivan Fratric of the Google Security Team.
8
+
9
+
2
10
  Changes with nginx 1.4.3 08 Oct 2013
3
11
 
4
12
  *) Bugfix: a segmentation fault might occur in a worker process if the
@@ -1,4 +1,12 @@
1
1
 
2
+ Изменения в nginx 1.4.4 19.11.2013
3
+
4
+ *) Безопасность: символ, следующий за незакодированным пробелом в строке
5
+ запроса, обрабатывался неправильно (CVE-2013-4547); ошибка появилась
6
+ в 0.8.41.
7
+ Спасибо Ivan Fratric из Google Security Team.
8
+
9
+
2
10
  Изменения в nginx 1.4.3 08.10.2013
3
11
 
4
12
  *) Исправление: в рабочем процессе мог произойти segmentation fault,
@@ -9,8 +9,8 @@
9
9
  #define _NGINX_H_INCLUDED_
10
10
 
11
11
 
12
- #define nginx_version 1004003
13
- #define NGINX_VERSION "1.4.3"
12
+ #define nginx_version 1004004
13
+ #define NGINX_VERSION "1.4.4"
14
14
  #define NGINX_VER "nginx/" NGINX_VERSION
15
15
 
16
16
  #define NGINX_VAR "NGINX"
@@ -614,6 +614,7 @@ ngx_http_parse_request_line(ngx_http_request_t *r, ngx_buf_t *b)
614
614
  default:
615
615
  r->space_in_uri = 1;
616
616
  state = sw_check_uri;
617
+ p--;
617
618
  break;
618
619
  }
619
620
  break;
@@ -667,6 +668,7 @@ ngx_http_parse_request_line(ngx_http_request_t *r, ngx_buf_t *b)
667
668
  default:
668
669
  r->space_in_uri = 1;
669
670
  state = sw_uri;
671
+ p--;
670
672
  break;
671
673
  }
672
674
  break;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nginxtra
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.3.9
4
+ version: 1.4.4.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Virata-Stone
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-08 00:00:00.000000000 Z
11
+ date: 2013-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor