nokogiri 1.18.0-x86_64-linux-gnu → 1.18.1-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.
Potentially problematic release.
This version of nokogiri might be problematic. Click here for more details.
- checksums.yaml +4 -4
 - data/Gemfile +4 -3
 - data/ext/nokogiri/xml_sax_parser_context.c +8 -2
 - 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: e26bcd7139eb177c6483ae93861b4dc8702c74a875e3f2ee89bf3f0920c5e45a
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: '059f56826eb5b3e309e94ec4a4d49801778bf79db7cd873a174fc127b923a3f3'
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 9240cc46c3130404cdad05fc8868eac65a2753439d3e6d93c0ef5e7a11cb56ff3a88622907b4a8dd17149b78dafe6d6c0b7e6ffcbfc68f9d5c3179a07df2632b
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 154c16e9e3dc6c31b08c4efcf5d27f1020a4379c01021f02144f8954ffdce79cef2b34521198ed93486b49723671332169d690a5fa88f2346b4e346439ada9c8
         
     | 
    
        data/Gemfile
    CHANGED
    
    | 
         @@ -33,7 +33,8 @@ end 
     | 
|
| 
       33 
33 
     | 
    
         
             
            # If Psych doesn't build, you can disable this group locally by running
         
     | 
| 
       34 
34 
     | 
    
         
             
            # `bundle config set --local without rdoc`
         
     | 
| 
       35 
35 
     | 
    
         
             
            # Then re-run `bundle install`.
         
     | 
| 
       36 
     | 
    
         
            -
             
     | 
| 
       37 
     | 
    
         
            -
               
     | 
| 
       38 
     | 
    
         
            -
             
     | 
| 
      
 36 
     | 
    
         
            +
            unless RUBY_PLATFORM == "java" # see #3391 and https://github.com/jruby/jruby/issues/7262
         
     | 
| 
      
 37 
     | 
    
         
            +
              group :rdoc do
         
     | 
| 
      
 38 
     | 
    
         
            +
                gem "rdoc", "6.10.0"
         
     | 
| 
      
 39 
     | 
    
         
            +
              end
         
     | 
| 
       39 
40 
     | 
    
         
             
            end
         
     | 
| 
         @@ -102,7 +102,10 @@ noko_xml_sax_parser_context_s_native_io(VALUE rb_class, VALUE rb_io, VALUE rb_en 
     | 
|
| 
       102 
102 
     | 
    
         
             
                c_context->sax = NULL;
         
     | 
| 
       103 
103 
     | 
    
         
             
              }
         
     | 
| 
       104 
104 
     | 
    
         | 
| 
       105 
     | 
    
         
            -
               
     | 
| 
      
 105 
     | 
    
         
            +
              VALUE rb_context = noko_xml_sax_parser_context_wrap(rb_class, c_context);
         
     | 
| 
      
 106 
     | 
    
         
            +
              rb_iv_set(rb_context, "@input", rb_io);
         
     | 
| 
      
 107 
     | 
    
         
            +
             
     | 
| 
      
 108 
     | 
    
         
            +
              return rb_context;
         
     | 
| 
       106 
109 
     | 
    
         
             
            }
         
     | 
| 
       107 
110 
     | 
    
         | 
| 
       108 
111 
     | 
    
         
             
            /* :nodoc: */
         
     | 
| 
         @@ -154,7 +157,10 @@ noko_xml_sax_parser_context_s_native_memory(VALUE rb_class, VALUE rb_input, VALU 
     | 
|
| 
       154 
157 
     | 
    
         
             
                c_context->sax = NULL;
         
     | 
| 
       155 
158 
     | 
    
         
             
              }
         
     | 
| 
       156 
159 
     | 
    
         | 
| 
       157 
     | 
    
         
            -
               
     | 
| 
      
 160 
     | 
    
         
            +
              VALUE rb_context = noko_xml_sax_parser_context_wrap(rb_class, c_context);
         
     | 
| 
      
 161 
     | 
    
         
            +
              rb_iv_set(rb_context, "@input", rb_input);
         
     | 
| 
      
 162 
     | 
    
         
            +
             
     | 
| 
      
 163 
     | 
    
         
            +
              return rb_context;
         
     | 
| 
       158 
164 
     | 
    
         
             
            }
         
     | 
| 
       159 
165 
     | 
    
         | 
| 
       160 
166 
     | 
    
         
             
            /*
         
     | 
| 
         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.1
         
     | 
| 
       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: 2024-12- 
     | 
| 
      
 23 
     | 
    
         
            +
            date: 2024-12-29 00:00:00.000000000 Z
         
     | 
| 
       24 
24 
     | 
    
         
             
            dependencies:
         
     | 
| 
       25 
25 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       26 
26 
     | 
    
         
             
              name: racc
         
     |