nokogiri 1.18.1-aarch64-linux-musl → 1.18.3-aarch64-linux-musl

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7903f9d097c63efa90eacb553425f5dc09dc8dd40029bf4b4e4a57982c31be59
4
- data.tar.gz: 7052c11ab8fd44f07a81501b89e1a27ff4edd42c4a2b97f71bffcb1df44a5556
3
+ metadata.gz: 752bb0d29dd43058b6ba38be83a409eb6c7940ccc584af3f406ed7dc38cca265
4
+ data.tar.gz: 1fa3b6071d7cae67c96efe80fc5596d6559a15ad52bd356945f7deadb5af5372
5
5
  SHA512:
6
- metadata.gz: 307610dc53a197a14d5c26099d9179b0fd050b35abc30854f8ac50def4aaccc1ce28399162bc790dfd62678eaa0a325b7e6a23cfcf4580e2f186e3f40723630e
7
- data.tar.gz: 34a9b8831b21290a85f72c8057dc71e9f5729e797054483cedaadef237d5ca79b766fcd634f1482f2ef6cce5a687fa8e1af4f7e3ee11564e0a7b6334ca12593a
6
+ metadata.gz: 7c6b37be7c060aa1ce12efb380ecd95c2a2c7431cffa0f4d97f7f4136237caa69418ca8fdfd82196d65d51227a76a60120e6cbeb431a20d7f6b84b6a2863ee17
7
+ data.tar.gz: 19c0b14ce136d0e0e6141ee61d6ebe6b066d41aff22765ae7af4e5881dcb5ae45440c0384eb5b3a0cbd58ada1835fda5f2a02f99f654e807d3836c0d792bd6c3
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,8 +1,8 @@
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
8
  version: "1.1.42"
@@ -15,21 +15,21 @@
15
15
  *
16
16
  * the version string like "1.2.3"
17
17
  */
18
- #define LIBXML_DOTTED_VERSION "2.13.5"
18
+ #define LIBXML_DOTTED_VERSION "2.13.6"
19
19
 
20
20
  /**
21
21
  * LIBXML_VERSION:
22
22
  *
23
23
  * the version number: 1.2.3 value is 10203
24
24
  */
25
- #define LIBXML_VERSION 21305
25
+ #define LIBXML_VERSION 21306
26
26
 
27
27
  /**
28
28
  * LIBXML_VERSION_STRING:
29
29
  *
30
30
  * the version number string, 1.2.3 value is "10203"
31
31
  */
32
- #define LIBXML_VERSION_STRING "21305"
32
+ #define LIBXML_VERSION_STRING "21306"
33
33
 
34
34
  /**
35
35
  * LIBXML_VERSION_EXTRA:
@@ -44,7 +44,7 @@
44
44
  * Macro to check that the libxml version in use is compatible with
45
45
  * the version the software has been compiled against
46
46
  */
47
- #define LIBXML_TEST_VERSION xmlCheckVersion(21305);
47
+ #define LIBXML_TEST_VERSION xmlCheckVersion(21306);
48
48
 
49
49
  /**
50
50
  * LIBXML_THREAD_ENABLED:
@@ -112,7 +112,7 @@ extern "C" {
112
112
  #ifndef WITH_MODULES
113
113
  #define WITH_MODULES
114
114
  #endif
115
- #define LIBXSLT_DEFAULT_PLUGINS_PATH() "/home/flavorjones/code/oss/nokogiri/ports/x86_64-linux-musl/libxslt/1.1.42/lib/libxslt-plugins"
115
+ #define LIBXSLT_DEFAULT_PLUGINS_PATH() "/home/flavorjones/code/oss/nokogiri/ports/aarch64-linux-musl/libxslt/1.1.42/lib/libxslt-plugins"
116
116
  #endif
117
117
 
118
118
  /**
Binary file
Binary file
Binary file
Binary file
@@ -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.3"
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.3
5
5
  platform: aarch64-linux-musl
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: 2024-12-29 00:00:00.000000000 Z
23
+ date: 2025-02-18 00:00:00.000000000 Z
24
24
  dependencies:
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: racc