nokogiri 1.15.0 → 1.15.2

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
  SHA256:
3
- metadata.gz: cad4c790fb66865a2b47c27345cdb2785c61b9a599490fcbef62150e83078547
4
- data.tar.gz: da81f866cd1451d0583b8fd376625185052c8d17f7a3b6250c43fec7d906daf8
3
+ metadata.gz: 28cf4d0b9baf07480c793fb96278ff794143b4fe174bf3f30cbf01db379f7666
4
+ data.tar.gz: cf64722cac06b54e210eeefc458db1a5891226247f67c8285a70333bf8d509b3
5
5
  SHA512:
6
- metadata.gz: 5b7e4a97225c6a4516fc298a9826d890fd652d1adcd7a2b90e02979e46015114ba9f63d9fdd34b5d398b562a23745386c77ba90165f8e214354a149758b88bfa
7
- data.tar.gz: a7127084785dbd6761e87d14b57fe17fa338babba7a05e8f724bfeb749b7ce4344681bb9429eca6c9bc6defd27f6238d4c785a0657656a7d9ca7e531926d1423
6
+ metadata.gz: 374b25e5821f2bb9a27f702bc24967d736bd1b14e17529927d5686e0ae12c3b28ed6c602cbe5d96de992030498305bd1add8947aeaac0be2519ef8364e15f5a9
7
+ data.tar.gz: a1b99efa7d206e23499e98c87ac5844353d0c7da1f1f0536ccd3dc66535f537c3748d938324c6b63fbd3c59e99a0bf10edc77d3904aa4c497d09e76e304326e1
data/Gemfile CHANGED
@@ -22,16 +22,16 @@ group :development do
22
22
  # tests
23
23
  gem "minitest", "5.18.0"
24
24
  gem "minitest-reporters", "1.6.0"
25
- gem "ruby_memcheck", git: "https://github.com/flavorjones/ruby_memcheck", ref: "flavorjones-nokogiri-huge-parse-option"
25
+ gem "ruby_memcheck", "1.3.2"
26
26
  gem "rubyzip", "~> 2.3.2"
27
27
  gem "simplecov", "= 0.21.2"
28
28
 
29
29
  # rubocop
30
30
  if Gem::Requirement.new("~> 3.0").satisfied_by?(Gem::Version.new(RUBY_VERSION))
31
- gem "rubocop", "1.50.2"
31
+ gem "rubocop", "1.51.0"
32
32
  gem "rubocop-minitest", "0.31.0"
33
33
  gem "rubocop-packaging", "0.5.2"
34
- gem "rubocop-performance", "1.17.1"
34
+ gem "rubocop-performance", "1.18.0"
35
35
  gem "rubocop-rake", "= 0.6.0"
36
36
  gem "rubocop-shopify", "2.13.0"
37
37
  end
data/dependencies.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  libxml2:
2
- version: "2.11.3"
3
- sha256: "f1acae1664bda006cd81bfc238238217043d586d06659d5c0e3d1bcebe040870"
4
- # sha-256 hash provided in https://download.gnome.org/sources/libxml2/2.11/libxml2-2.11.3.sha256sum
2
+ version: "2.11.4"
3
+ sha256: "737e1d7f8ab3f139729ca13a2494fd17bf30ddb4b7a427cf336252cab57f57f7"
4
+ # sha-256 hash provided in https://download.gnome.org/sources/libxml2/2.11/libxml2-2.11.4.sha256sum
5
5
 
6
6
  libxslt:
7
7
  version: "1.1.38"
@@ -6,10 +6,10 @@ rescue LoadError
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
- require 'org/nokogiri/nekodtd/0.1.11.noko1/nekodtd-0.1.11.noko1.jar'
10
9
  require 'net/sf/saxon/Saxon-HE/9.6.0-4/Saxon-HE-9.6.0-4.jar'
11
10
  require 'xalan/xalan/2.7.3/xalan-2.7.3.jar'
12
11
  require 'xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar'
12
+ require 'org/nokogiri/nekodtd/0.1.11.noko2/nekodtd-0.1.11.noko2.jar'
13
13
  require 'isorelax/isorelax/20030108/isorelax-20030108.jar'
14
14
  end
15
15
 
@@ -18,10 +18,10 @@ if defined? Jars
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
- require_jar 'org.nokogiri', 'nekodtd', '0.1.11.noko1'
22
21
  require_jar 'net.sf.saxon', 'Saxon-HE', '9.6.0-4'
23
22
  require_jar 'xalan', 'xalan', '2.7.3'
24
23
  require_jar 'xml-apis', 'xml-apis', '1.4.01'
24
+ require_jar 'org.nokogiri', 'nekodtd', '0.1.11.noko2'
25
25
  require_jar 'isorelax', 'isorelax', '20030108'
26
26
  end
27
27
 
@@ -32,7 +32,7 @@ module Nokogiri
32
32
  "net.sf.saxon:Saxon-HE" => "9.6.0-4",
33
33
  "net.sourceforge.htmlunit:neko-htmlunit" => "2.63.0",
34
34
  "nu.validator:jing" => "20200702VNU",
35
- "org.nokogiri:nekodtd" => "0.1.11.noko1",
35
+ "org.nokogiri:nekodtd" => "0.1.11.noko2",
36
36
  "xalan:serializer" => "2.7.3",
37
37
  "xalan:xalan" => "2.7.3",
38
38
  "xerces:xercesImpl" => "2.12.2",
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Nokogiri
4
4
  # The version of Nokogiri you are using
5
- VERSION = "1.15.0"
5
+ VERSION = "1.15.2"
6
6
  end
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.15.0
4
+ version: 1.15.2
5
5
  platform: ruby
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-05-15 00:00:00.000000000 Z
23
+ date: 2023-05-24 00:00:00.000000000 Z
24
24
  dependencies:
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: mini_portile2
@@ -272,7 +272,7 @@ files:
272
272
  - patches/libxml2/0010-update-config.guess-and-config.sub-for-libxml2.patch
273
273
  - patches/libxml2/0011-rip-out-libxml2-s-libc_single_threaded-support.patch
274
274
  - patches/libxslt/0001-update-config.guess-and-config.sub-for-libxslt.patch
275
- - ports/archives/libxml2-2.11.3.tar.xz
275
+ - ports/archives/libxml2-2.11.4.tar.xz
276
276
  - ports/archives/libxslt-1.1.38.tar.xz
277
277
  homepage: https://nokogiri.org
278
278
  licenses:
Binary file