nokogiri 1.11.6 → 1.11.7

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: 0cd8509ca6a1609635cf79076efa4d0ccc203d69e8a9ce68f7b4648e5a30c8b4
4
- data.tar.gz: 171144f295bac5337867370b0b2ade023a697f08c089580d681dd4c9316494da
3
+ metadata.gz: a73d0d0bba6227291bb1780b081dd2620881949ec0621e51d83457da13a98717
4
+ data.tar.gz: 2b6a3899b2368fa153d5de232e0dd7e04bd1a925ddebbfb0fb248956a9de8247
5
5
  SHA512:
6
- metadata.gz: 40876ba4cda6e2191f4380340b4b35d1ac30906818c5a1fcddc7bda1aef767d31deef38683d19dc76560c55627103f481aedeb0b78ef083c7b51e64de0556dbd
7
- data.tar.gz: 6739c13cbe2a3bab87bc02af7ff8209a60a6ddb30c05cce7a844cd4272937285f6617fb8cfe4def6e4e3fa1bd267b41672507bd682fdc050d6d69f512032458d
6
+ metadata.gz: f798c33192a0b25e1d57aa62b6eefbf3ccab6e0563f86357688e0cc75a7a714e83d48b0fc1cceb22f3c740005a61800c908e8e62cf6147663450950976941ca3
7
+ data.tar.gz: 0cbb1ab65d2299c10e39ff19b2df63fb7c50daf94ffc4062031239caa5455d1f81c6ac32ea4c3a5ca71a41e49184271fcccc28b8f8b226f64507de98775c71e0
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  module Nokogiri
3
3
  # The version of Nokogiri you are using
4
- VERSION = "1.11.6"
4
+ VERSION = "1.11.7"
5
5
  end
@@ -0,0 +1,31 @@
1
+ From 3e1aad4fe584747fd7d17cc7b2863a78e2d21a77 Mon Sep 17 00:00:00 2001
2
+ From: Nick Wellnhofer <wellnhofer@aevum.de>
3
+ Date: Wed, 2 Jun 2021 17:31:49 +0200
4
+ Subject: [PATCH] Fix XPath recursion limit
5
+
6
+ Fix accounting of recursion depth when parsing XPath expressions.
7
+
8
+ This silly bug introduced in commit 804c5297 could lead to spurious
9
+ errors when parsing larger expressions or XSLT documents.
10
+
11
+ Should fix #264.
12
+ ---
13
+ xpath.c | 2 +-
14
+ 1 file changed, 1 insertion(+), 1 deletion(-)
15
+
16
+ diff --git a/xpath.c b/xpath.c
17
+ index 7497ba0..1aa2f1a 100644
18
+ --- a/xpath.c
19
+ +++ b/xpath.c
20
+ @@ -10983,7 +10983,7 @@ xmlXPathCompileExpr(xmlXPathParserContextPtr ctxt, int sort) {
21
+ }
22
+
23
+ if (xpctxt != NULL)
24
+ - xpctxt->depth -= 1;
25
+ + xpctxt->depth -= 10;
26
+ }
27
+
28
+ /**
29
+ --
30
+ 2.31.0
31
+
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.11.6
4
+ version: 1.11.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Dalessio
@@ -17,7 +17,7 @@ authors:
17
17
  autorequire:
18
18
  bindir: bin
19
19
  cert_chain: []
20
- date: 2021-05-26 00:00:00.000000000 Z
20
+ date: 2021-06-02 00:00:00.000000000 Z
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
23
23
  name: racc
@@ -377,6 +377,7 @@ files:
377
377
  - patches/libxml2/0004-use-glibc-strlen.patch
378
378
  - patches/libxml2/0005-avoid-isnan-isinf.patch
379
379
  - patches/libxml2/0006-update-automake-files-for-arm64.patch
380
+ - patches/libxml2/0007-Fix-XPath-recursion-limit.patch
380
381
  - patches/libxslt/0001-update-automake-files-for-arm64.patch
381
382
  - patches/libxslt/0002-Fix-xml2-config-check-in-configure-script.patch
382
383
  - ports/archives/libxml2-2.9.12.tar.gz
@@ -407,7 +408,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
407
408
  - !ruby/object:Gem::Version
408
409
  version: '0'
409
410
  requirements: []
410
- rubygems_version: 3.1.4
411
+ rubygems_version: 3.2.19
411
412
  signing_key:
412
413
  specification_version: 4
413
414
  summary: Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby.