Nokogiri v1.5.4 Release Notes

Release Date: 2012-06-12 // almost 12 years ago
  • โž• Added

    • The "nokogiri" script now has more verbose output when passed the --rng option. #675 (Thanks, Dan Radez!)
    • ๐Ÿ”’ Build support on hardened Debian systems that use -Werror=format-security. #680.
    • ๐Ÿ‘ Better build support for systems with pkg-config. #584
    • ๐Ÿ‘ Better build support for systems with multiple iconv installations.

    ๐Ÿ›  Fixed

    • Segmentation fault when creating a comment node for a DocumentFragment. #677, #678.
    • Treat '.' as xpath in at() and search(). #690

    ๐Ÿ”’ Security

    0๏ธโƒฃ (MRI) Default parse options for XML documents were changed to not make network connections during document parsing, to avoid XXE vulnerability. #693

    ๐Ÿ”ง To re-enable this behavior, the configuration method nononet may be called, like this:

    Nokogiri::XML::Document.parse(xml) { |config| config.nononet }
    

    Insert your own joke about double-negatives here.