2010-01-24 23:39:19 -05:00
== 0.5.1 (master)
2010-01-27 02:12:08 -05:00
* bug fixes
* Handle 304 response correctly by returning the HTTParty::Response object instead of redirecting (seth and hellvinz)
* Only redirect 300 responses if the header contains a Location
2010-01-24 23:39:19 -05:00
* minor enhancements
* HTTParty#debug_output prints debugging information for the current request (iwarshak)
2009-12-05 22:09:38 -05:00
== 0.5.0 2009-12-07
2009-11-29 03:04:33 -05:00
* bug fixes
* inheritable attributes no longer mutable by subclasses (yyyc514)
2009-12-05 22:09:38 -05:00
* namespace BasicObject within HTTParty to avoid class name collisions (eric)
2009-12-05 21:00:36 -05:00
* major enhancements
* Custom Parsers via class or proc
* Deprecation warning on HTTParty::AllowedFormats
moved to HTTParty::Parser::SupportedFormats
2009-11-09 22:17:44 -05:00
* minor enhancements
2009-11-12 13:54:10 -05:00
* Curl inspired output when using the binary in verbose mode (alexvollmer)
2009-11-19 23:39:36 -05:00
* raise UnsupportedURIScheme when scheme is not HTTP or HTTPS (djspinmonkey)
2009-11-20 00:04:39 -05:00
* Allow SSL for ports other than 443 when scheme is HTTPS (stefankroes)
2009-11-20 17:57:17 -05:00
* Accept PEM certificates via HTTParty#pem (chrislo)
2009-11-29 02:37:19 -05:00
* Support HEAD and OPTION verbs (grempe)
2009-11-29 02:51:18 -05:00
* Verify SSL certificates when providing a PEM file (collectiveidea/danielmorrison)
2009-11-09 22:17:44 -05:00
2009-09-12 23:13:19 -04:00
== 0.4.5 2009-09-12
2009-09-08 22:52:54 -04:00
* bug fixes
* Fixed class-level headers overwritten by cookie management code. Closes #19
2009-09-09 00:11:05 -04:00
* Fixed "superclass mismatch for class BlankSlate" error. Closes #20
2009-09-10 23:31:07 -04:00
* Fixed reading files as post data from the command line (vesan)
* minor enhancements
2009-09-12 22:43:56 -04:00
* Timeout option added; will raise a Timeout::Error after the timeout has elapsed (attack). Closes #17
HTTParty.get "http://github.com", :timeout => 1
2009-09-09 00:11:05 -04:00
* Building gem with Jeweler
2009-08-22 10:25:32 -04:00
2009-07-19 20:12:55 -04:00
== 0.4.4 2009-07-19
* 2 minor update
2009-07-19 18:47:14 -04:00
* :query no longer sets form data. Use body and set content type to application/x-www-form-urlencoded if you need it. :query was wrong for that.
2009-07-19 20:12:55 -04:00
* Fixed a bug in the cookies class method that caused cookies to be forgotten after the first request.
* Also, some general cleanup of tests and such.
2009-07-19 18:47:14 -04:00
2009-07-19 20:12:55 -04:00
== 0.4.3 2009-04-23
2009-04-23 11:28:36 -04:00
* 1 minor update
* added message to the response object
== 0.4.2 2009-03-30
2009-04-02 11:34:52 -04:00
* 2 minor changes
2009-04-02 11:30:00 -04:00
* response code now returns an integer instead of a string (jqr)
2009-04-02 11:34:52 -04:00
* rubyforge project setup for crack so i'm now depending on that instead of jnunemaker-crack
2009-04-02 11:30:00 -04:00
2009-03-29 10:15:57 -04:00
== 0.4.1 2009-03-29
* 1 minor fix
* gem 'jnunemaker-crack' instead of gem 'crack'
2009-03-29 00:33:23 -04:00
== 0.4.0 2009-03-29
* 1 minor change
* Switched xml and json parsing to crack (same code as before just moved to gem for easier reuse in other projects)
2009-02-10 23:39:39 -05:00
== 0.3.1 2009-02-10
* 1 minor fix, 1 minor enhancement
* Fixed unescaping umlauts (siebertm)
* Added yaml response parsing (Miha Filej)
2009-01-31 00:35:46 -05:00
== 0.3.0 2009-01-31
2009-01-31 01:34:02 -05:00
* 1 major enhancement, 1 bug fix
2009-01-31 00:35:46 -05:00
* 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.
2009-01-31 01:34:02 -05:00
* Fixed bug where query strings were being duplicated on redirects
2009-01-31 01:59:16 -05:00
* Added a bunch of specs and moved some code around.
2009-01-31 00:35:46 -05:00
2009-01-29 23:07:27 -05:00
== 0.2.10 2009-01-29
* 1 minor enhancement
* Made encoding on query parameters treat everything except URI::PATTERN::UNRESERVED as UNSAFE to force encoding of '+' character (Julian Russell)
2009-01-29 04:20:55 -05:00
== 0.2.9 2009-01-29
2009-01-29 04:24:42 -05:00
* 3 minor enhancements
2009-01-29 04:20:55 -05:00
* 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)
2009-01-29 04:24:42 -05:00
* Refactored several specs and added a full suite of cucumber features (Don Peterson)
2009-01-28 16:16:43 -05:00
== 0.2.8 2009-01-28
* 1 major fix
* fixed major bug with response where it wouldn't iterate or really work at all with parsed responses
2009-01-28 12:55:25 -05:00
== 0.2.7 2009-01-28
2009-01-28 14:50:26 -05:00
* 2 minor fixes, 2 minor enhancements, 2 major enhancements
2009-01-28 12:55:25 -05:00
* fixed undefined method add_node for nil class error that occasionally happened (juliocesar)
2009-01-28 13:13:10 -05:00
* Handle nil or unexpected values better when typecasting. (Brian Landau)
2009-01-28 14:06:46 -05:00
* More robust handling of mime types (Alex Vollmer)
2009-01-28 14:50:26 -05:00
* Fixed support for specifying headers and added support for basic auth to CLI. (Alex Vollmer)
2009-01-28 14:40:15 -05:00
* 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)
2009-01-28 12:55:25 -05:00
2009-01-05 11:56:29 -05:00
== 0.2.6 2009-01-05
* 1 minor bug fix
* added explicit require of time as Time#parse failed outside of rails (willcodeforfoo)
2009-01-05 01:46:36 -05:00
== 0.2.5 2009-01-05
* 1 major enhancement
* Add command line interface to HTTParty (Alex Vollmer)
2008-12-23 13:10:40 -05:00
== 0.2.4 2008-12-23
* 1 bug fix
* Fixed that mimetype detection was failing if no mimetype was returned from service (skippy)
2008-12-23 12:43:13 -05:00
== 0.2.3 2008-12-23
* 1 bug fix
* Fixed typecasting class variable naming issue
2008-12-08 21:30:26 -05:00
== 0.2.2 2008-12-08
* 1 bug fix
* Added the missing core extension hash method to_xml_attributes
2008-12-08 21:19:48 -05:00
== 0.2.1 2008-12-08
* 1 bug fix
* Fixed that HTTParty was borking ActiveSupport and as such Rails (thanks to Rob Sanheim)
2008-12-07 00:02:51 -05:00
== 0.2.0 2008-12-07
* 1 major enhancement
* Removed ActiveSupport as a dependency. Now requires json gem for json deserialization and uses an included class to do the xml parsing.
2008-12-01 09:44:30 -05:00
== 0.1.8 2008-11-30
2008-12-05 17:24:01 -05:00
* 3 major enhancements
2008-12-01 09:44:30 -05:00
* Moved base_uri normalization into request class and out of httparty module, fixing
the problem where base_uri was not always being normalized.
2008-12-05 16:42:38 -05:00
* Stupid simple support for HTTParty.get/post/put/delete. (jqr)
2008-12-05 17:24:01 -05:00
* Switched gem management to Echoe from newgem.
2008-12-01 09:44:30 -05:00
2008-11-30 23:59:28 -05:00
== 0.1.7 2008-11-30
* 1 major enhancement
* fixed multiple class definitions overriding each others options
2008-11-26 01:26:32 -05:00
== 0.1.6 2008-11-26
* 1 major enhancement
* now passing :query to set_form_data if post request to avoid content length errors
2008-11-14 14:06:55 -05:00
== 0.1.5 2008-11-14
2008-11-14 14:08:45 -05:00
* 2 major enhancements
2008-11-14 14:06:55 -05:00
* Refactored send request method out into its own object.
2008-11-14 14:08:45 -05:00
* Added :html format if you just want to do that.
2008-11-14 14:06:55 -05:00
2008-11-08 11:01:44 -05:00
== 0.1.4 2008-11-08
2008-11-14 14:06:55 -05:00
* 3 major enhancements:
2008-11-08 11:01:44 -05:00
* Removed some cruft
2008-11-08 11:30:26 -05:00
* Added ability to follow redirects automatically and turn that off (Alex Vollmer)
2008-11-08 11:01:44 -05:00
2008-08-22 21:50:51 -04:00
== 0.1.3 2008-08-22
2008-08-18 15:48:54 -04:00
2008-08-22 21:50:51 -04:00
* 3 major enhancements:
* Added http_proxy key for setting proxy server and port (francxk@gmail.com)
* Now raises exception when http error occurs (francxk@gmail.com)
* Changed auto format detection from file extension to response content type (Jay Pignata)
2008-08-18 15:48:54 -04:00
2008-08-09 15:20:32 -04:00
== 0.1.2 2008-08-09
* 1 major enhancement:
* default_params were not being appended to query string if option[:query] was blank
2008-07-31 00:05:36 -04:00
== 0.1.1 2008-07-30
2008-07-31 00:24:29 -04:00
* 2 major enhancement:
2008-07-31 00:05:36 -04:00
* Added :basic_auth key for options when making a request
2008-07-31 00:24:29 -04:00
* :query and :body both now work with query string or hash
2008-07-31 00:05:36 -04:00
2008-07-28 17:01:51 -04:00
== 0.1.0 2008-07-27
2008-07-27 11:52:18 -04:00
* 1 major enhancement:
2009-11-09 22:17:44 -05:00
* Initial release