nokogiri 1.18.1 → 1.18.6
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 +4 -4
- data/Gemfile +2 -4
- data/dependencies.yml +6 -6
- data/ext/nokogiri/extconf.rb +1 -9
- data/lib/nokogiri/css/xpath_visitor.rb +2 -1
- data/lib/nokogiri/version/constant.rb +1 -1
- data/ports/archives/libxml2-2.13.6.tar.xz +0 -0
- data/ports/archives/libxslt-1.1.43.tar.xz +0 -0
- metadata +8 -5
- data/ports/archives/libxml2-2.13.5.tar.xz +0 -0
- data/ports/archives/libxslt-1.1.42.tar.xz +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df06f5716cd1ac320a45b9e6ba619d27ede54662cf2b5fab76cc4c7218d8be6a
|
4
|
+
data.tar.gz: 582bec289373537f78321742a0752182fefe8329d0601c4847c36962a4408c40
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d09b7813a8bca46e15c627c60aed6f4381085657a7b2df66232177974da923b6d9c01626b44d38e41cf74dfa75eda93437397337bc292d3267c9132f0d58ba7
|
7
|
+
data.tar.gz: ab318ea62d3744d23c3acd6bd6efb5cef23020294918e5283513b78e6f31fc90bfde263e6a748ee3038a3b4dae4eb3621a380078431f951878b5dc1124c4d97d
|
data/Gemfile
CHANGED
@@ -33,8 +33,6 @@ end
|
|
33
33
|
# If Psych doesn't build, you can disable this group locally by running
|
34
34
|
# `bundle config set --local without rdoc`
|
35
35
|
# Then re-run `bundle install`.
|
36
|
-
|
37
|
-
|
38
|
-
gem "rdoc", "6.10.0"
|
39
|
-
end
|
36
|
+
group :rdoc do
|
37
|
+
gem "rdoc", "6.10.0" unless RUBY_PLATFORM == "java" || ENV["CI"]
|
40
38
|
end
|
data/dependencies.yml
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
---
|
2
2
|
libxml2:
|
3
|
-
version: "2.13.
|
4
|
-
sha256: "
|
5
|
-
# sha-256 hash provided in https://download.gnome.org/sources/libxml2/2.13/libxml2-2.13.
|
3
|
+
version: "2.13.6"
|
4
|
+
sha256: "f453480307524968f7a04ec65e64f2a83a825973bcd260a2e7691be82ae70c96"
|
5
|
+
# sha-256 hash provided in https://download.gnome.org/sources/libxml2/2.13/libxml2-2.13.6.sha256sum
|
6
6
|
|
7
7
|
libxslt:
|
8
|
-
version: "1.1.
|
9
|
-
sha256: "
|
10
|
-
# sha-256 hash provided in https://download.gnome.org/sources/libxslt/1.1/libxslt-1.1.
|
8
|
+
version: "1.1.43"
|
9
|
+
sha256: "5a3d6b383ca5afc235b171118e90f5ff6aa27e9fea3303065231a6d403f0183a"
|
10
|
+
# sha-256 hash provided in https://download.gnome.org/sources/libxslt/1.1/libxslt-1.1.43.sha256sum
|
11
11
|
|
12
12
|
zlib:
|
13
13
|
version: "1.3.1"
|
data/ext/nokogiri/extconf.rb
CHANGED
@@ -240,15 +240,7 @@ def zlib_source(version_string)
|
|
240
240
|
end
|
241
241
|
|
242
242
|
def gnome_source
|
243
|
-
|
244
|
-
# but whatever host is resolved on the github actions workers see an expired cert.
|
245
|
-
#
|
246
|
-
# See https://github.com/sparklemotion/nokogiri/runs/5266206403?check_suite_focus=true
|
247
|
-
if ENV["NOKOGIRI_USE_CANONICAL_GNOME_SOURCE"]
|
248
|
-
"https://download.gnome.org"
|
249
|
-
else
|
250
|
-
"https://muug.ca/mirror/gnome" # old reliable
|
251
|
-
end
|
243
|
+
"https://download.gnome.org"
|
252
244
|
end
|
253
245
|
|
254
246
|
LOCAL_PACKAGE_RESPONSE = Object.new
|
@@ -283,7 +283,8 @@ module Nokogiri
|
|
283
283
|
else
|
284
284
|
node.value.join(":")
|
285
285
|
end
|
286
|
-
elsif @namespaces&.key?("xmlns")
|
286
|
+
elsif node.value.first != "*" && @namespaces&.key?("xmlns")
|
287
|
+
# apply the default namespace (if one is present) to a non-wildcard selector
|
287
288
|
"xmlns:#{node.value.first}"
|
288
289
|
else
|
289
290
|
node.value.first
|
Binary file
|
Binary file
|
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.18.
|
4
|
+
version: 1.18.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Dalessio
|
@@ -17,9 +17,10 @@ authors:
|
|
17
17
|
- Sergio Arbeo
|
18
18
|
- Timothy Elliott
|
19
19
|
- Nobuyoshi Nakada
|
20
|
+
autorequire:
|
20
21
|
bindir: bin
|
21
22
|
cert_chain: []
|
22
|
-
date:
|
23
|
+
date: 2025-03-24 00:00:00.000000000 Z
|
23
24
|
dependencies:
|
24
25
|
- !ruby/object:Gem::Dependency
|
25
26
|
name: mini_portile2
|
@@ -273,8 +274,8 @@ files:
|
|
273
274
|
- patches/libxml2/0011-rip-out-libxml2-s-libc_single_threaded-support.patch
|
274
275
|
- patches/libxml2/0019-xpath-Use-separate-static-hash-table-for-standard-fu.patch
|
275
276
|
- patches/libxslt/0001-update-config.guess-and-config.sub-for-libxslt.patch
|
276
|
-
- ports/archives/libxml2-2.13.
|
277
|
-
- ports/archives/libxslt-1.1.
|
277
|
+
- ports/archives/libxml2-2.13.6.tar.xz
|
278
|
+
- ports/archives/libxslt-1.1.43.tar.xz
|
278
279
|
homepage: https://nokogiri.org
|
279
280
|
licenses:
|
280
281
|
- MIT
|
@@ -285,6 +286,7 @@ metadata:
|
|
285
286
|
changelog_uri: https://nokogiri.org/CHANGELOG.html
|
286
287
|
source_code_uri: https://github.com/sparklemotion/nokogiri
|
287
288
|
rubygems_mfa_required: 'true'
|
289
|
+
post_install_message:
|
288
290
|
rdoc_options:
|
289
291
|
- "--main"
|
290
292
|
- README.md
|
@@ -301,7 +303,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
301
303
|
- !ruby/object:Gem::Version
|
302
304
|
version: '0'
|
303
305
|
requirements: []
|
304
|
-
rubygems_version: 3.
|
306
|
+
rubygems_version: 3.5.11
|
307
|
+
signing_key:
|
305
308
|
specification_version: 4
|
306
309
|
summary: Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby.
|
307
310
|
test_files: []
|
Binary file
|
Binary file
|