Showing 4 of 4 total issues
Update bundled libxml2 to v2.10.3 to resolve multiple CVEs Open
Open
nokogiri (1.13.4)
- Read upRead up
- Exclude checks
Improper Handling of Unexpected Data Type in Nokogiri Open
Open
nokogiri (1.13.4)
- Read upRead up
- Exclude checks
Integer Overflow or Wraparound in libxml2 affects Nokogiri Open
Open
nokogiri (1.13.4)
- Read upRead up
- Exclude checks
Method deep_merge
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
def deep_merge(hash, other) hash.to_h.merge(other) do |_, orig, new| if orig.respond_to?(:to_hash) && new.respond_to?(:to_hash) deep_merge(orig.to_h, new.to_h) elsif concattable?(orig, new)
- Read upRead up