Savon v0.9.7 Release Notes

Release Date: 2011-08-25 // over 12 years ago
    • ๐Ÿ”‹ Feature: Merged pull request 210 by mboeh to add Savon::SOAP::Response#doc and Savon::SOAP::Response#xpath.

    • ๐Ÿ”‹ Feature: Merged pull request 211 by mattkirman to fix issue 202.

    • ๐Ÿ”‹ Feature: You can now pass a block to Savon::SOAP::XML#body and use Builder to create the XML:

      client.request(:find) do
        soap.body do |xml|
          xml.user do
            xml.id 601173
          end
        end
      end
      
    • ๐Ÿ›  Fix: issue 218 - Savon now correctly handles namespaced Array items in a Hash passed to Savon::SOAP::XML#body=.

    • ๐Ÿ›  Fix: Merged pull request 212 to fix savon_spec issue 2.

    • ๐Ÿ‘Œ Improvement: issue 222 - Set the Content-Length header.