nokogiri 1.6.2.rc3-x86-mingw32 → 1.6.2-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9e8e335502d656a1a706a918e9e86b54e4b8748b
4
- data.tar.gz: baa9e373d52787c20920d2401e44dcf0534a8ffd
3
+ metadata.gz: 2e9a8d0a02f94430be257859db2025dd450b8f9e
4
+ data.tar.gz: ccddbf91bf5d4b62caf1596aefaf002be0c048ee
5
5
  SHA512:
6
- metadata.gz: 75e8c35de4edfbb18bdbf9ea7fce1b8bb53c51c77f9bd2f052373ad1f513400f719fa0b6cdf296f6529cc5144f3e6d0efe59713c63a18d8de166436cd84839da
7
- data.tar.gz: 75fd14c75100ad5a9cccde184cbf68a4e71e42ba2c8aec904815094ea5e7dd30ce1b72635b998e654c9760a4c2529d4b17498ac60487d1eb016543afa829a6cc
6
+ metadata.gz: 68ea9305058ad1e48b24b8c577e35642076b4d6ad31f68b095bb2ba572f614ee0b136e29ff410d474a341ce1b0933f2a6807089498bbc29e9ad44498b2057b4f
7
+ data.tar.gz: 1f5e16e874f542be09306953e47d84303ce79a6d1bd52e6fe90d44e18e87e0292c20e97ffb3ee8525b92e305a5e8bc34eddf5e073e0f2afbb8b615af2239d765
@@ -1,47 +1,57 @@
1
- === 1.6.2 / 未リリース
2
-
3
- *
4
-
5
- * Now requires libxml >= 2.6.21 (was previously >= 2.6.17).
6
-
7
- * 機能
8
-
9
- * Add cross building of fat binary gems for 64-Bit Windows (x64-mingw32)
10
- and add support for native builds on Windows. #864, #989, #1072
11
- * (MRI) iconvが Windows-31J をサポートしていない場合は CP932 のエイリアスとして扱うようにした #836
12
- * (MRI) 同梱ライブラリを静的にリンクするようになった (静的リンクをオフにするにはextconf.rbに --disable-static を渡す) #923
13
- * (MRI) CRubyのバグ #9760 に起因するライブラリパス(LIBPATH)の優先順位問題に対応した
14
- * (MRI) 同梱ライブラリのビルド後に不要になったディレクトリ群を自動的に削除するようになった (デバッグ等の目的で残すようにするにはextconf.rbに --disable-clean を渡す) #952
15
- * (MRI) FreeBSDなど、libiconvがシステム標準ディレクトリ外にある環境でlibxml2がiconvサポート付きで正しくビルドされるようになった
16
- * nthセレクタにおいてan-bを認識するようになった #886 (Magnus Bergmarkに感謝!)
17
- * :not疑似クラスが、先行セレクタがない場合や複数重ねられた場合にも対応した #887 (Magnus Bergmarkに感謝!)
18
- * (MRI) extconf.rb のオプション --use-system-libraries を追加
19
- 環境変数 NOKOGIRI_USE_SYSTEM_LIBRARIES を設定する代わりに使える
20
- * (MRI) 同梱の libxslt 1.1.28 に、 zlib を 1.2.8 に、 libiconv を 1.14 にそれぞれ更新した
21
- * Nokogiri::HTML::Document#title= 及び #meta_encoding= は、head要素がない場合でも常に、最適な場所を探しつつ要素を追加するようになった
22
- * Nokogiri::XML::DTD#html_dtd? #html5_dtd? を追加
23
- * Nokogiri::XML::Node#prepend_child を追加 #664
24
- * Nokogiri::XML::SAX::ParserContext#recovery is added. #453
25
-
26
- * バグ修正
27
-
28
- * :only-child疑似クラスが:not疑似クラスの中にある場合に正常な動作が行われるようになった #858 (Yamagishi Kazutoshiに感謝!)
29
- * 同梱のライブラリを使う場合にはextconf.rbでpkg_configを呼ばなくなった #931 (Shota Fukumoriに感謝!)
30
- * Nokogiri.parse()がRSS文書などをHTML文書として誤認する問題を修正 #932 (Yamagishi Kazutoshiに感謝!)
31
- * (MRI) ノードに対して子ノードを追加する際、ノードタイプをチェックするようにした。従来はテキストノードに別のテキストノードを追加する操作によりSEGVが発生していた。 #1092
32
- * (JRuby) XSD validation crashes in Java version. #373
33
- * (JRuby) Document already has a root node error while using Builder. #646
34
- * (JRuby) c14n tests are all passing on JRuby. #226
35
- * Parsing empty documents raise SyntaxError in strict mode. #1005
36
- * (JRuby) Make xpath faster by caching the xpath context. #741
37
- * (JRuby) XML SAX push parser leaks memory on JRuby, but not on MRI. #998
38
- * (JRUby) JRubyによるディフォルトネームスペースエイリアスの振る舞いがCRubyと同じではない。#940
39
- * (JRuby) JRubyによるネームスペースのパースと追加の振る舞いが一致していない。 #943
40
- * (JRuby) Builderで作ったドキュメントとクローンしたドキュメントではXpathの結果が違う。#1034
41
- * (JRuby) Javaの実装はネームスペースを忘れることがある。 #902
42
- * (JRuby) JRuby-Nokogiriはネームスペーススコープ内のアトリビュートを正しく認識しない。#1081
43
- * (JRuby) JRuby-Nokogiriはコメントノードの名前が違う。#1080
44
- * (JRuby) JAXPExtensionsProvider / Java 7 / Secure Processingに問題がある。 #1070
1
+ === 1.6.2 / 2014年5月12日
2
+
3
+ ==== Security
4
+
5
+ A set of security and bugfix patches have been backported from the libxml2 repository onto the version of 2.8.0 packaged with Nokogiri, including these notable security fixes:
6
+
7
+ * https://git.gnome.org/browse/libxml2/commit/?id=4629ee02ac649c27f9c0cf98ba017c6b5526070f
8
+ * CVE-2013-2877 https://git.gnome.org/browse/libxml2/commit/?id=e50ba8164eee06461c73cd8abb9b46aa0be81869
9
+ * CVE-2014-0191 https://git.gnome.org/browse/libxml2/commit/?id=9cd1c3cfbd32655d60572c0a413e017260c854df
10
+
11
+ It is recommended that you upgrade from 1.6.x to this version as soon as possible.
12
+
13
+ ==== Compatibility
14
+
15
+ Now requires libxml >= 2.6.21 (was previously >= 2.6.17).
16
+
17
+ ==== 機能
18
+
19
+ * Add cross building of fat binary gems for 64-Bit Windows (x64-mingw32)
20
+ and add support for native builds on Windows. #864, #989, #1072
21
+ * (MRI) iconvが Windows-31J をサポートしていない場合は CP932 のエイリアスとして扱うようにした #836
22
+ * (MRI) 同梱ライブラリを静的にリンクするようになった (静的リンクをオフにするにはextconf.rbに --disable-static を渡す) #923
23
+ * (MRI) CRubyのバグ #9760 に起因するライブラリパス(LIBPATH)の優先順位問題に対応した
24
+ * (MRI) 同梱ライブラリのビルド後に不要になったディレクトリ群を自動的に削除するようになった (デバッグ等の目的で残すようにするにはextconf.rbに --disable-clean を渡す) #952
25
+ * (MRI) FreeBSDなど、libiconvがシステム標準ディレクトリ外にある環境でlibxml2がiconvサポート付きで正しくビルドされるようになった
26
+ * nthセレクタにおいてan-bを認識するようになった #886 (Magnus Bergmarkに感謝!)
27
+ * :not疑似クラスが、先行セレクタがない場合や複数重ねられた場合にも対応した #887 (Magnus Bergmarkに感謝!)
28
+ * (MRI) extconf.rb のオプション --use-system-libraries を追加
29
+ 環境変数 NOKOGIRI_USE_SYSTEM_LIBRARIES を設定する代わりに使える
30
+ * (MRI) 同梱の libxslt を 1.1.28 に、 zlib を 1.2.8 に、 libiconv を 1.14 にそれぞれ更新した
31
+ * Nokogiri::HTML::Document#title= 及び #meta_encoding= は、head要素がない場合でも常に、最適な場所を探しつつ要素を追加するようになった
32
+ * Nokogiri::XML::DTD#html_dtd? #html5_dtd? を追加
33
+ * Nokogiri::XML::Node#prepend_child を追加 #664
34
+ * Nokogiri::XML::SAX::ParserContext#recovery is added. #453
35
+
36
+ ==== バグ修正
37
+
38
+ * :only-child疑似クラスが:not疑似クラスの中にある場合に正常な動作が行われるようになった #858 (Yamagishi Kazutoshiに感謝!)
39
+ * 同梱のライブラリを使う場合にはextconf.rbでpkg_configを呼ばなくなった #931 (Shota Fukumoriに感謝!)
40
+ * Nokogiri.parse()がRSS文書などをHTML文書として誤認する問題を修正 #932 (Yamagishi Kazutoshiに感謝!)
41
+ * (MRI) ノードに対して子ノードを追加する際、ノードタイプをチェックするようにした。従来はテキストノードに別のテキストノードを追加する操作によりSEGVが発生していた。 #1092
42
+ * (JRuby) XSD validation crashes in Java version. #373
43
+ * (JRuby) Document already has a root node error while using Builder. #646
44
+ * (JRuby) c14n tests are all passing on JRuby. #226
45
+ * Parsing empty documents raise SyntaxError in strict mode. #1005
46
+ * (JRuby) Make xpath faster by caching the xpath context. #741
47
+ * (JRuby) XML SAX push parser leaks memory on JRuby, but not on MRI. #998
48
+ * (JRUby) JRubyによるディフォルトネームスペースエイリアスの振る舞いがCRubyと同じではない。#940
49
+ * (JRuby) JRubyによるネームスペースのパースと追加の振る舞いが一致していない。 #943
50
+ * (JRuby) Builderで作ったドキュメントとクローンしたドキュメントではXpathの結果が違う。#1034
51
+ * (JRuby) Javaの実装はネームスペースを忘れることがある。 #902
52
+ * (JRuby) JRuby-Nokogiriはネームスペーススコープ内のアトリビュートを正しく認識しない。#1081
53
+ * (JRuby) JRuby-Nokogiriはコメントノードの名前が違う。#1080
54
+ * (JRuby) JAXPExtensionsProvider / Java 7 / Secure Processingに問題がある。 #1070
45
55
 
46
56
  === 1.6.1 / 2013年12月14日
47
57
 
@@ -1,62 +1,57 @@
1
- === 1.6.2 / unreleased
2
-
3
- * Notes
4
-
5
- * Now requires libxml >= 2.6.21 (was previously >= 2.6.17).
6
-
7
- * Features
8
-
9
- * Add cross building of fat binary gems for 64-Bit Windows (x64-mingw32)
10
- and add support for native builds on Windows. #864, #989, #1072
11
- * (MRI) Alias CP932 to Windows-31J if iconv does not support Windows-31J.
12
- * (MRI) Nokogiri now links packaged libraries statically. To
13
- disable static linking, pass --disable-static to extconf.rb. #923
14
- * (MRI) Fix a library path (LIBPATH) precedence problem caused by CRuby
15
- bug #9760.
16
- * (MRI) Nokogiri automatically deletes directories of packaged
17
- libraries only used during build. To keep them for debugging
18
- purposes, pass --disable-clean to extconf.rb. #952
19
- * (MRI) Nokogiri now builds libxml2 properly with iconv support on
20
- platforms where libiconv is installed outside the system default
21
- directories, such as FreeBSD.
22
- * Add support for an-b in nth selectors. #886 (Thanks, Magnus Bergmark!)
23
- * Add support for bare and multiple :not() functions in selectors. #887
24
- (Thanks, Magnus Bergmark!)
25
- * (MRI) Add an extconf.rb option --use-system-libraries, alternative to
26
- setting the environment variable NOKOGIRI_USE_SYSTEM_LIBRARIES.
27
- * (MRI) Update packaged libraries: libxslt to 1.1.28, zlib to 1.2.8,
28
- and libiconv to 1.14, respectively.
29
- * Nokogiri::HTML::Document#title= and #meta_encoding= now always add
30
- an element if not present, trying hard to find the best place to
31
- put it.
32
- * Nokogiri::XML::DTD#html_dtd? and #html5_dtd? are added.
33
- * Nokogiri::XML::Node#prepend_child is added. #664
34
- * Nokogiri::XML::SAX::ParserContext#recovery is added. #453
35
- * Fix documentation for XML::Node#namespace. #803 #802 (Thanks, Hoylen Sue)
36
- * Allow Nokogiri::XML::Node#parse from unparented non-element nodes. #407
37
-
38
- * Bugfixes
39
-
40
- * Ensure :only-child pseudo class works within :not pseudo class. #858
41
- (Thanks, Yamagishi Kazutoshi!)
42
- * Don't call pkg_config when using bundled libraries in extconf.rb
43
- #931 (Thanks, Shota Fukumori!)
44
- * Nokogiri.parse() does not mistake a non-HTML document like a RSS document as HTML document. #932 (Thanks, Yamagishi Kazutoshi!)
45
- * (MRI) Perform a node type check before adding a child node to another. Previously adding a text node to another as a child could cause a SEGV. #1092
46
- * (JRuby) XSD validation crashes in Java version. #373
47
- * (JRuby) Document already has a root node error while using Builder. #646
48
- * (JRuby) c14n tests are all passing on JRuby. #226
49
- * Parsing empty documents raise SyntaxError in strict mode. #1005
50
- * (JRuby) Make xpath faster by caching the xpath context. #741
51
- * (JRuby) XML SAX push parser leaks memory on JRuby, but not on MRI. #998
52
- * (JRUby) Inconsistent behavior aliasing the default namespace. #940
53
- * (JRuby) Inconsistent behavior between parsing and adding namespaces. #943
54
- * (JRuby) Xpath returns inconsistent result set on cloned document with
55
- namespaces and attributes. #1034
56
- * (JRuby) Java-Implementation forgets element namespaces #902
57
- * (JRuby) JRuby-Nokogiri does not recognise attributes inside namespaces #1081
58
- * (JRuby) JRuby-Nokogiri has different comment node name #1080
59
- * (JRuby) JAXPExtensionsProvider / Java 7 / Secure Processing #1070
1
+ === 1.6.2 / 2014-05-12
2
+
3
+ ==== Security Note
4
+
5
+ A set of security and bugfix patches have been backported from the libxml2 repository onto the version of 2.8.0 packaged with Nokogiri, including these notable security fixes:
6
+
7
+ * https://git.gnome.org/browse/libxml2/commit/?id=4629ee02ac649c27f9c0cf98ba017c6b5526070f
8
+ * CVE-2013-2877 https://git.gnome.org/browse/libxml2/commit/?id=e50ba8164eee06461c73cd8abb9b46aa0be81869
9
+ * CVE-2014-0191 https://git.gnome.org/browse/libxml2/commit/?id=9cd1c3cfbd32655d60572c0a413e017260c854df
10
+
11
+ It is recommended that you upgrade from 1.6.x to this version as soon as possible.
12
+
13
+ ==== Compatibility Note
14
+
15
+ Now requires libxml >= 2.6.21 (was previously >= 2.6.17).
16
+
17
+ ==== Features
18
+
19
+ * Add cross building of fat binary gems for 64-Bit Windows (x64-mingw32) and add support for native builds on Windows. #864, #989, #1072
20
+ * (MRI) Alias CP932 to Windows-31J if iconv does not support Windows-31J.
21
+ * (MRI) Nokogiri now links packaged libraries statically. To disable static linking, pass --disable-static to extconf.rb. #923
22
+ * (MRI) Fix a library path (LIBPATH) precedence problem caused by CRuby bug #9760.
23
+ * (MRI) Nokogiri automatically deletes directories of packaged libraries only used during build. To keep them for debugging purposes, pass --disable-clean to extconf.rb. #952
24
+ * (MRI) Nokogiri now builds libxml2 properly with iconv support on platforms where libiconv is installed outside the system default directories, such as FreeBSD.
25
+ * Add support for an-b in nth selectors. #886 (Thanks, Magnus Bergmark!)
26
+ * Add support for bare and multiple :not() functions in selectors. #887 (Thanks, Magnus Bergmark!)
27
+ * (MRI) Add an extconf.rb option --use-system-libraries, alternative to setting the environment variable NOKOGIRI_USE_SYSTEM_LIBRARIES.
28
+ * (MRI) Update packaged libraries: libxslt to 1.1.28, zlib to 1.2.8, and libiconv to 1.14, respectively.
29
+ * Nokogiri::HTML::Document#title= and #meta_encoding= now always add an element if not present, trying hard to find the best place to put it.
30
+ * Nokogiri::XML::DTD#html_dtd? and #html5_dtd? are added.
31
+ * Nokogiri::XML::Node#prepend_child is added. #664
32
+ * Nokogiri::XML::SAX::ParserContext#recovery is added. #453
33
+ * Fix documentation for XML::Node#namespace. #803 #802 (Thanks, Hoylen Sue)
34
+ * Allow Nokogiri::XML::Node#parse from unparented non-element nodes. #407
35
+
36
+ ==== Bugfixes
37
+
38
+ * Ensure :only-child pseudo class works within :not pseudo class. #858 (Thanks, Yamagishi Kazutoshi!)
39
+ * Don't call pkg_config when using bundled libraries in extconf.rb #931 (Thanks, Shota Fukumori!)
40
+ * Nokogiri.parse() does not mistake a non-HTML document like a RSS document as HTML document. #932 (Thanks, Yamagishi Kazutoshi!)
41
+ * (MRI) Perform a node type check before adding a child node to another. Previously adding a text node to another as a child could cause a SEGV. #1092
42
+ * (JRuby) XSD validation crashes in Java version. #373
43
+ * (JRuby) Document already has a root node error while using Builder. #646
44
+ * (JRuby) c14n tests are all passing on JRuby. #226
45
+ * Parsing empty documents raise SyntaxError in strict mode. #1005
46
+ * (JRuby) Make xpath faster by caching the xpath context. #741
47
+ * (JRuby) XML SAX push parser leaks memory on JRuby, but not on MRI. #998
48
+ * (JRuby) Inconsistent behavior aliasing the default namespace. #940
49
+ * (JRuby) Inconsistent behavior between parsing and adding namespaces. #943
50
+ * (JRuby) Xpath returns inconsistent result set on cloned document with namespaces and attributes. #1034
51
+ * (JRuby) Java-Implementation forgets element namespaces #902
52
+ * (JRuby) JRuby-Nokogiri does not recognise attributes inside namespaces #1081
53
+ * (JRuby) JRuby-Nokogiri has different comment node name #1080
54
+ * (JRuby) JAXPExtensionsProvider / Java 7 / Secure Processing #1070
60
55
 
61
56
  === 1.6.1 / 2013-12-14
62
57
 
Binary file
Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  module Nokogiri
2
2
  # The version of Nokogiri you are using
3
- VERSION = '1.6.2.rc3'
3
+ VERSION = '1.6.2'
4
4
 
5
5
  class VersionInfo # :nodoc:
6
6
  def jruby?
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.2.rc3
4
+ version: 1.6.2
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: 2014-05-09 00:00:00.000000000 Z
15
+ date: 2014-05-12 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: mini_portile
@@ -525,9 +525,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
525
525
  version: 1.9.2
526
526
  required_rubygems_version: !ruby/object:Gem::Requirement
527
527
  requirements:
528
- - - '>'
528
+ - - '>='
529
529
  - !ruby/object:Gem::Version
530
- version: 1.3.1
530
+ version: '0'
531
531
  requirements: []
532
532
  rubyforge_project: nokogiri
533
533
  rubygems_version: 2.2.2