nokogiri 1.18.1 → 1.18.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 625a018bc3e4890d78d52e0c234d168e187a6d3cb6f9611da04fe9f5b887cc46
4
- data.tar.gz: 3f542a6448b1134ae485801ef959e59978499b557792f7a73436735d0dc03681
3
+ metadata.gz: 5eec73a16ed9fb6251b22c0390f9d13ebe59a7327148e45442ddc81563487441
4
+ data.tar.gz: 8560acbc6e4d543a4ce8a8c81ccbfb9f64377bd8c4b16e77b0d78b9d59348c08
5
5
  SHA512:
6
- metadata.gz: 9a59c6ea78b7d5ad1e48a280a3bc8d04b39ce5e10b4b717a1aa53935136450acd4439d9315a534b2146a73ef601e1da043de57aa1a6bebc24157f29350003121
7
- data.tar.gz: b3352ba9ed567401f272920bb3e5aedc1e488f9e1014bdf4929cada908d716223324275115e4e8453ac2706d9553b3030f339a40a148b4d185baadd530887659
6
+ metadata.gz: e180e2c35f75c3efff16621993eb25865820eb868bd3bea062844aa014af7ccb237dc1c411a91490ef1f6d6404f9bf586aa08bcd35d71a0ed432c25e3ee856ea
7
+ data.tar.gz: 9156bc852c4e6f0ef031b086a9ea961b68a2091c603ec88a1f06fa33681e91fecd09d5ec20854fd591dbf21cf8da474fe3d7b5bf47cef8e1913a5b26a8f124a2
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
- unless RUBY_PLATFORM == "java" # see #3391 and https://github.com/jruby/jruby/issues/7262
37
- group :rdoc do
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.5"
4
- sha256: "74fc163217a3964257d3be39af943e08861263c4231f9ef5b496b6f6d4c7b2b6"
5
- # sha-256 hash provided in https://download.gnome.org/sources/libxml2/2.13/libxml2-2.13.5.sha256sum
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.42"
9
- sha256: "85ca62cac0d41fc77d3f6033da9df6fd73d20ea2fc18b0a3609ffb4110e1baeb"
10
- # sha-256 hash provided in https://download.gnome.org/sources/libxslt/1.1/libxslt-1.1.42.sha256sum
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"
@@ -240,15 +240,7 @@ def zlib_source(version_string)
240
240
  end
241
241
 
242
242
  def gnome_source
243
- # As of 2022-02-20, some mirrors have expired SSL certificates. I'm able to retrieve from my home,
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") # apply the default namespace if it's declared
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
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Nokogiri
4
4
  # The version of Nokogiri you are using
5
- VERSION = "1.18.1"
5
+ VERSION = "1.18.5"
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.18.1
4
+ version: 1.18.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Dalessio
@@ -19,7 +19,7 @@ authors:
19
19
  - Nobuyoshi Nakada
20
20
  bindir: bin
21
21
  cert_chain: []
22
- date: 2024-12-29 00:00:00.000000000 Z
22
+ date: 2025-03-19 00:00:00.000000000 Z
23
23
  dependencies:
24
24
  - !ruby/object:Gem::Dependency
25
25
  name: mini_portile2
@@ -273,8 +273,8 @@ files:
273
273
  - patches/libxml2/0011-rip-out-libxml2-s-libc_single_threaded-support.patch
274
274
  - patches/libxml2/0019-xpath-Use-separate-static-hash-table-for-standard-fu.patch
275
275
  - patches/libxslt/0001-update-config.guess-and-config.sub-for-libxslt.patch
276
- - ports/archives/libxml2-2.13.5.tar.xz
277
- - ports/archives/libxslt-1.1.42.tar.xz
276
+ - ports/archives/libxml2-2.13.6.tar.xz
277
+ - ports/archives/libxslt-1.1.43.tar.xz
278
278
  homepage: https://nokogiri.org
279
279
  licenses:
280
280
  - MIT
Binary file
Binary file