- Your new line here. Mind the style of prefix used in the rest of the document.
- Segment declared types by namespace to distinguish distinct types by @RickSnyder in #57
- Adjust input parsing by @pcai in #122
- Relax faraday version restriction by @ChristopherBert in #120
- Fix input/output for style="rpc" operations (#119).
- Restore support for HTTPI (#117).
- Drop support for unsupported rubies (2.7 and below)
- Update to be compatible with Faraday (#116)
- Formally drop support for unsupported rubies (2.6 and below)
- Parse Input/Output When Operation Style is Document (#114)
- Change: Update HTTPI to 3.0 to remove the socksify dependency. (savonrb/httpi#225)
- Breaking: BC BREAKING: Revert "Add support for rpc encoded wsdl" (#103)
- Fix: Support escaped endpoint URLs (#100)
- Fix: Repair unlinked Markdown in the CHANGELOG
- Add: Link to the CHANGELOG in the RubyGems.org metadata
- Add: Link to the Rubydocs.info documentation in the RubyGems.org metadata
- Add: Support RPC-encoded WSDL (#63, @fernandes)
- Fix: Depend on addressable, for unescape to avoid a Ruby warning (#81 , @chaymaeBZ, @bvicenzo)
- Fix: #59 Turn
String
monkeypatches intoWasabi
class methods (@tjarratt) (released this version) - Change: Reduced size of gem by focusing the files list (#89, @utkarsh2102)
- Remove: No longer tested on Rubinius
NB: This version was never released to RubyGems.org.
- Fix: #59 Stop monkey patching the String class to provide #snakecase
- Formally drop support for ruby 1.8.7
- Fix: #634 Reverts PR #46, generates most operation names correctly.
- Fix: #48 Remove dependency on mime-type gem
- Feature: #44 adds a feature to specify the HTTPI adapter you'd like to use.
- Fix #39 fixes new regression in operation names. Huge thank you to #leoping for investigating this and issuing a pull request.
- Fix: #32 fixes a regression in operation names that was adversely affecting Savon: savonrb/savon#520
- Feature: Drops requirement for Nokogiri <= 1.6 for modern rubies. This was in place for ruby 1.8 but since support for that is going away, we shouldn't prevent users from using newer versions of Nokogiri.
-
Feature: #20 Limited support for listing an operation's parameters. Please note that if your WSDL defines imports, this method might not return all types.
-
Improvement: #7 Major speed improvements.
-
Improvement: #16 Various improvements regarding element order and type information.
-
Fix: #25 Fixes a problem where Wasabi escaped an already escaped endpoint URL.
-
Fix: #15 Fixes a bug where the operation tag name was not correctly extracted from the WSDL document.
-
Feature: #22 added
Wasabi::Document#service_name
to return the name of the SOAP service. Original issue: savonrb/savon#408. -
Fix: #21 when the Resolver gets an erroneous response (such as a 404), we now raise a more useful HTTPError.
-
Fix: #23 ignore extension base elements defined in imports.
- Updated to HTTPI 2.0 to play nicely with Savon 2.0.
-
Fix: #14 fixes an issue where finding the correct SOAP input tag and namespace identifier fails when portTypes are imported, since imports are currently not supported.
The bug was introduced in v2.2.0 by 583cf6
-
Refactoring: Removed
Object#blank?
core extension.
- Fix: #10 fixes an issue where Wasabi used the wrong operation name.
- Fix: savonrb/savon#296 fixes an issue where the WSDL message element doesn't have part element.
- Feature:
Wasabi::Document
now accepts either a URL of a remote document, a path to a local file or raw XML. The code for this was moved from Savon over here as a first step towards supporting WSDL imports.
- Improvement: #3 adds object inheritance.
- Improvement: #5 - Get input from message
element or portType input. See savonrb/savon#277
to get the full picture on how this all works together, and enables you to pass a single
symbol into the
Savon::Client#request
method and get automatic namespace mapping, as well as the proper operation name -> input message mapping.
- Fix: issue 7 - Performance regression.
-
Improvement: The value of elementFormDefault can now be manually specified/overwritten.
-
Improvement: issue 2 - Allow symbolic endpoints like "http://server:port".
- Feature: Wasabi can now parse type definitions and namespaces. Thanks to jkingdon for implementing this.
- Initial version extracted from the Savon library. Use it to build your own SOAP client and help to improve it!