httparty 0.20.0 → 0.22.0

Sign up to get free protection for your applications and to get access to all the features.
data/Changelog.md CHANGED
@@ -1,36 +1,45 @@
1
+ # Changelog
2
+
3
+ All notable [changes since 0.22 are documented in GitHub Releases](https://github.com/jnunemaker/httparty/releases).
4
+
5
+ ## 0.21.0
6
+
7
+ - [escape filename in the multipart/form-data Content-Disposition header](https://github.com/jnunemaker/httparty/commit/cdb45a678c43e44570b4e73f84b1abeb5ec22b8e)
8
+ - [Fix request marshaling](https://github.com/jnunemaker/httparty/pull/767)
9
+ - [Replace `mime-types` with `mini_mime`](https://github.com/jnunemaker/httparty/pull/769)
10
+
1
11
  ## 0.20.0
2
12
 
3
13
  Breaking changes
4
14
 
5
- * Require Ruby >= 2.3.0
15
+ - Require Ruby >= 2.3.0
6
16
 
7
17
  Fixes
8
18
 
9
- * [`Marshal.dump` fails on response objects when request option `:logger` is set or `:parser` is a proc](https://github.com/jnunemaker/httparty/pull/714)
10
- * [Switch `:pem` option to to `OpenSSL::PKey.read` to support other algorithms](https://github.com/jnunemaker/httparty/pull/720)
19
+ - [`Marshal.dump` fails on response objects when request option `:logger` is set or `:parser` is a proc](https://github.com/jnunemaker/httparty/pull/714)
20
+ - [Switch `:pem` option to to `OpenSSL::PKey.read` to support other algorithms](https://github.com/jnunemaker/httparty/pull/720)
11
21
 
12
22
  ## 0.19.1
13
23
 
14
- * [Remove use of unary + method for creating non-frozen string to increase compatibility with older versions of ruby](https://github.com/jnunemaker/httparty/commit/4416141d37fd71bdba4f37589ec265f55aa446ce)
24
+ - [Remove use of unary + method for creating non-frozen string to increase compatibility with older versions of ruby](https://github.com/jnunemaker/httparty/commit/4416141d37fd71bdba4f37589ec265f55aa446ce)
15
25
 
16
26
  ## 0.19.0
17
27
 
18
- * [Multipart/Form-Data: rewind files after read](https://github.com/jnunemaker/httparty/pull/709)
19
- * [add frozen_string_literal pragma to all files](https://github.com/jnunemaker/httparty/pull/711)
20
- * [Better handling of Accept-Encoding / Content-Encoding decompression (fixes #562)](https://github.com/jnunemaker/httparty/pull/729)
28
+ - [Multipart/Form-Data: rewind files after read](https://github.com/jnunemaker/httparty/pull/709)
29
+ - [add frozen_string_literal pragma to all files](https://github.com/jnunemaker/httparty/pull/711)
30
+ - [Better handling of Accept-Encoding / Content-Encoding decompression (fixes #562)](https://github.com/jnunemaker/httparty/pull/729)
21
31
 
22
32
  ## 0.18.1
23
33
 
24
- * [Rename cop Lint/HandleExceptions to Lint/SuppressedException](https://github.com/jnunemaker/httparty/pull/699).
25
- * [Encode keys in query params](https://github.com/jnunemaker/httparty/pull/698).
26
- * [Fixed SSL doc example](https://github.com/jnunemaker/httparty/pull/692).
27
- * [Add a build status badge](https://github.com/jnunemaker/httparty/pull/701).
28
-
34
+ - [Rename cop Lint/HandleExceptions to Lint/SuppressedException](https://github.com/jnunemaker/httparty/pull/699).
35
+ - [Encode keys in query params](https://github.com/jnunemaker/httparty/pull/698).
36
+ - [Fixed SSL doc example](https://github.com/jnunemaker/httparty/pull/692).
37
+ - [Add a build status badge](https://github.com/jnunemaker/httparty/pull/701).
29
38
 
30
39
  ## 0.18.0
31
40
 
32
- * [Support gzip/deflate transfer encoding when explicit headers are set](https://github.com/jnunemaker/httparty/pull/678).
33
- * [Support edge case cookie format with a blank attribute](https://github.com/jnunemaker/httparty/pull/685).
41
+ - [Support gzip/deflate transfer encoding when explicit headers are set](https://github.com/jnunemaker/httparty/pull/678).
42
+ - [Support edge case cookie format with a blank attribute](https://github.com/jnunemaker/httparty/pull/685).
34
43
 
35
44
  ## 0.17.3
36
45
 
@@ -38,514 +47,578 @@ Fixes
38
47
 
39
48
  ## 0.17.2
40
49
 
41
- * [Add Response#nil? deprecetion warning](https://github.com/jnunemaker/httparty/pull/680)
50
+ - [Add Response#nil? deprecetion warning](https://github.com/jnunemaker/httparty/pull/680)
42
51
 
43
52
  ## 0.17.1
44
53
 
45
- * [Pass options to dynamic block headers](https://github.com/jnunemaker/httparty/pull/661)
46
- * [Normalize urls with URI adapter to allow International Domain Names support](https://github.com/jnunemaker/httparty/pull/668)
47
- * [Add max_retries support](https://github.com/jnunemaker/httparty/pull/660)
48
- * [Minize gem size by removing test files](https://github.com/jnunemaker/httparty/pull/658)
54
+ - [Pass options to dynamic block headers](https://github.com/jnunemaker/httparty/pull/661)
55
+ - [Normalize urls with URI adapter to allow International Domain Names support](https://github.com/jnunemaker/httparty/pull/668)
56
+ - [Add max_retries support](https://github.com/jnunemaker/httparty/pull/660)
57
+ - [Minize gem size by removing test files](https://github.com/jnunemaker/httparty/pull/658)
49
58
 
50
59
  ## 0.17.0
51
60
 
52
- * [Fix encoding of streamed chunk](https://github.com/jnunemaker/httparty/pull/644)
53
- * [Avoid modifying frozen strings](https://github.com/jnunemaker/httparty/pull/649)
54
- * [Expose .connection on fragment block param](https://github.com/jnunemaker/httparty/pull/648)
55
- * [Add support for `Net::HTTP#write_timeout` method (Ruby 2.6.0)](https://github.com/jnunemaker/httparty/pull/647)
61
+ - [Fix encoding of streamed chunk](https://github.com/jnunemaker/httparty/pull/644)
62
+ - [Avoid modifying frozen strings](https://github.com/jnunemaker/httparty/pull/649)
63
+ - [Expose .connection on fragment block param](https://github.com/jnunemaker/httparty/pull/648)
64
+ - [Add support for `Net::HTTP#write_timeout` method (Ruby 2.6.0)](https://github.com/jnunemaker/httparty/pull/647)
56
65
 
57
66
  ## 0.16.4
58
- * [Add support for Ruby 2.6](https://github.com/jnunemaker/httparty/pull/636)
59
- * [Fix a few multipart issues](https://github.com/jnunemaker/httparty/pull/626)
60
- * [Improve a memory usage for https requests](https://github.com/jnunemaker/httparty/pull/625)
61
- * [Add response code to streamed body](https://github.com/jnunemaker/httparty/pull/588)
67
+
68
+ - [Add support for Ruby 2.6](https://github.com/jnunemaker/httparty/pull/636)
69
+ - [Fix a few multipart issues](https://github.com/jnunemaker/httparty/pull/626)
70
+ - [Improve a memory usage for https requests](https://github.com/jnunemaker/httparty/pull/625)
71
+ - [Add response code to streamed body](https://github.com/jnunemaker/httparty/pull/588)
62
72
 
63
73
  ## 0.16.3
64
- * [Add Logstash-compatible formatter](https://github.com/jnunemaker/httparty/pull/612)
65
- * [Add support for headers specified with symbols](https://github.com/jnunemaker/httparty/pull/622)
66
- * [Fix response object marshalling](https://github.com/jnunemaker/httparty/pull/618)
67
- * [Add ability to send multipart, without passing file](https://github.com/jnunemaker/httparty/pull/615)
68
- * [Fix detection of content_type for multipart payload](https://github.com/jnunemaker/httparty/pull/616)
69
- * [Process dynamic headers before making actual request](https://github.com/jnunemaker/httparty/pull/606)
70
- * [Fix multipart uploads with ActionDispatch::Http::UploadedFile TempFile by using original_filename](https://github.com/jnunemaker/httparty/pull/598)
71
- * [Added support for lock and unlock http requests](https://github.com/jnunemaker/httparty/pull/596)
74
+
75
+ - [Add Logstash-compatible formatter](https://github.com/jnunemaker/httparty/pull/612)
76
+ - [Add support for headers specified with symbols](https://github.com/jnunemaker/httparty/pull/622)
77
+ - [Fix response object marshalling](https://github.com/jnunemaker/httparty/pull/618)
78
+ - [Add ability to send multipart, without passing file](https://github.com/jnunemaker/httparty/pull/615)
79
+ - [Fix detection of content_type for multipart payload](https://github.com/jnunemaker/httparty/pull/616)
80
+ - [Process dynamic headers before making actual request](https://github.com/jnunemaker/httparty/pull/606)
81
+ - [Fix multipart uploads with ActionDispatch::Http::UploadedFile TempFile by using original_filename](https://github.com/jnunemaker/httparty/pull/598)
82
+ - [Added support for lock and unlock http requests](https://github.com/jnunemaker/httparty/pull/596)
72
83
 
73
84
  ## 0.16.2
74
85
 
75
- * [Support ActionDispatch::Http::UploadedFile again](https://github.com/jnunemaker/httparty/pull/585)
86
+ - [Support ActionDispatch::Http::UploadedFile again](https://github.com/jnunemaker/httparty/pull/585)
76
87
 
77
88
  ## 0.16.1
78
89
 
79
- * [Parse content with application/hal+json content type as JSON](https://github.com/jnunemaker/httparty/pull/573)
80
- * [Convert objects to string when concatenating in multipart stuff](https://github.com/jnunemaker/httparty/pull/575)
81
- * [Fix multipart to set its header even when other headers are provided](https://github.com/jnunemaker/httparty/pull/576)
90
+ - [Parse content with application/hal+json content type as JSON](https://github.com/jnunemaker/httparty/pull/573)
91
+ - [Convert objects to string when concatenating in multipart stuff](https://github.com/jnunemaker/httparty/pull/575)
92
+ - [Fix multipart to set its header even when other headers are provided](https://github.com/jnunemaker/httparty/pull/576)
82
93
 
83
94
  ## 0.16.0
84
95
 
85
- * [Add multipart support](https://github.com/jnunemaker/httparty/pull/569)
96
+ - [Add multipart support](https://github.com/jnunemaker/httparty/pull/569)
86
97
 
87
98
  ## 0.15.7
88
99
 
89
100
  Fixed
90
101
 
91
- * [Add Response#pretty_print | Restore documented behavior](https://github.com/jnunemaker/httparty/pull/570)
92
- * [Add ability to parse response from JSONAPI ](https://github.com/jnunemaker/httparty/pull/553)
102
+ - [Add Response#pretty_print | Restore documented behavior](https://github.com/jnunemaker/httparty/pull/570)
103
+ - [Add ability to parse response from JSONAPI ](https://github.com/jnunemaker/httparty/pull/553)
93
104
 
94
105
  ## 0.15.6
95
106
 
96
107
  Fixed
97
108
 
98
- * [Encoding and content type stuff](https://github.com/jnunemaker/httparty/pull/543)
109
+ - [Encoding and content type stuff](https://github.com/jnunemaker/httparty/pull/543)
99
110
 
100
111
  ## 0.15.5
101
112
 
102
113
  Fixed
103
114
 
104
- * [Use non-destructive gsub](https://github.com/jnunemaker/httparty/pull/540)
115
+ - [Use non-destructive gsub](https://github.com/jnunemaker/httparty/pull/540)
105
116
 
106
117
  ## 0.15.4
107
118
 
108
119
  Fixed
109
120
 
110
- * Prevent gsub errors with different encodings.
111
- * Prevent passing nil to encode_body.
121
+ - Prevent gsub errors with different encodings.
122
+ - Prevent passing nil to encode_body.
112
123
 
113
124
  ## 0.15.3
114
125
 
115
126
  Fixed
116
127
 
117
- * [Fix processing nil body for HEAD requests](https://github.com/jnunemaker/httparty/pull/530).
118
- * Add missing require to headers.rb (33439a8).
128
+ - [Fix processing nil body for HEAD requests](https://github.com/jnunemaker/httparty/pull/530).
129
+ - Add missing require to headers.rb (33439a8).
119
130
 
120
131
  ## 0.15.2
121
132
 
122
133
  Fixed
123
134
 
124
- * Remove symlink from specs. It was reportedly still getting bundled with gem.
135
+ - Remove symlink from specs. It was reportedly still getting bundled with gem.
125
136
 
126
137
  ## 0.15.1
127
138
 
128
139
  Fixed
129
140
 
130
- * Stop including test files in gem. Fixes installation issues on windows due to symlink in spec dir.
141
+ - Stop including test files in gem. Fixes installation issues on windows due to symlink in spec dir.
131
142
 
132
143
  ## 0.15.0
133
144
 
134
145
  Breaking Changes
135
146
 
136
- * require Ruby >= 2.0.0
147
+ - require Ruby >= 2.0.0
137
148
 
138
149
  Fixed
139
150
 
140
- * [fix numerous bugs](https://github.com/jnunemaker/httparty/pull/513)
141
- * [handle utf-8 bom for json parsing](https://github.com/jnunemaker/httparty/pull/520)
142
- * [do not overwrite default headers unless specified](https://github.com/jnunemaker/httparty/pull/518)
151
+ - [fix numerous bugs](https://github.com/jnunemaker/httparty/pull/513)
152
+ - [handle utf-8 bom for json parsing](https://github.com/jnunemaker/httparty/pull/520)
153
+ - [do not overwrite default headers unless specified](https://github.com/jnunemaker/httparty/pull/518)
143
154
 
144
155
  ## 0.14.0
145
156
 
146
157
  Breaking Changes
147
158
 
148
- * None
159
+ - None
149
160
 
150
161
  Added
151
162
 
152
- * [added status predicate methods to Response#respond_to?](https://github.com/jnunemaker/httparty/pull/482)
153
- * [support for MKCOL method](https://github.com/jnunemaker/httparty/pull/465)
154
- * one fewer dependency: [remove json gem from gemspec](https://github.com/jnunemaker/httparty/pull/464)
155
- * [optional raising exception on certain status codes](https://github.com/jnunemaker/httparty/pull/455)
163
+ - [added status predicate methods to Response#respond_to?](https://github.com/jnunemaker/httparty/pull/482)
164
+ - [support for MKCOL method](https://github.com/jnunemaker/httparty/pull/465)
165
+ - one fewer dependency: [remove json gem from gemspec](https://github.com/jnunemaker/httparty/pull/464)
166
+ - [optional raising exception on certain status codes](https://github.com/jnunemaker/httparty/pull/455)
156
167
 
157
168
  Fixed
158
169
 
159
- * [allow empty array to be used as param](https://github.com/jnunemaker/httparty/pull/477)
160
- * [stop mutating cookie hash](https://github.com/jnunemaker/httparty/pull/460)
170
+ - [allow empty array to be used as param](https://github.com/jnunemaker/httparty/pull/477)
171
+ - [stop mutating cookie hash](https://github.com/jnunemaker/httparty/pull/460)
161
172
 
162
173
  ## 0.13.7 aka "party not as hard"
163
- * remove post install emoji as it caused installation issues for some people
174
+
175
+ - remove post install emoji as it caused installation issues for some people
164
176
 
165
177
  ## 0.13.6
166
- * avoid calling String#strip on invalid Strings
167
- * preserve request method on 307 and 308 redirects
168
- * output version with --version for command line bin
169
- * maintain head request method across redirects by default
170
- * add support for RFC2617 MD5-sess algorithm type
171
- * add party popper emoji to post install message
178
+
179
+ - avoid calling String#strip on invalid Strings
180
+ - preserve request method on 307 and 308 redirects
181
+ - output version with --version for command line bin
182
+ - maintain head request method across redirects by default
183
+ - add support for RFC2617 MD5-sess algorithm type
184
+ - add party popper emoji to post install message
172
185
 
173
186
  ## 0.13.5
174
- * allow setting a custom URI adapter
187
+
188
+ - allow setting a custom URI adapter
175
189
 
176
190
  ## 0.13.4
177
- * correct redirect url for redirect paths without leading slash
178
- * remove core_extensions.rb as backwards compat for ruby 1.8 not needed
179
- * replace URI.encode with ERB::Util.url_encode
180
- * allow the response to be tapped
191
+
192
+ - correct redirect url for redirect paths without leading slash
193
+ - remove core_extensions.rb as backwards compat for ruby 1.8 not needed
194
+ - replace URI.encode with ERB::Util.url_encode
195
+ - allow the response to be tapped
181
196
 
182
197
  ## 0.13.3
183
- * minor improvement
184
- * added option to allow for streaming large files without loading them into memory (672cdae)
198
+
199
+ - minor improvement
200
+ - added option to allow for streaming large files without loading them into memory (672cdae)
185
201
 
186
202
  ## 0.13.2
187
- * minor improvement
188
- * [Set correct path on redirect to filename](https://github.com/jnunemaker/httparty/pull/337)
189
- * ensure logger works with curl format
203
+
204
+ - minor improvement
205
+ - [Set correct path on redirect to filename](https://github.com/jnunemaker/httparty/pull/337)
206
+ - ensure logger works with curl format
190
207
 
191
208
  ## 0.13.1 2014-04-08
192
- * new
193
- * [Added ability to specify a body_stream in HttpRequest](https://github.com/jnunemaker/httparty/pull/275)
194
- * [Added read_timeout and open_timeout options](https://github.com/jnunemaker/httparty/pull/278)
195
- * change
196
- * [Initialize HTTParty requests with an URI object and a String](https://github.com/jnunemaker/httparty/pull/274)
197
- * minor improvement
198
- * [Add stackexchange API example](https://github.com/jnunemaker/httparty/pull/280)
209
+
210
+ - new
211
+ - [Added ability to specify a body_stream in HttpRequest](https://github.com/jnunemaker/httparty/pull/275)
212
+ - [Added read_timeout and open_timeout options](https://github.com/jnunemaker/httparty/pull/278)
213
+ - change
214
+ - [Initialize HTTParty requests with an URI object and a String](https://github.com/jnunemaker/httparty/pull/274)
215
+ - minor improvement
216
+ - [Add stackexchange API example](https://github.com/jnunemaker/httparty/pull/280)
199
217
 
200
218
  ## 0.13.0 2014-02-14
201
- * new
202
- * [Add CSV support](https://github.com/jnunemaker/httparty/pull/269)
203
- * [Allows PKCS12 client certificates](https://github.com/jnunemaker/httparty/pull/246)
204
- * bug fix
205
- * [Digest auth no longer fails when multiple headers are sent by the server](https://github.com/jnunemaker/httparty/pull/272)
206
- * [Use 'Basement.copy' when calling 'HTTParty.copy'](https://github.com/jnunemaker/httparty/pull/268)
207
- * [No longer appends ampersand when queries are embedded in paths](https://github.com/jnunemaker/httparty/pull/252)
208
- * change
209
- * [Merge - instead of overwrite - default headers with request provided headers](https://github.com/jnunemaker/httparty/pull/270)
210
- * [Modernize respond_to implementations to support second param](https://github.com/jnunemaker/httparty/pull/264)
211
- * [Sort query parameters by key before processing](https://github.com/jnunemaker/httparty/pull/245)
212
- * minor improvement
213
- * [Add HTTParty::Error base class](https://github.com/jnunemaker/httparty/pull/260)
219
+
220
+ - new
221
+ - [Add CSV support](https://github.com/jnunemaker/httparty/pull/269)
222
+ - [Allows PKCS12 client certificates](https://github.com/jnunemaker/httparty/pull/246)
223
+ - bug fix
224
+ - [Digest auth no longer fails when multiple headers are sent by the server](https://github.com/jnunemaker/httparty/pull/272)
225
+ - [Use 'Basement.copy' when calling 'HTTParty.copy'](https://github.com/jnunemaker/httparty/pull/268)
226
+ - [No longer appends ampersand when queries are embedded in paths](https://github.com/jnunemaker/httparty/pull/252)
227
+ - change
228
+ - [Merge - instead of overwrite - default headers with request provided headers](https://github.com/jnunemaker/httparty/pull/270)
229
+ - [Modernize respond_to implementations to support second param](https://github.com/jnunemaker/httparty/pull/264)
230
+ - [Sort query parameters by key before processing](https://github.com/jnunemaker/httparty/pull/245)
231
+ - minor improvement
232
+ - [Add HTTParty::Error base class](https://github.com/jnunemaker/httparty/pull/260)
214
233
 
215
234
  ## 0.12.0 2013-10-10
216
- * new
217
- * [Added initial logging support](https://github.com/jnunemaker/httparty/pull/243)
218
- * [Add support for local host and port binding](https://github.com/jnunemaker/httparty/pull/238)
219
- * [content_type_charset_support](https://github.com/jnunemaker/httparty/commit/82e351f0904e8ecc856015ff2854698a2ca47fbc)
220
- * bug fix
221
- * [No longer attempt to decompress the body on HEAD requests](https://github.com/jnunemaker/httparty/commit/f2b8cc3d49e0e9363d7054b14f30c340d7b8e7f1)
222
- * [Adding java check in aliasing of multiple choices](https://github.com/jnunemaker/httparty/pull/204/commits)
223
- * change
224
- * [MIME-type files of javascript are returned as a string instead of JSON](https://github.com/jnunemaker/httparty/pull/239)
225
- * [Made SSL connections use the system certificate store by default](https://github.com/jnunemaker/httparty/pull/226)
226
- * [Do not pass proxy options to Net::HTTP connection if not specified](https://github.com/jnunemaker/httparty/pull/222)
227
- * [Replace multi_json with stdlib json](https://github.com/jnunemaker/httparty/pull/214)
228
- * [Require Ruby >= 1.9.3]
229
- * [Response returns array of returned cookie strings](https://github.com/jnunemaker/httparty/pull/218)
230
- * [Allow '=' within value of a cookie]
231
- * minor improvements
232
- * [Improve documentation of ssl_ca_file, ssl_ca_path](https://github.com/jnunemaker/httparty/pull/223)
233
- * [Fix example URLs](https://github.com/jnunemaker/httparty/pull/232)
235
+
236
+ - new
237
+ - [Added initial logging support](https://github.com/jnunemaker/httparty/pull/243)
238
+ - [Add support for local host and port binding](https://github.com/jnunemaker/httparty/pull/238)
239
+ - [content_type_charset_support](https://github.com/jnunemaker/httparty/commit/82e351f0904e8ecc856015ff2854698a2ca47fbc)
240
+ - bug fix
241
+ - [No longer attempt to decompress the body on HEAD requests](https://github.com/jnunemaker/httparty/commit/f2b8cc3d49e0e9363d7054b14f30c340d7b8e7f1)
242
+ - [Adding java check in aliasing of multiple choices](https://github.com/jnunemaker/httparty/pull/204/commits)
243
+ - change
244
+ - [MIME-type files of javascript are returned as a string instead of JSON](https://github.com/jnunemaker/httparty/pull/239)
245
+ - [Made SSL connections use the system certificate store by default](https://github.com/jnunemaker/httparty/pull/226)
246
+ - [Do not pass proxy options to Net::HTTP connection if not specified](https://github.com/jnunemaker/httparty/pull/222)
247
+ - [Replace multi_json with stdlib json](https://github.com/jnunemaker/httparty/pull/214)
248
+ - [Require Ruby >= 1.9.3]
249
+ - [Response returns array of returned cookie strings](https://github.com/jnunemaker/httparty/pull/218)
250
+ - [Allow '=' within value of a cookie]
251
+ - minor improvements
252
+ - [Improve documentation of ssl_ca_file, ssl_ca_path](https://github.com/jnunemaker/httparty/pull/223)
253
+ - [Fix example URLs](https://github.com/jnunemaker/httparty/pull/232)
234
254
 
235
255
  ## 0.11.0 2013-04-10
236
- * new
237
- * [Add COPY http request handling](https://github.com/jnunemaker/httparty/pull/190)
238
- * [Ruby 2.0 tests](https://github.com/jnunemaker/httparty/pull/194)
239
- * [Ruby >= 2.0.0 support both multiple_choice? and multiple_choices?]
240
- * bug fix
241
- * [Maintain blocks passed to 'perform' in redirects](https://github.com/jnunemaker/httparty/pull/191)
242
- * [Fixed nc value being quoted, this was against spec](https://github.com/jnunemaker/httparty/pull/196)
243
- * [Request#uri no longer duplicates non-relative-path params](https://github.com/jnunemaker/httparty/pull/189)
244
- * change
245
- * [Client-side-only cookie attributes are removed: case-insensitive](https://github.com/jnunemaker/httparty/pull/188)
256
+
257
+ - new
258
+ - [Add COPY http request handling](https://github.com/jnunemaker/httparty/pull/190)
259
+ - [Ruby 2.0 tests](https://github.com/jnunemaker/httparty/pull/194)
260
+ - [Ruby >= 2.0.0 support both multiple_choice? and multiple_choices?]
261
+ - bug fix
262
+ - [Maintain blocks passed to 'perform' in redirects](https://github.com/jnunemaker/httparty/pull/191)
263
+ - [Fixed nc value being quoted, this was against spec](https://github.com/jnunemaker/httparty/pull/196)
264
+ - [Request#uri no longer duplicates non-relative-path params](https://github.com/jnunemaker/httparty/pull/189)
265
+ - change
266
+ - [Client-side-only cookie attributes are removed: case-insensitive](https://github.com/jnunemaker/httparty/pull/188)
246
267
 
247
268
  ## 0.10.2 2013-01-26
248
- * bug fix
249
- * [hash_conversions misnamed variable](https://github.com/jnunemaker/httparty/pull/187)
269
+
270
+ - bug fix
271
+ - [hash_conversions misnamed variable](https://github.com/jnunemaker/httparty/pull/187)
250
272
 
251
273
  ## 0.10.1 2013-01-26
252
- * new
253
- * [Added support for MOVE requests](https://github.com/jnunemaker/httparty/pull/183)
254
- * [Bump multi xml version](https://github.com/jnunemaker/httparty/pull/181)
274
+
275
+ - new
276
+ - [Added support for MOVE requests](https://github.com/jnunemaker/httparty/pull/183)
277
+ - [Bump multi xml version](https://github.com/jnunemaker/httparty/pull/181)
255
278
 
256
279
  ## 0.10.0 2013-01-10
257
- * changes
258
- * removed yaml support because of security risk (see rails yaml issues)
280
+
281
+ - changes
282
+ - removed yaml support because of security risk (see rails yaml issues)
259
283
 
260
284
  ## 0.9.0 2012-09-07
261
- * new
262
- * [support for connection adapters](https://github.com/jnunemaker/httparty/pull/157)
263
- * [allow ssl_version on ruby 1.9](https://github.com/jnunemaker/httparty/pull/159)
264
- * bug fixes
265
- * [don't treat port 4430 as ssl](https://github.com/jnunemaker/httparty/commit/a296b1c97f83d7dcc6ef85720a43664c265685ac)
266
- * [deep clone default options](https://github.com/jnunemaker/httparty/commit/f74227d30f9389b4b23a888c9af49fb9b8248e1f)
267
- * a few net digest auth fixes
285
+
286
+ - new
287
+ - [support for connection adapters](https://github.com/jnunemaker/httparty/pull/157)
288
+ - [allow ssl_version on ruby 1.9](https://github.com/jnunemaker/httparty/pull/159)
289
+ - bug fixes
290
+ - [don't treat port 4430 as ssl](https://github.com/jnunemaker/httparty/commit/a296b1c97f83d7dcc6ef85720a43664c265685ac)
291
+ - [deep clone default options](https://github.com/jnunemaker/httparty/commit/f74227d30f9389b4b23a888c9af49fb9b8248e1f)
292
+ - a few net digest auth fixes
268
293
 
269
294
  ## 0.8.3 2012-04-21
270
- * new
271
- * [lazy parsing of responses](https://github.com/jnunemaker/httparty/commit/9fd5259c8dab00e426082b66af44ede2c9068f45)
272
- * [add support for PATCH requests](https://github.com/jnunemaker/httparty/commit/7ab6641e37a9e31517e46f6124f38c615395d38a)
273
- * bug fixes
274
- * [subclasses no longer override superclass options](https://github.com/jnunemaker/httparty/commit/682af8fbf672e7b3009e650da776c85cdfe78d39)
295
+
296
+ - new
297
+ - [lazy parsing of responses](https://github.com/jnunemaker/httparty/commit/9fd5259c8dab00e426082b66af44ede2c9068f45)
298
+ - [add support for PATCH requests](https://github.com/jnunemaker/httparty/commit/7ab6641e37a9e31517e46f6124f38c615395d38a)
299
+ - bug fixes
300
+ - [subclasses no longer override superclass options](https://github.com/jnunemaker/httparty/commit/682af8fbf672e7b3009e650da776c85cdfe78d39)
275
301
 
276
302
  ## 0.8.2 2012-04-12
277
- * new
278
- * add -r to make CLI return failure code if status >= 400
279
- * allow blank username from CLI
280
- * bug fixes
281
- * return nil for null body
282
- * automatically deflate responses with a Content-Encoding: x-gzip header
283
- * Do not HEAD on POST request with digest authentication
284
- * add support for proxy authentication
285
- * fix posting data with CLI
286
- * require rexml/document if xml format from CLI
287
- * support for fragmented responses
303
+
304
+ - new
305
+ - add -r to make CLI return failure code if status >= 400
306
+ - allow blank username from CLI
307
+ - bug fixes
308
+ - return nil for null body
309
+ - automatically deflate responses with a Content-Encoding: x-gzip header
310
+ - Do not HEAD on POST request with digest authentication
311
+ - add support for proxy authentication
312
+ - fix posting data with CLI
313
+ - require rexml/document if xml format from CLI
314
+ - support for fragmented responses
288
315
 
289
316
  ## 0.8.1 2011-10-05
290
- * bug fixes
291
- * content-encoding header should be removed when automatically inflating the body
317
+
318
+ - bug fixes
319
+ - content-encoding header should be removed when automatically inflating the body
292
320
 
293
321
  ## 0.8.0 2011-09-13
294
- * new
295
- * switch to multi json/xml for parsing by default
296
- * bug fixes
297
- * fix redirects to relative uri's
322
+
323
+ - new
324
+ - switch to multi json/xml for parsing by default
325
+ - bug fixes
326
+ - fix redirects to relative uri's
298
327
 
299
328
  ## 0.7.8 2011-06-06
300
- * bug fix
301
- * Make response honor respond to
302
- * net http timeout can also be a float
329
+
330
+ - bug fix
331
+ - Make response honor respond to
332
+ - net http timeout can also be a float
303
333
 
304
334
  ## 0.7.7 2011-04-16
305
- * bug fix
306
- * Fix NoMethodError when using the NON_RAILS_QUERY_STRING_NORMALIZER with a hash whose key is a symbol and value is nil
335
+
336
+ - bug fix
337
+ - Fix NoMethodError when using the NON_RAILS_QUERY_STRING_NORMALIZER with a hash whose key is a symbol and value is nil
307
338
 
308
339
  ## 0.7.5 2011-04-16
309
- * bug fix
310
- * caused issue with latest rubygems
340
+
341
+ - bug fix
342
+ - caused issue with latest rubygems
311
343
 
312
344
  ## 0.7.4 2011-02-13
313
- * bug fixes
314
- * Set VERIFY_NONE when using https. Ruby 1.9.2 no longer sets this for us. gh-67
345
+
346
+ - bug fixes
347
+ - Set VERIFY_NONE when using https. Ruby 1.9.2 no longer sets this for us. gh-67
315
348
 
316
349
  ## 0.7.3 2011-01-20
317
- * bug fixes
318
- * Fix digest auth for unspecified quality of protection (bjoernalbers, mtrudel, dwo)
350
+
351
+ - bug fixes
352
+ - Fix digest auth for unspecified quality of protection (bjoernalbers, mtrudel, dwo)
319
353
 
320
354
  ## 0.7.2 2011-01-20
321
- * bug fixes
322
- * Fix gem dependencies
355
+
356
+ - bug fixes
357
+ - Fix gem dependencies
323
358
 
324
359
  ## 0.7.1 2011-01-19
325
- * bug fixes
326
- * Fix uninitialized constant HTTParty::Response::Net in 1.9.2 (cap10morgan)
327
- * Other fixes for 1.9.2, full suite still fails (cap10morgan)
360
+
361
+ - bug fixes
362
+ - Fix uninitialized constant HTTParty::Response::Net in 1.9.2 (cap10morgan)
363
+ - Other fixes for 1.9.2, full suite still fails (cap10morgan)
328
364
 
329
365
  ## 0.7.0 2011-01-18
330
- * minor enhancements
331
- * Added query methods for HTTP status codes, i.e. response.success?
366
+
367
+ - minor enhancements
368
+ - Added query methods for HTTP status codes, i.e. response.success?
332
369
  response.created? (thanks citizenparker)
333
- * Added support for ssl_ca_file and ssl_ca_path (dlitz)
334
- * Allow custom query string normalization. gh-8
335
- * Unlock private keys with password (freerange)
336
- * Added high level request documentation (phildarnowsky)
337
- * Added basic post example (pbuckley)
338
- * Response object has access to its corresponding request object
339
- * Added example of siginin into tripit.com
340
- * Added option to follow redirects (rkj). gh-56
341
- * bug fixes
342
- * Fixed superclass mismatch exception while running tests
370
+ - Added support for ssl_ca_file and ssl_ca_path (dlitz)
371
+ - Allow custom query string normalization. gh-8
372
+ - Unlock private keys with password (freerange)
373
+ - Added high level request documentation (phildarnowsky)
374
+ - Added basic post example (pbuckley)
375
+ - Response object has access to its corresponding request object
376
+ - Added example of siginin into tripit.com
377
+ - Added option to follow redirects (rkj). gh-56
378
+ - bug fixes
379
+ - Fixed superclass mismatch exception while running tests
343
380
  (thanks dlitz http://github.com/dlitz/httparty/commit/48224f0615b32133afcff4718ad426df7a4b401b)
344
381
 
345
382
  ## 0.6.1 2010-07-07
346
- * minor enhancements
347
- * updated to crack 0.1.8
348
- * bug fixes
349
- * subclasses always merge into the parent's default_options and
350
- default_cookies (l4rk).
351
- * subclasses play nicely with grand parents. gh-49
383
+
384
+ - minor enhancements
385
+ - updated to crack 0.1.8
386
+ - bug fixes
387
+ - subclasses always merge into the parent's default_options and
388
+ default_cookies (l4rk).
389
+ - subclasses play nicely with grand parents. gh-49
352
390
 
353
391
  ## 0.6.0 2010-06-13
354
- * major enhancements
355
- * Digest Auth (bartiaco, sbecker, gilles, and aaronrussell)
356
- * Maintain HTTP method across redirects (bartiaco and sbecker)
357
- * HTTParty::Response#response returns the Net::HTTPResponse object
358
- * HTTParty::Response#headers returns a HTTParty::Response::Headers object
392
+
393
+ - major enhancements
394
+
395
+ - Digest Auth (bartiaco, sbecker, gilles, and aaronrussell)
396
+ - Maintain HTTP method across redirects (bartiaco and sbecker)
397
+ - HTTParty::Response#response returns the Net::HTTPResponse object
398
+ - HTTParty::Response#headers returns a HTTParty::Response::Headers object
359
399
  which quacks like a Hash + Net::HTTPHeader. The #headers method continues
360
400
  to be backwards-compatible with the old Hash return value but may become
361
401
  deprecated in the future.
362
402
 
363
- * minor enhancements
364
- * Update crack requirement to version 0.1.7
403
+ - minor enhancements
404
+ - Update crack requirement to version 0.1.7
365
405
  You may still get a warning because Crack's version constant is out of date
366
- * Timeout option can be set for all requests using HTTParty.default_timeout (taazza)
367
- * Closed #38 "headers hash should downcase keys so canonical header name can be used"
368
- * Closed #40 "Gzip response" wherein gziped and deflated responses are
406
+ - Timeout option can be set for all requests using HTTParty.default_timeout (taazza)
407
+ - Closed #38 "headers hash should downcase keys so canonical header name can be used"
408
+ - Closed #40 "Gzip response" wherein gziped and deflated responses are
369
409
  automatically inflated. (carsonmcdonald)
370
410
 
371
411
  ## 0.5.2 2010-01-31
372
- * minor enhancements
373
- * Update crack requirement to version 0.1.6
412
+
413
+ - minor enhancements
414
+ - Update crack requirement to version 0.1.6
374
415
 
375
416
  ## 0.5.1 2010-01-30
376
- * bug fixes
377
- * Handle 304 response correctly by returning the HTTParty::Response object instead of redirecting (seth and hellvinz)
378
- * Only redirect 300 responses if the header contains a Location
379
- * Don't append empty query strings to the uri. Closes #31
380
- * When no_follow is enabled, only raise the RedirectionTooDeep exception when a response tries redirecting. Closes #28
381
-
382
- * major enhancements
383
- * Removed rubygems dependency. I suggest adding rubygems to RUBYOPT if this causes problems for you.
417
+
418
+ - bug fixes
419
+
420
+ - Handle 304 response correctly by returning the HTTParty::Response object instead of redirecting (seth and hellvinz)
421
+ - Only redirect 300 responses if the header contains a Location
422
+ - Don't append empty query strings to the uri. Closes #31
423
+ - When no_follow is enabled, only raise the RedirectionTooDeep exception when a response tries redirecting. Closes #28
424
+
425
+ - major enhancements
426
+
427
+ - Removed rubygems dependency. I suggest adding rubygems to RUBYOPT if this causes problems for you.
384
428
  $ export RUBYOPT='rubygems'
385
- * HTTParty#debug_output prints debugging information for the current request (iwarshak)
386
- * HTTParty#no_follow now available as a class-level option. Sets whether or not to follow redirects.
429
+ - HTTParty#debug_output prints debugging information for the current request (iwarshak)
430
+ - HTTParty#no_follow now available as a class-level option. Sets whether or not to follow redirects.
387
431
 
388
- * minor enhancements
389
- * HTTParty::VERSION now available
390
- * Update crack requirement to version 0.1.5
432
+ - minor enhancements
433
+ - HTTParty::VERSION now available
434
+ - Update crack requirement to version 0.1.5
391
435
 
392
436
  ## 0.5.0 2009-12-07
393
- * bug fixes
394
- * inheritable attributes no longer mutable by subclasses (yyyc514)
395
- * namespace BasicObject within HTTParty to avoid class name collisions (eric)
396
437
 
397
- * major enhancements
398
- * Custom Parsers via class or proc
399
- * Deprecation warning on HTTParty::AllowedFormats
438
+ - bug fixes
439
+
440
+ - inheritable attributes no longer mutable by subclasses (yyyc514)
441
+ - namespace BasicObject within HTTParty to avoid class name collisions (eric)
442
+
443
+ - major enhancements
444
+
445
+ - Custom Parsers via class or proc
446
+ - Deprecation warning on HTTParty::AllowedFormats
400
447
  moved to HTTParty::Parser::SupportedFormats
401
448
 
402
- * minor enhancements
403
- * Curl inspired output when using the binary in verbose mode (alexvollmer)
404
- * raise UnsupportedURIScheme when scheme is not HTTP or HTTPS (djspinmonkey)
405
- * Allow SSL for ports other than 443 when scheme is HTTPS (stefankroes)
406
- * Accept PEM certificates via HTTParty#pem (chrislo)
407
- * Support HEAD and OPTION verbs (grempe)
408
- * Verify SSL certificates when providing a PEM file (collectiveidea/danielmorrison)
449
+ - minor enhancements
450
+ - Curl inspired output when using the binary in verbose mode (alexvollmer)
451
+ - raise UnsupportedURIScheme when scheme is not HTTP or HTTPS (djspinmonkey)
452
+ - Allow SSL for ports other than 443 when scheme is HTTPS (stefankroes)
453
+ - Accept PEM certificates via HTTParty#pem (chrislo)
454
+ - Support HEAD and OPTION verbs (grempe)
455
+ - Verify SSL certificates when providing a PEM file (collectiveidea/danielmorrison)
409
456
 
410
457
  ## 0.4.5 2009-09-12
411
- * bug fixes
412
- * Fixed class-level headers overwritten by cookie management code. Closes #19
413
- * Fixed "superclass mismatch for class BlankSlate" error. Closes #20
414
- * Fixed reading files as post data from the command line (vesan)
415
458
 
416
- * minor enhancements
417
- * Timeout option added; will raise a Timeout::Error after the timeout has elapsed (attack). Closes #17
459
+ - bug fixes
460
+
461
+ - Fixed class-level headers overwritten by cookie management code. Closes #19
462
+ - Fixed "superclass mismatch for class BlankSlate" error. Closes #20
463
+ - Fixed reading files as post data from the command line (vesan)
464
+
465
+ - minor enhancements
466
+ - Timeout option added; will raise a Timeout::Error after the timeout has elapsed (attack). Closes #17
418
467
  HTTParty.get "http://github.com", timeout: 1
419
- * Building gem with Jeweler
468
+ - Building gem with Jeweler
420
469
 
421
470
  ## 0.4.4 2009-07-19
422
- * 2 minor update
423
- * :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.
424
- * Fixed a bug in the cookies class method that caused cookies to be forgotten after the first request.
425
- * Also, some general cleanup of tests and such.
471
+
472
+ - 2 minor update
473
+ - :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.
474
+ - Fixed a bug in the cookies class method that caused cookies to be forgotten after the first request.
475
+ - Also, some general cleanup of tests and such.
426
476
 
427
477
  ## 0.4.3 2009-04-23
428
- * 1 minor update
429
- * added message to the response object
478
+
479
+ - 1 minor update
480
+ - added message to the response object
430
481
 
431
482
  ## 0.4.2 2009-03-30
432
- * 2 minor changes
433
- * response code now returns an integer instead of a string (jqr)
434
- * rubyforge project setup for crack so i'm now depending on that instead of jnunemaker-crack
483
+
484
+ - 2 minor changes
485
+ - response code now returns an integer instead of a string (jqr)
486
+ - rubyforge project setup for crack so i'm now depending on that instead of jnunemaker-crack
435
487
 
436
488
  ## 0.4.1 2009-03-29
437
- * 1 minor fix
438
- * gem 'jnunemaker-crack' instead of gem 'crack'
489
+
490
+ - 1 minor fix
491
+ - gem 'jnunemaker-crack' instead of gem 'crack'
439
492
 
440
493
  ## 0.4.0 2009-03-29
441
- * 1 minor change
442
- * Switched xml and json parsing to crack (same code as before just moved to gem for easier reuse in other projects)
494
+
495
+ - 1 minor change
496
+ - Switched xml and json parsing to crack (same code as before just moved to gem for easier reuse in other projects)
443
497
 
444
498
  ## 0.3.1 2009-02-10
445
- * 1 minor fix, 1 minor enhancement
446
- * Fixed unescaping umlauts (siebertm)
447
- * Added yaml response parsing (Miha Filej)
499
+
500
+ - 1 minor fix, 1 minor enhancement
501
+ - Fixed unescaping umlauts (siebertm)
502
+ - Added yaml response parsing (Miha Filej)
448
503
 
449
504
  ## 0.3.0 2009-01-31
450
- * 1 major enhancement, 1 bug fix
451
- * 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.
452
- * Fixed bug where query strings were being duplicated on redirects
453
- * Added a bunch of specs and moved some code around.
505
+
506
+ - 1 major enhancement, 1 bug fix
507
+ - 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.
508
+ - Fixed bug where query strings were being duplicated on redirects
509
+ - Added a bunch of specs and moved some code around.
454
510
 
455
511
  ## 0.2.10 2009-01-29
456
- * 1 minor enhancement
457
- * Made encoding on query parameters treat everything except URI::PATTERN::UNRESERVED as UNSAFE to force encoding of '+' character (Julian Russell)
512
+
513
+ - 1 minor enhancement
514
+ - Made encoding on query parameters treat everything except URI::PATTERN::UNRESERVED as UNSAFE to force encoding of '+' character (Julian Russell)
458
515
 
459
516
  ## 0.2.9 2009-01-29
460
- * 3 minor enhancements
461
- * Added a 'headers' accessor to the response with a hash of any HTTP headers. (Don Peterson)
462
- * 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)
463
- * Refactored several specs and added a full suite of cucumber features (Don Peterson)
517
+
518
+ - 3 minor enhancements
519
+ - Added a 'headers' accessor to the response with a hash of any HTTP headers. (Don Peterson)
520
+ - 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)
521
+ - Refactored several specs and added a full suite of cucumber features (Don Peterson)
464
522
 
465
523
  ## 0.2.8 2009-01-28
466
- * 1 major fix
467
- * fixed major bug with response where it wouldn't iterate or really work at all with parsed responses
524
+
525
+ - 1 major fix
526
+ - fixed major bug with response where it wouldn't iterate or really work at all with parsed responses
468
527
 
469
528
  ## 0.2.7 2009-01-28
470
- * 2 minor fixes, 2 minor enhancements, 2 major enhancements
471
- * fixed undefined method add_node for nil class error that occasionally happened (juliocesar)
472
- * Handle nil or unexpected values better when typecasting. (Brian Landau)
473
- * More robust handling of mime types (Alex Vollmer)
474
- * Fixed support for specifying headers and added support for basic auth to CLI. (Alex Vollmer)
475
- * Added first class response object that includes original body and status code (Alex Vollmer)
476
- * Now parsing all response types as some non-200 responses provide important information, this means no more exception raising (Alex Vollmer)
529
+
530
+ - 2 minor fixes, 2 minor enhancements, 2 major enhancements
531
+ - fixed undefined method add_node for nil class error that occasionally happened (juliocesar)
532
+ - Handle nil or unexpected values better when typecasting. (Brian Landau)
533
+ - More robust handling of mime types (Alex Vollmer)
534
+ - Fixed support for specifying headers and added support for basic auth to CLI. (Alex Vollmer)
535
+ - Added first class response object that includes original body and status code (Alex Vollmer)
536
+ - Now parsing all response types as some non-200 responses provide important information, this means no more exception raising (Alex Vollmer)
477
537
 
478
538
  ## 0.2.6 2009-01-05
479
- * 1 minor bug fix
480
- * added explicit require of time as Time#parse failed outside of rails (willcodeforfoo)
539
+
540
+ - 1 minor bug fix
541
+ - added explicit require of time as Time#parse failed outside of rails (willcodeforfoo)
481
542
 
482
543
  ## 0.2.5 2009-01-05
483
- * 1 major enhancement
484
- * Add command line interface to HTTParty (Alex Vollmer)
544
+
545
+ - 1 major enhancement
546
+ - Add command line interface to HTTParty (Alex Vollmer)
485
547
 
486
548
  ## 0.2.4 2008-12-23
487
- * 1 bug fix
488
- * Fixed that mimetype detection was failing if no mimetype was returned from service (skippy)
549
+
550
+ - 1 bug fix
551
+ - Fixed that mimetype detection was failing if no mimetype was returned from service (skippy)
552
+
489
553
  ## 0.2.3 2008-12-23
490
- * 1 bug fix
491
- * Fixed typecasting class variable naming issue
554
+
555
+ - 1 bug fix
556
+ - Fixed typecasting class variable naming issue
492
557
 
493
558
  ## 0.2.2 2008-12-08
494
- * 1 bug fix
495
- * Added the missing core extension hash method to_xml_attributes
559
+
560
+ - 1 bug fix
561
+ - Added the missing core extension hash method to_xml_attributes
496
562
 
497
563
  ## 0.2.1 2008-12-08
498
- * 1 bug fix
499
- * Fixed that HTTParty was borking ActiveSupport and as such Rails (thanks to Rob Sanheim)
564
+
565
+ - 1 bug fix
566
+ - Fixed that HTTParty was borking ActiveSupport and as such Rails (thanks to Rob Sanheim)
500
567
 
501
568
  ## 0.2.0 2008-12-07
502
- * 1 major enhancement
503
- * Removed ActiveSupport as a dependency. Now requires json gem for json deserialization and uses an included class to do the xml parsing.
569
+
570
+ - 1 major enhancement
571
+ - Removed ActiveSupport as a dependency. Now requires json gem for json deserialization and uses an included class to do the xml parsing.
504
572
 
505
573
  ## 0.1.8 2008-11-30
506
- * 3 major enhancements
507
- * Moved base_uri normalization into request class and out of httparty module, fixing
574
+
575
+ - 3 major enhancements
576
+ - Moved base_uri normalization into request class and out of httparty module, fixing
508
577
  the problem where base_uri was not always being normalized.
509
- * Stupid simple support for HTTParty.get/post/put/delete. (jqr)
510
- * Switched gem management to Echoe from newgem.
578
+ - Stupid simple support for HTTParty.get/post/put/delete. (jqr)
579
+ - Switched gem management to Echoe from newgem.
511
580
 
512
581
  ## 0.1.7 2008-11-30
513
- * 1 major enhancement
514
- * fixed multiple class definitions overriding each others options
582
+
583
+ - 1 major enhancement
584
+ - fixed multiple class definitions overriding each others options
515
585
 
516
586
  ## 0.1.6 2008-11-26
517
- * 1 major enhancement
518
- * now passing :query to set_form_data if post request to avoid content length errors
587
+
588
+ - 1 major enhancement
589
+ - now passing :query to set_form_data if post request to avoid content length errors
519
590
 
520
591
  ## 0.1.5 2008-11-14
521
- * 2 major enhancements
522
- * Refactored send request method out into its own object.
523
- * Added :html format if you just want to do that.
592
+
593
+ - 2 major enhancements
594
+ - Refactored send request method out into its own object.
595
+ - Added :html format if you just want to do that.
524
596
 
525
597
  ## 0.1.4 2008-11-08
526
- * 3 major enhancements:
527
- * Removed some cruft
528
- * Added ability to follow redirects automatically and turn that off (Alex Vollmer)
598
+
599
+ - 3 major enhancements:
600
+ - Removed some cruft
601
+ - Added ability to follow redirects automatically and turn that off (Alex Vollmer)
529
602
 
530
603
  ## 0.1.3 2008-08-22
531
604
 
532
- * 3 major enhancements:
533
- * Added http_proxy key for setting proxy server and port (francxk@gmail.com)
534
- * Now raises exception when http error occurs (francxk@gmail.com)
535
- * Changed auto format detection from file extension to response content type (Jay Pignata)
605
+ - 3 major enhancements:
606
+ - Added http_proxy key for setting proxy server and port (francxk@gmail.com)
607
+ - Now raises exception when http error occurs (francxk@gmail.com)
608
+ - Changed auto format detection from file extension to response content type (Jay Pignata)
536
609
 
537
610
  ## 0.1.2 2008-08-09
538
611
 
539
- * 1 major enhancement:
540
- * default_params were not being appended to query string if option[:query] was blank
612
+ - 1 major enhancement:
613
+ - default_params were not being appended to query string if option[:query] was blank
541
614
 
542
615
  ## 0.1.1 2008-07-30
543
616
 
544
- * 2 major enhancement:
545
- * Added :basic_auth key for options when making a request
546
- * :query and :body both now work with query string or hash
617
+ - 2 major enhancement:
618
+ - Added :basic_auth key for options when making a request
619
+ - :query and :body both now work with query string or hash
547
620
 
548
621
  ## 0.1.0 2008-07-27
549
622
 
550
- * 1 major enhancement:
551
- * Initial release
623
+ - 1 major enhancement:
624
+ - Initial release