nokogiri 1.6.7.rc4-x86-mingw32 → 1.6.7-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of nokogiri might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.ja.rdoc +32 -25
- data/CHANGELOG.rdoc +30 -23
- data/lib/nokogiri/1.9/nokogiri.so +0 -0
- data/lib/nokogiri/2.0/nokogiri.so +0 -0
- data/lib/nokogiri/2.1/nokogiri.so +0 -0
- data/lib/nokogiri/2.2/nokogiri.so +0 -0
- data/lib/nokogiri/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 213d422105557f5028eb23901bf96989fdbc4502
|
4
|
+
data.tar.gz: 3a319026664ccff67a037c986999249eac0fd84d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af6836885e462b8371cf049842049f1dd14960a05819aa8b072b73e93d0dc4e01f20087cf922a54ab923331eacb3580af6e42ed2ff0b68f0c3df173bcb81fae5
|
7
|
+
data.tar.gz: ce546dcc20961b98894433184a2b4f672ca697fa5325eba7955f90158096cd2d32147ecb03993d95ce6c518ce4e382a3d2e5b66d2a8c394f31d7b95d36900a2d
|
data/CHANGELOG.ja.rdoc
CHANGED
@@ -1,49 +1,56 @@
|
|
1
|
-
=== 1.6.7
|
1
|
+
=== 1.6.7 / 2015年11月29日
|
2
2
|
|
3
|
-
====
|
3
|
+
==== 註
|
4
4
|
|
5
|
-
This version
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
* CVE-2015-7941_2
|
10
|
-
* CVE-2015-7942
|
11
|
-
* CVE-2015-7942-2
|
12
|
-
* CVE-2015-8035
|
13
|
-
* CVE-2015-7995
|
14
|
-
* unclosed comment uninitialized access issue (does not have a CVE assigned)
|
5
|
+
This version supports native builds on Windows using the RubyInstaller
|
6
|
+
DevKit. It also supports Ruby 2.2.x on Windows, as well as making
|
7
|
+
several other improvements to the installation process on various
|
8
|
+
platforms.
|
15
9
|
|
10
|
+
This version also includes the security patches already applied in
|
11
|
+
v1.6.6.3 and v1.6.6.4 to the vendored libxml2 and libxslt source.
|
16
12
|
See #1374 and #1376 for details.
|
17
13
|
|
18
|
-
====
|
14
|
+
==== 機能
|
19
15
|
|
16
|
+
* Cross-built gems now have a proper ruby version requirement. (#1266)
|
17
|
+
* Ruby 2.2.x is supported on Windows.
|
18
|
+
* Native build is supported on Windows.
|
20
19
|
* [MRI] libxml2 and libxslt `config.guess` files brought up to date. (#1326) (Thanks, @hernan-erasmo!)
|
21
20
|
* [JRuby] fix error in validating files with jruby (#1355, #1361) (Thanks, @twalpole!)
|
22
21
|
* [MRI, OSX] Patch to handle nonstandard location of `iconv.h`. (#1206, #1210, #1218, #1345) (Thanks, @neonichu!)
|
23
22
|
|
24
|
-
====
|
23
|
+
==== バグ修正
|
25
24
|
|
26
25
|
* [JRuby] reset the namespace cache when replacing the document's innerHtml (#1265) (Thanks, @mkristian!)
|
26
|
+
* [JRuby] Document#parse should support IO objects that respond to #read. (#1124) (Thanks, Jake Byman!)
|
27
|
+
* [MRI] Duplicate-id errors when setting the `id` attribute on HTML documents are now silenced. (#1262)
|
28
|
+
* [JRuby] SAX parser cuts texts in peices when quare brackets exist. (#1261)
|
29
|
+
* [JRuby] Namespaced attributes aren't removed by remove_attribute. (#1299)
|
27
30
|
|
28
31
|
|
29
|
-
=== 1.6.
|
32
|
+
=== 1.6.6.4 / 2015年11月19日
|
30
33
|
|
31
|
-
|
34
|
+
This version pulls in an upstream patch to the vendored libxml2 to address:
|
32
35
|
|
36
|
+
* unclosed comment uninitialized access issue (#1376)
|
33
37
|
|
34
|
-
|
38
|
+
This issue does not have a CVE assigned to it as this time.
|
35
39
|
|
36
|
-
* Cross-built gems now have a proper ruby version requirement. (#1266)
|
37
|
-
* Ruby 2.2.x is supported on Windows.
|
38
|
-
* Native build is supported on Windows.
|
39
40
|
|
41
|
+
=== 1.6.6.3 / 2015年11月16日
|
40
42
|
|
41
|
-
|
43
|
+
This version pulls in several upstream patches to the vendored libxml2 and libxslt to address:
|
42
44
|
|
43
|
-
*
|
44
|
-
*
|
45
|
-
*
|
46
|
-
*
|
45
|
+
* CVE-2015-1819
|
46
|
+
* CVE-2015-7941_1
|
47
|
+
* CVE-2015-7941_2
|
48
|
+
* CVE-2015-7942
|
49
|
+
* CVE-2015-7942-2
|
50
|
+
* CVE-2015-8035
|
51
|
+
* CVE-2015-7995
|
52
|
+
|
53
|
+
See #1374 for details.
|
47
54
|
|
48
55
|
|
49
56
|
=== 1.6.6.2 / 2015年01月23日
|
data/CHANGELOG.rdoc
CHANGED
@@ -1,22 +1,21 @@
|
|
1
|
-
=== 1.6.7
|
1
|
+
=== 1.6.7 / 2015-11-29
|
2
2
|
|
3
|
-
====
|
3
|
+
==== Notes
|
4
4
|
|
5
|
-
This version
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
* CVE-2015-7941_2
|
10
|
-
* CVE-2015-7942
|
11
|
-
* CVE-2015-7942-2
|
12
|
-
* CVE-2015-8035
|
13
|
-
* CVE-2015-7995
|
14
|
-
* unclosed comment uninitialized access issue (does not have a CVE assigned)
|
5
|
+
This version supports native builds on Windows using the RubyInstaller
|
6
|
+
DevKit. It also supports Ruby 2.2.x on Windows, as well as making
|
7
|
+
several other improvements to the installation process on various
|
8
|
+
platforms.
|
15
9
|
|
10
|
+
This version also includes the security patches already applied in
|
11
|
+
v1.6.6.3 and v1.6.6.4 to the vendored libxml2 and libxslt source.
|
16
12
|
See #1374 and #1376 for details.
|
17
13
|
|
18
14
|
==== Features
|
19
15
|
|
16
|
+
* Cross-built gems now have a proper ruby version requirement. (#1266)
|
17
|
+
* Ruby 2.2.x is supported on Windows.
|
18
|
+
* Native build is supported on Windows.
|
20
19
|
* [MRI] libxml2 and libxslt `config.guess` files brought up to date. (#1326) (Thanks, @hernan-erasmo!)
|
21
20
|
* [JRuby] fix error in validating files with jruby (#1355, #1361) (Thanks, @twalpole!)
|
22
21
|
* [MRI, OSX] Patch to handle nonstandard location of `iconv.h`. (#1206, #1210, #1218, #1345) (Thanks, @neonichu!)
|
@@ -24,26 +23,34 @@ See #1374 and #1376 for details.
|
|
24
23
|
==== Bug Fixes
|
25
24
|
|
26
25
|
* [JRuby] reset the namespace cache when replacing the document's innerHtml (#1265) (Thanks, @mkristian!)
|
26
|
+
* [JRuby] Document#parse should support IO objects that respond to #read. (#1124) (Thanks, Jake Byman!)
|
27
|
+
* [MRI] Duplicate-id errors when setting the `id` attribute on HTML documents are now silenced. (#1262)
|
28
|
+
* [JRuby] SAX parser cuts texts in peices when quare brackets exist. (#1261)
|
29
|
+
* [JRuby] Namespaced attributes aren't removed by remove_attribute. (#1299)
|
27
30
|
|
28
31
|
|
29
|
-
=== 1.6.
|
32
|
+
=== 1.6.6.4 / 2015-11-19
|
30
33
|
|
31
|
-
|
34
|
+
This version pulls in an upstream patch to the vendored libxml2 to address:
|
32
35
|
|
36
|
+
* unclosed comment uninitialized access issue (#1376)
|
33
37
|
|
34
|
-
|
38
|
+
This issue does not have a CVE assigned to it as this time.
|
35
39
|
|
36
|
-
* Cross-built gems now have a proper ruby version requirement. (#1266)
|
37
|
-
* Ruby 2.2.x is supported on Windows.
|
38
|
-
* Native build is supported on Windows.
|
39
40
|
|
41
|
+
=== 1.6.6.3 / 2015-11-16
|
40
42
|
|
41
|
-
|
43
|
+
This version pulls in several upstream patches to the vendored libxml2 and libxslt to address:
|
42
44
|
|
43
|
-
*
|
44
|
-
*
|
45
|
-
*
|
46
|
-
*
|
45
|
+
* CVE-2015-1819
|
46
|
+
* CVE-2015-7941_1
|
47
|
+
* CVE-2015-7941_2
|
48
|
+
* CVE-2015-7942
|
49
|
+
* CVE-2015-7942-2
|
50
|
+
* CVE-2015-8035
|
51
|
+
* CVE-2015-7995
|
52
|
+
|
53
|
+
See #1374 for details.
|
47
54
|
|
48
55
|
|
49
56
|
=== 1.6.6.2 / 2015-01-23
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/lib/nokogiri/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nokogiri
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.7
|
4
|
+
version: 1.6.7
|
5
5
|
platform: x86-mingw32
|
6
6
|
authors:
|
7
7
|
- Aaron Patterson
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date: 2015-11-
|
15
|
+
date: 2015-11-30 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: mini_portile2
|
@@ -549,9 +549,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
549
549
|
version: '2.3'
|
550
550
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
551
551
|
requirements:
|
552
|
-
- - "
|
552
|
+
- - ">="
|
553
553
|
- !ruby/object:Gem::Version
|
554
|
-
version:
|
554
|
+
version: '0'
|
555
555
|
requirements: []
|
556
556
|
rubyforge_project:
|
557
557
|
rubygems_version: 2.4.8
|