nokogiri 1.14.1-x86-linux → 1.14.3-x86-linux

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of nokogiri might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 492cc94ee54db04c16ec9ee9f9e79e5c2ee96b79721dcb0798600febf43f8b61
4
- data.tar.gz: 4007876251cfc9496ede67bc4a78ce6ddcad537ef23fbcd588057da35e5f6908
3
+ metadata.gz: ef3803e6323d270915dcdefcf79bbd9d5d824acfebba4d91ba9a3af6cfd974a5
4
+ data.tar.gz: adc30c065e677c6a3e8943634521bf29e4eaf6947e4a869050e5c4a850a4934f
5
5
  SHA512:
6
- metadata.gz: 7d90def01a2cf65e84201079ef392786a2bcfba34d8682abd252b0ff96c4dc7453c306369e204367d51f1f068ed9b6e76b501fb60842e90791987601e77c5ce0
7
- data.tar.gz: c97bd00722ee22289fdbee3fd5bfedabd4f2cf4fb25767a66528bf34255c798c3c44c3b4d9bafc263980a3d8802b50d92fe8a628e172e1cc8b093ba1c5d4cdc3
6
+ metadata.gz: 54c0dfc4eabe0e0355b6ec56660e88b7f9618632a20139e19623816c055687944dc2b7f4a02f1ec302498d2fc972f744b7ae07abaa7625bb016e7f5263e663d0
7
+ data.tar.gz: cb0f78a0b8e10a19fe8669af4ec67d48b75c71d352977ed2208e128c0df926a48deafc19456f89529bb3ce7b0d250100225d4015356a73f365bb04d58db5fede
data/dependencies.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  libxml2:
2
- version: "2.10.3"
3
- sha256: "5d2cc3d78bec3dbe212a9d7fa629ada25a7da928af432c93060ff5c17ee28a9c"
4
- # sha-256 hash provided in https://download.gnome.org/sources/libxml2/2.10/libxml2-2.10.3.sha256sum
2
+ version: "2.10.4"
3
+ sha256: "ed0c91c5845008f1936739e4eee2035531c1c94742c6541f44ee66d885948d45"
4
+ # sha-256 hash provided in https://download.gnome.org/sources/libxml2/2.10/libxml2-2.10.4.sha256sum
5
5
 
6
6
  libxslt:
7
7
  version: "1.1.37"
@@ -29,21 +29,21 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
29
29
  *
30
30
  * the version string like "1.2.3"
31
31
  */
32
- #define LIBXML_DOTTED_VERSION "2.10.3"
32
+ #define LIBXML_DOTTED_VERSION "2.10.4"
33
33
 
34
34
  /**
35
35
  * LIBXML_VERSION:
36
36
  *
37
37
  * the version number: 1.2.3 value is 10203
38
38
  */
39
- #define LIBXML_VERSION 21003
39
+ #define LIBXML_VERSION 21004
40
40
 
41
41
  /**
42
42
  * LIBXML_VERSION_STRING:
43
43
  *
44
44
  * the version number string, 1.2.3 value is "10203"
45
45
  */
46
- #define LIBXML_VERSION_STRING "21003"
46
+ #define LIBXML_VERSION_STRING "21004"
47
47
 
48
48
  /**
49
49
  * LIBXML_VERSION_EXTRA:
@@ -58,7 +58,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version);
58
58
  * Macro to check that the libxml version in use is compatible with
59
59
  * the version the software has been compiled against
60
60
  */
61
- #define LIBXML_TEST_VERSION xmlCheckVersion(21003);
61
+ #define LIBXML_TEST_VERSION xmlCheckVersion(21004);
62
62
 
63
63
  #ifndef VMS
64
64
  #if 0
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.14.1"
5
+ VERSION = "1.14.3"
6
6
  end
@@ -345,8 +345,9 @@ module Nokogiri
345
345
  args.insert(0, options)
346
346
  end
347
347
  if empty?
348
- encoding = (args.first.is_a?(Hash) ? args.first[:encoding] : nil) || document.encoding
349
- "".encode(encoding)
348
+ encoding = (args.first.is_a?(Hash) ? args.first[:encoding] : nil)
349
+ encoding ||= document.encoding
350
+ encoding.nil? ? "" : "".encode(encoding)
350
351
  else
351
352
  map { |x| x.to_html(*args) }.join
352
353
  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.14.1
4
+ version: 1.14.3
5
5
  platform: x86-linux
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: 2023-01-30 00:00:00.000000000 Z
23
+ date: 2023-04-11 00:00:00.000000000 Z
24
24
  dependencies:
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: racc
@@ -36,6 +36,7 @@ dependencies:
36
36
  - - "~>"
37
37
  - !ruby/object:Gem::Version
38
38
  version: '1.4'
39
+ force_ruby_platform: false
39
40
  description: |
40
41
  Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby. It provides a
41
42
  sensible, easy-to-understand API for reading, writing, modifying, and querying documents. It is