nokogiri 1.17.0-arm64-darwin → 1.17.1-arm64-darwin

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: c53d0fe3fb2a4207e6b652c15770123c5c6da2443d57bc10cfe6f78a98cec52a
4
- data.tar.gz: 9cfb28e7b7c7f22d108747ca6837ec9bab2350586bb16e98f0a3a1ad7d9e95ed
3
+ metadata.gz: 0f83d1223882538a5648033090f419a9167857c5a4fb4a2232e195ef348955e1
4
+ data.tar.gz: 07d908ed54c442d067ef4aa92c2297c7f661906f4ff74cf094d6d97941914f3f
5
5
  SHA512:
6
- metadata.gz: 845a7eba66e9b0c6cf1f26c2a659ae76f4328ff331dbc61c7cb9287cc5637dd42d3d6cfafb0e57969c92a99228704091693bab4236fcd3da2d1170b548b1fa62
7
- data.tar.gz: c96fb4935311757f107da34a9897023af35b971883a3db86ec231703073c3710be05a77de98c1a8503ea5d11b6840ce691f3ebbbbf33509e066b1659348414a6
6
+ metadata.gz: c7131290e0a39bf72af29003f0f983752b76400db33309ea870c1aad8954da04dce720f1293b34c4fc1d10a672942008d3586040add789aca9fa42689548bb47
7
+ data.tar.gz: 2b5c4739c0681e4006ef0e85071e471c1705226cabcc97c04ff3741248a3268fb53c9db06acacaf209b82aeeee346b7e2ebc9ee052f00f00eb3dba8771992399
@@ -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: arm64-darwin
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