public
Fork of pezra/resourceful
Description: An HTTP library for Ruby that takes advantage of everything HTTP has to offer.
Homepage: http://absolute-performance.com/open-source/resourceful
Clone URL: git://github.com/paul/resourceful.git
resourceful / History.txt
100644 35 lines (24 sloc) 1.173 kb
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
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.