All Versions
81
Latest Version
Avg Release Cycle
62 days
Latest Release
-

Changelog History
Page 7

  • v0.3.0 Changes

    January 31, 2009
    • 1 major enhancement, 1 bug fix
      • JSON gem no longer a requirement. It was conflicting with rails json stuff so I just stole ActiveSupport's json decoding and bundled it with HTTParty.
      • Fixed bug where query strings were being duplicated on redirects
      • Added a bunch of specs and moved some code around.
  • v0.2.10 Changes

    January 29, 2009
    • 1 minor enhancement
      • Made encoding on query parameters treat everything except URI::PATTERN::UNRESERVED as UNSAFE to force encoding of '+' character (Julian Russell)
  • v0.2.9 Changes

    January 29, 2009
    • 3 minor enhancements
      • Added a 'headers' accessor to the response with a hash of any HTTP headers. (Don Peterson)
      • Add support for a ":cookies" option to be used at the class level, or as an option on any individual call. It should be passed a hash, which will be converted to the proper format and added to the request headers when the call is made. (Don Peterson)
      • Refactored several specs and added a full suite of cucumber features (Don Peterson)
  • v0.2.8 Changes

    January 28, 2009
    • 1 major fix
      • fixed major bug with response where it wouldn't iterate or really work at all with parsed responses
  • v0.2.7 Changes

    January 28, 2009
    • 🛠 2 minor fixes, 2 minor enhancements, 2 major enhancements
      • fixed undefined method add_node for nil class error that occasionally happened (juliocesar)
      • Handle nil or unexpected values better when typecasting. (Brian Landau)
      • More robust handling of mime types (Alex Vollmer)
      • Fixed support for specifying headers and added support for basic auth to CLI. (Alex Vollmer)
      • Added first class response object that includes original body and status code (Alex Vollmer)
      • Now parsing all response types as some non-200 responses provide important information, this means no more exception raising (Alex Vollmer)
  • v0.2.6 Changes

    January 05, 2009
    • 1 minor bug fix
      • added explicit require of time as Time#parse failed outside of rails (willcodeforfoo)
  • v0.2.5 Changes

    January 05, 2009
    • 1 major enhancement
      • Add command line interface to HTTParty (Alex Vollmer)
  • v0.2.4 Changes

    December 23, 2008
    • 1 bug fix
      • Fixed that mimetype detection was failing if no mimetype was returned from service (skippy)
  • v0.2.3 Changes

    December 23, 2008
    • 1 bug fix
      • Fixed typecasting class variable naming issue
  • v0.2.2 Changes

    December 08, 2008
    • 1 bug fix
      • Added the missing core extension hash method to_xml_attributes