nokogiri 1.19.0-java → 1.19.1-java

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: c51ad8ee313d012ecb8dd2b70160382c254acb7141e6d748263cb8542757828d
4
- data.tar.gz: d8604e535d6dfa271527bc0480fdff793aa9fe5641ae82f9db66517aee2b40b4
3
+ metadata.gz: baf5d7a1fdf41c3881896c1a79b9610714d412eb6047fad015cc239efaebcbb0
4
+ data.tar.gz: 491e2862115f0ad5ddc9abac38317d32810f3f5535d249c162996ad7424d9340
5
5
  SHA512:
6
- metadata.gz: 37eadcadebac13d633d9e5547cbebd5c986dd82115f000033a38bc9649952e79e58a6889c7632b75c521f9b78de75538d87b40a36e9e8a5e5fa39464b7a29575
7
- data.tar.gz: 6338e392ca48ffa2f343e3a9033a5de7fdfd03d056b357774b758e6f33431099e8ff9ce4cf0ab6f686453096029254c41e6e28fd3c4f822aeeb4a5968c5f287e
6
+ metadata.gz: 87649b5e549bf388fba32975de4e00a52eb28f0259a72ca993c753f41c1f44c205357ebae89d1d9a4a7e56f3d013c8b360a77f21f006605aef5700cddcae599f
7
+ data.tar.gz: 19ca6deeaa174b4b16b020e2d9ec47498552283684fa0b30acbbecd9f79f973884c8959f3ef55a2ca26aff6bedc8a11a6f86d663d2f37310f21b67ee165179f4
data/Gemfile CHANGED
@@ -36,5 +36,5 @@ end
36
36
  # `bundle config set --local without rdoc`
37
37
  # Then re-run `bundle install`.
38
38
  group :rdoc do
39
- gem "rdoc", "6.10.0" unless RUBY_PLATFORM == "java" || ENV["CI"]
39
+ gem "rdoc", "7.0.3" unless RUBY_PLATFORM == "java" || ENV["CI"]
40
40
  end
data/README.md CHANGED
@@ -291,3 +291,18 @@ Some additional libraries may be distributed with your version of Nokogiri. Plea
291
291
  - Sergio Arbeo
292
292
  - Timothy Elliott
293
293
  - Nobuyoshi Nakada
294
+
295
+
296
+ ## Sponsors
297
+
298
+ These folks have generously sponsored Nokogiri's development. Thank you for your support!
299
+
300
+ <p class="sponsors">
301
+ <span style="white-space: nowrap;"><a href="https://sentry.io"><img src="https://nokogiri.org/images/sponsors/sentry-icon.png" alt="Sentry" height="44" style="vertical-align: middle;"></a>&nbsp;<b>Sentry</b></span>
302
+ &nbsp;&nbsp;&nbsp;&nbsp;
303
+ <span style="white-space: nowrap;"><a href="https://codecov.io"><img src="https://nokogiri.org/images/sponsors/codecov-icon.png" alt="Codecov" height="44" style="vertical-align: middle;"></a>&nbsp;<b>Codecov</b></span>
304
+ &nbsp;&nbsp;&nbsp;&nbsp;
305
+ <span style="white-space: nowrap;"><a href="https://gusto.com"><img src="https://nokogiri.org/images/sponsors/gusto-icon.png" alt="Gusto" height="44" style="vertical-align: middle;"></a>&nbsp;<b>Gusto</b></span>
306
+ &nbsp;&nbsp;&nbsp;&nbsp;
307
+ <span style="white-space: nowrap;"><a href="https://hasdata.com"><img src="https://nokogiri.org/images/sponsors/hasdata-icon.png" alt="HasData" height="44" style="vertical-align: middle;"></a>&nbsp;<b>HasData</b></span>
308
+ </p>
@@ -652,15 +652,19 @@ rb_xml_document_canonicalize(int argc, VALUE *argv, VALUE self)
652
652
  }
653
653
  }
654
654
 
655
- xmlC14NExecute(c_doc, c_callback_wrapper, rb_callback,
656
- c_mode,
657
- c_namespaces,
658
- (int)RTEST(rb_comments_p),
659
- c_obuf);
655
+ int ret = xmlC14NExecute(c_doc, c_callback_wrapper, rb_callback,
656
+ c_mode,
657
+ c_namespaces,
658
+ (int)RTEST(rb_comments_p),
659
+ c_obuf);
660
660
 
661
661
  ruby_xfree(c_namespaces);
662
662
  xmlOutputBufferClose(c_obuf);
663
663
 
664
+ if (ret < 0) {
665
+ rb_raise(rb_eRuntimeError, "canonicalization failed");
666
+ }
667
+
664
668
  return rb_funcall(rb_io, rb_intern("string"), 0);
665
669
  }
666
670
 
Binary file
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Nokogiri
4
4
  # The version of Nokogiri you are using
5
- VERSION = "1.19.0"
5
+ VERSION = "1.19.1"
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.19.0
4
+ version: 1.19.1
5
5
  platform: java
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: 2025-12-28 00:00:00.000000000 Z
22
+ date: 2026-02-16 00:00:00.000000000 Z
23
23
  dependencies:
24
24
  - !ruby/object:Gem::Dependency
25
25
  name: jar-dependencies