Savon v1.1.0 Release Notes

Release Date: 2012-06-28 // almost 12 years ago
    • ๐Ÿ‘Œ Improvement: Changed Savon's core dependencies to be more strict and only allow bug fix changes. Major or minor releases of these dependencies now need a release of Savon so they can be used. This should improve the stability of the library and make it easier to update, because changes to these core dependencies will be documented here as well.

    • ๐Ÿ›  Fix: The latest version of Wasabi should now correctly detect the names of your operations. So you should be able to just get the names of some operation:

      client.wsdl.soap_actions
      # => [:authenticate, :find_user]
      

      and pass the Symbol to execute a request:

      client.request :authenticate, body: { token: "secret" }
      

      If you still pass anything other than a single Symbol to that method, please open an issue! You shouldn't need to specify a namespace or additional attributes for the tag.

    • ๐Ÿ”จ Refactoring: Moved code that sets the cookies from the last response for the next request to HTTPI::Request#set_cookies.