-
Notifications
You must be signed in to change notification settings - Fork 7
/
History.txt
39 lines (28 loc) · 1.33 KB
/
History.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Version 1.0.0
============
* Added .request() convenience method to Resourceful module.
* Added .get(), .post(), .put(), .delete() and .head() convenience method to Resourceful module
Version 0.7.0
=============
* Multiple values in a single header field are treated the same as repeated header fields. (Peter Williams)
Compatibility issues
--------------------
* The semantics of the Resourceful::Header API have changed slightly.
Previously multiple values in a single header field
(e.g. `Accept: application/xml, application/json`) where treated
differently from multiple values occurring in multiple fields (e.g
`Accept: application/xml\n\rAccept: application/json`). This lead
to some unfortunate complexity when interacting with multi-valued
fields.
Version 0.6.0
=============
* Improved support for multi-valued header fields. (Peter Williams)
* Added convenience mechanisms for making URL encoded and multipart form data requests. (Peter Williams)
* Ruby 1.9 support (Peter Williams)
Compatibility issues
--------------------
* The semantics of the Resourceful::Header API have changed slightly.
Previously, any header might return a string or an array. Now
fields are either "single-value" and always return a string, or
"multi-value" and always return an array. See API doc for more
details.