nokogiri 1.18.3-x86_64-linux-gnu → 1.18.4-x86_64-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 +4 -4
- data/dependencies.yml +3 -3
- data/ext/nokogiri/extconf.rb +1 -9
- data/ext/nokogiri/include/libexslt/exsltconfig.h +3 -3
- data/ext/nokogiri/include/libxslt/xsltconfig.h +5 -5
- data/lib/nokogiri/3.1/nokogiri.so +0 -0
- data/lib/nokogiri/3.2/nokogiri.so +0 -0
- data/lib/nokogiri/3.3/nokogiri.so +0 -0
- data/lib/nokogiri/3.4/nokogiri.so +0 -0
- data/lib/nokogiri/version/constant.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c6a1218cdc38fc7e6574f0a10a1c45fc7e4e70b0a96dc6e4e380e0f3365d45e
|
4
|
+
data.tar.gz: 84a1513f4dad60d0efd512887123759c859dd89547df63e6f9a908493b513082
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c39d74ae4ed22985428de7bf04d76017fcafe4f187b0aa35b2517952da0a26350aa3068ebdc3fa9526406d34b083d62ccc9b2f0d9a19f88bca80a2b5e028923
|
7
|
+
data.tar.gz: 5993f19bfe2768791aac8bbac9b28f000b270cce655f98f0cd22aaeb7fe6e2db629e64349934e8f07077fab20b80de8fd98f826ce2d99fa985d4c287351bcef4
|
data/dependencies.yml
CHANGED
@@ -5,9 +5,9 @@ libxml2:
|
|
5
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.
|
9
|
-
sha256: "
|
10
|
-
# sha-256 hash provided in https://download.gnome.org/sources/libxslt/1.1/libxslt-1.1.
|
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"
|
data/ext/nokogiri/extconf.rb
CHANGED
@@ -240,15 +240,7 @@ def zlib_source(version_string)
|
|
240
240
|
end
|
241
241
|
|
242
242
|
def gnome_source
|
243
|
-
|
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
|
@@ -18,21 +18,21 @@ extern "C" {
|
|
18
18
|
*
|
19
19
|
* the version string like "1.2.3"
|
20
20
|
*/
|
21
|
-
#define LIBEXSLT_DOTTED_VERSION "0.8.
|
21
|
+
#define LIBEXSLT_DOTTED_VERSION "0.8.24"
|
22
22
|
|
23
23
|
/**
|
24
24
|
* LIBEXSLT_VERSION:
|
25
25
|
*
|
26
26
|
* the version number: 1.2.3 value is 10203
|
27
27
|
*/
|
28
|
-
#define LIBEXSLT_VERSION
|
28
|
+
#define LIBEXSLT_VERSION 824
|
29
29
|
|
30
30
|
/**
|
31
31
|
* LIBEXSLT_VERSION_STRING:
|
32
32
|
*
|
33
33
|
* the version number string, 1.2.3 value is "10203"
|
34
34
|
*/
|
35
|
-
#define LIBEXSLT_VERSION_STRING "
|
35
|
+
#define LIBEXSLT_VERSION_STRING "824"
|
36
36
|
|
37
37
|
/**
|
38
38
|
* LIBEXSLT_VERSION_EXTRA:
|
@@ -20,21 +20,21 @@ extern "C" {
|
|
20
20
|
*
|
21
21
|
* the version string like "1.2.3"
|
22
22
|
*/
|
23
|
-
#define LIBXSLT_DOTTED_VERSION "1.1.
|
23
|
+
#define LIBXSLT_DOTTED_VERSION "1.1.43"
|
24
24
|
|
25
25
|
/**
|
26
26
|
* LIBXSLT_VERSION:
|
27
27
|
*
|
28
28
|
* the version number: 1.2.3 value is 10203
|
29
29
|
*/
|
30
|
-
#define LIBXSLT_VERSION
|
30
|
+
#define LIBXSLT_VERSION 10143
|
31
31
|
|
32
32
|
/**
|
33
33
|
* LIBXSLT_VERSION_STRING:
|
34
34
|
*
|
35
35
|
* the version number string, 1.2.3 value is "10203"
|
36
36
|
*/
|
37
|
-
#define LIBXSLT_VERSION_STRING "
|
37
|
+
#define LIBXSLT_VERSION_STRING "10143"
|
38
38
|
|
39
39
|
/**
|
40
40
|
* LIBXSLT_VERSION_EXTRA:
|
@@ -83,7 +83,7 @@ extern "C" {
|
|
83
83
|
* is insignifiant.
|
84
84
|
* On by default unless --without-debugger is passed to configure
|
85
85
|
*/
|
86
|
-
#if
|
86
|
+
#if 0
|
87
87
|
#ifndef WITH_DEBUGGER
|
88
88
|
#define WITH_DEBUGGER
|
89
89
|
#endif
|
@@ -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() "
|
115
|
+
#define LIBXSLT_DEFAULT_PLUGINS_PATH() ""
|
116
116
|
#endif
|
117
117
|
|
118
118
|
/**
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
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.
|
4
|
+
version: 1.18.4
|
5
5
|
platform: x86_64-linux-gnu
|
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: 2025-
|
23
|
+
date: 2025-03-14 00:00:00.000000000 Z
|
24
24
|
dependencies:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: racc
|