nokogiri 1.14.2-arm64-darwin → 1.14.4-arm64-darwin
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/dependencies.yml +3 -3
- data/ext/nokogiri/include/libxml2/libxml/xmlversion.h +4 -4
- data/lib/nokogiri/2.7/nokogiri.bundle +0 -0
- data/lib/nokogiri/3.0/nokogiri.bundle +0 -0
- data/lib/nokogiri/3.1/nokogiri.bundle +0 -0
- data/lib/nokogiri/3.2/nokogiri.bundle +0 -0
- data/lib/nokogiri/jruby/nokogiri_jars.rb +6 -6
- data/lib/nokogiri/version/constant.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2170b1f12c790596bc14e02494ee46a538b26b537663370d500c065d1bc26c8c
|
4
|
+
data.tar.gz: 865b1aad3e1dff3f7c75e2eabeb5ead7a02821b3a876ce2491eadaf09dc02e29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 175f660bcf5a850d72dc09968e947d6708d190ff18a67bec62d68853f3484a8002944f9b5fec3cfbdc33ae8ef4fc93dab836165deae60f1d53380abaccf59c22
|
7
|
+
data.tar.gz: '005785bc20868626c62a91b063647f2c6fc5f5f4edbf4ae35a756adf868301a010ac291c07cecbe98c595678ab58a225dbed9e2674728d5b6317feed6a8e1aed'
|
data/dependencies.yml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
libxml2:
|
2
|
-
version: "2.10.
|
3
|
-
sha256: "
|
4
|
-
# sha-256 hash provided in https://download.gnome.org/sources/libxml2/2.10/libxml2-2.10.
|
2
|
+
version: "2.10.4"
|
3
|
+
sha256: "ed0c91c5845008f1936739e4eee2035531c1c94742c6541f44ee66d885948d45"
|
4
|
+
# sha-256 hash provided in https://download.gnome.org/sources/libxml2/2.10/libxml2-2.10.4.sha256sum
|
5
5
|
|
6
6
|
libxslt:
|
7
7
|
version: "1.1.37"
|
@@ -29,21 +29,21 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
|
|
29
29
|
*
|
30
30
|
* the version string like "1.2.3"
|
31
31
|
*/
|
32
|
-
#define LIBXML_DOTTED_VERSION "2.10.
|
32
|
+
#define LIBXML_DOTTED_VERSION "2.10.4"
|
33
33
|
|
34
34
|
/**
|
35
35
|
* LIBXML_VERSION:
|
36
36
|
*
|
37
37
|
* the version number: 1.2.3 value is 10203
|
38
38
|
*/
|
39
|
-
#define LIBXML_VERSION
|
39
|
+
#define LIBXML_VERSION 21004
|
40
40
|
|
41
41
|
/**
|
42
42
|
* LIBXML_VERSION_STRING:
|
43
43
|
*
|
44
44
|
* the version number string, 1.2.3 value is "10203"
|
45
45
|
*/
|
46
|
-
#define LIBXML_VERSION_STRING "
|
46
|
+
#define LIBXML_VERSION_STRING "21004"
|
47
47
|
|
48
48
|
/**
|
49
49
|
* LIBXML_VERSION_EXTRA:
|
@@ -58,7 +58,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
|
|
58
58
|
* Macro to check that the libxml version in use is compatible with
|
59
59
|
* the version the software has been compiled against
|
60
60
|
*/
|
61
|
-
#define LIBXML_TEST_VERSION xmlCheckVersion(
|
61
|
+
#define LIBXML_TEST_VERSION xmlCheckVersion(21004);
|
62
62
|
|
63
63
|
#ifndef VMS
|
64
64
|
#if 0
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -2,26 +2,26 @@
|
|
2
2
|
begin
|
3
3
|
require 'jar_dependencies'
|
4
4
|
rescue LoadError
|
5
|
-
require 'xalan/
|
5
|
+
require 'xalan/serializer/2.7.3/serializer-2.7.3.jar'
|
6
6
|
require 'net/sourceforge/htmlunit/neko-htmlunit/2.63.0/neko-htmlunit-2.63.0.jar'
|
7
7
|
require 'nu/validator/jing/20200702VNU/jing-20200702VNU.jar'
|
8
8
|
require 'xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar'
|
9
9
|
require 'org/nokogiri/nekodtd/0.1.11.noko1/nekodtd-0.1.11.noko1.jar'
|
10
10
|
require 'net/sf/saxon/Saxon-HE/9.6.0-4/Saxon-HE-9.6.0-4.jar'
|
11
|
+
require 'xalan/xalan/2.7.3/xalan-2.7.3.jar'
|
11
12
|
require 'xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar'
|
12
|
-
require 'xalan/serializer/2.7.2/serializer-2.7.2.jar'
|
13
13
|
require 'isorelax/isorelax/20030108/isorelax-20030108.jar'
|
14
14
|
end
|
15
15
|
|
16
16
|
if defined? Jars
|
17
|
-
require_jar 'xalan', '
|
17
|
+
require_jar 'xalan', 'serializer', '2.7.3'
|
18
18
|
require_jar 'net.sourceforge.htmlunit', 'neko-htmlunit', '2.63.0'
|
19
19
|
require_jar 'nu.validator', 'jing', '20200702VNU'
|
20
20
|
require_jar 'xerces', 'xercesImpl', '2.12.2'
|
21
21
|
require_jar 'org.nokogiri', 'nekodtd', '0.1.11.noko1'
|
22
22
|
require_jar 'net.sf.saxon', 'Saxon-HE', '9.6.0-4'
|
23
|
+
require_jar 'xalan', 'xalan', '2.7.3'
|
23
24
|
require_jar 'xml-apis', 'xml-apis', '1.4.01'
|
24
|
-
require_jar 'xalan', 'serializer', '2.7.2'
|
25
25
|
require_jar 'isorelax', 'isorelax', '20030108'
|
26
26
|
end
|
27
27
|
|
@@ -33,8 +33,8 @@ module Nokogiri
|
|
33
33
|
"net.sourceforge.htmlunit:neko-htmlunit" => "2.63.0",
|
34
34
|
"nu.validator:jing" => "20200702VNU",
|
35
35
|
"org.nokogiri:nekodtd" => "0.1.11.noko1",
|
36
|
-
"xalan:serializer" => "2.7.
|
37
|
-
"xalan:xalan" => "2.7.
|
36
|
+
"xalan:serializer" => "2.7.3",
|
37
|
+
"xalan:xalan" => "2.7.3",
|
38
38
|
"xerces:xercesImpl" => "2.12.2",
|
39
39
|
"xml-apis:xml-apis" => "1.4.01",
|
40
40
|
}.freeze
|
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.14.
|
4
|
+
version: 1.14.4
|
5
5
|
platform: arm64-darwin
|
6
6
|
authors:
|
7
7
|
- Mike Dalessio
|
@@ -20,7 +20,7 @@ authors:
|
|
20
20
|
autorequire:
|
21
21
|
bindir: bin
|
22
22
|
cert_chain: []
|
23
|
-
date: 2023-
|
23
|
+
date: 2023-05-11 00:00:00.000000000 Z
|
24
24
|
dependencies:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: racc
|
@@ -36,6 +36,7 @@ dependencies:
|
|
36
36
|
- - "~>"
|
37
37
|
- !ruby/object:Gem::Version
|
38
38
|
version: '1.4'
|
39
|
+
force_ruby_platform: false
|
39
40
|
description: |
|
40
41
|
Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby. It provides a
|
41
42
|
sensible, easy-to-understand API for reading, writing, modifying, and querying documents. It is
|