nokogiri 1.17.0-x86-linux → 1.17.1-x86-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0d2d5f47904a21f844c72b010779c3913f713c99da3d638dd42b8b5167eedf51
4
- data.tar.gz: 73ea7bc89de04be0500276fe3d803850c4e51446a714066e4abd220876516d8a
3
+ metadata.gz: acb8ddee7c600eef924a76b1c9548060c1e8aebba50b0156d221391713c80036
4
+ data.tar.gz: 0d49ddd3a02b3122553ed5d70c6e3a3461dc23cd251e41f4d8115118b38aa347
5
5
  SHA512:
6
- metadata.gz: cb69ce0034cb8e22abd81845935679461cfab823b1c3d18fa048082c76f06e5e70762c206d16d91c6d9a230249be649daad41e763981c1aab485fff7db20306c
7
- data.tar.gz: 7ebf3e2394c465935d4868a9b85b30906c10a7fceb781ce00a728e712894f64ed33b95527790c686482722b026ad39c2e8fadf780ac9949cfe8b52e3edcb5ec2
6
+ metadata.gz: 2ba79921578589189c67ec48fafe31ad2da6cc29e0fa40c8b5c58f23d6aadee681445219994edd2f3dd240e2d9df12fc2bfcc7e7f3b3fd0953900edf2466f956
7
+ data.tar.gz: e6ebd0e9608b55c39f48c33d94bf72cee47e23db9b8ea454ecef4485621c9e695f67df8317bc8c509b910887833fc3199cc12d7e1866a68e1494a728e0d83ab5
@@ -969,6 +969,7 @@ rb_xml_node_initialize_copy_with_args(VALUE rb_self, VALUE rb_other, VALUE rb_le
969
969
  xmlNodePtr c_self, c_other;
970
970
  int c_level;
971
971
  xmlDocPtr c_new_parent_doc;
972
+ VALUE rb_node_cache;
972
973
 
973
974
  Noko_Node_Get_Struct(rb_other, xmlNode, c_other);
974
975
  c_level = (int)NUM2INT(rb_level);
@@ -980,6 +981,10 @@ rb_xml_node_initialize_copy_with_args(VALUE rb_self, VALUE rb_other, VALUE rb_le
980
981
  _xml_node_data_ptr_set(rb_self, c_self);
981
982
  noko_xml_document_pin_node(c_self);
982
983
 
984
+ rb_node_cache = DOC_NODE_CACHE(c_new_parent_doc);
985
+ rb_ary_push(rb_node_cache, rb_self);
986
+ rb_funcall(rb_new_parent_doc, id_decorate, 1, rb_self);
987
+
983
988
  return rb_self;
984
989
  }
985
990
 
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.17.0"
5
+ VERSION = "1.17.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.17.0
4
+ version: 1.17.1
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: 2024-12-08 00:00:00.000000000 Z
23
+ date: 2024-12-10 00:00:00.000000000 Z
24
24
  dependencies:
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: racc