nokogiri 1.19.0-arm-linux-gnu → 1.19.1-arm-linux-gnu

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: 3c1ca5560a4e52b4ae85ee8787eb1850a4f4acab4f84bf876b887e768540f1aa
4
- data.tar.gz: 4c555b78dbbef20ad6ac738eb4e237caa7f226ec42209ec7bf462bf79a85d051
3
+ metadata.gz: 51189bdfd50852868755d1e60921601f0be4a98d7783a777e50f8c57da65bc08
4
+ data.tar.gz: 761ef0aa93ca5c519636c778e226cb7a7c3a791a80ec3db441cbf2dbec7cc99d
5
5
  SHA512:
6
- metadata.gz: e79919063d88f9045811e80e70609230047e84a18c2fa60a1cfe2299e4b438a66b8d80bc8ed00299dedec98036a9e4c36586045c18dc4cb7ed17976eb3669be3
7
- data.tar.gz: c2a21799ae62b6ae3a378b52594712112978541eb93ef580dd78b9701e46ae5c74f1fab4d57c9fe363a0a251549660e2e8a289641d7523e720436d090661539b
6
+ metadata.gz: 2c04634c444369ad55f9ecd2d29ebb280b081c2c6e599b7380c3d9b72d7dad10aef1909da5d55d8ed3915d6ba7234b1de8093b7d1d008c443b2421af8d2fe1e3
7
+ data.tar.gz: ee9485b602a67975c6faa16ee8729815b621e0cc3d2f43890e271b43bb392d8e57ff7fdc67845b3acac562adc870301b94eeeec0bd3f7b298460df6807b8a6cf
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
Binary file
Binary file
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: arm-linux-gnu
6
6
  authors:
7
7
  - Mike Dalessio