1.08
[catagits/HTTP-Body.git] / Changes
1 This file documents the revision history for Perl extension HTTP::Body.
2
3 1.08
4         - Temp files now preserve the suffix of the uploaded file. This makes
5           it possible to feed the file directly into a mime-type-determing
6           module that may rely on this suffix as part of its heuristic. (Dave
7           Rolsky)
8         - Fix for RT#54443 Xforms buffering incorrectly (Simon Elliott)
9         - Move to Dist::Zilla
10
11 1.07    2010-01-24 20:40:00
12         - Up IO::File dependency.
13
14 1.06    2010-01-09 19:21:00
15         - Added $body->cleanup(1) flag to enable auto-deletion of temporary files
16           during DESTROY. (Vany Serezhkin)
17         - Fixed parsing of multipart bodies with boundaries that contain commas.
18           (Tomas Doran, http://rt.cpan.org/Public/Bug/Display.html?id=41407)
19         - Dropped YAML, we now use Perl as a serialization format in our tests. We call this PAML ;)
20
21 1.05    2008-12-01 17:15:00
22         - Removed useless eval + require in new().
23
24 1.04    2008-06-23 16:00:00
25         - Added tmpdir() accessor to specify an alternate directory for temp files.
26           (jgoulah)
27
28 1.03    2008-04-07 08:20:00
29         - Set body value for XForms data. (Daniel Ruoso)
30
31 1.02    2008-02-27 17:30:00
32         - Fixed issue with urlencoded test on Windows.
33
34 1.01    2008-02-23 11:30:00
35         - Fixed performance issue with urlencoded regex.
36
37 1.00    2008-02-23 11:00:00
38         - Added support for chunked requests if no $length value is passed to new().
39         - Added support for XForms submissions. (Daniel Ruoso)
40         - Fixed urlencoded parser to handle spaces after semicolons and equal signs
41           in the value. (Tom Heady, http://rt.cpan.org/Ticket/Display.html?id=31055)
42         - Fixed multipart test to properly clean up temporary files.
43
44 0.9   2007-03-27 14:00:00
45         - Fixed bug where empty fields in multipart/form-data were ignored.
46           (Ton Voon)
47         - Fixed bug where an uploaded file with the name "0" was ignored.
48           (Ton Voon)
49         - Small performance improvements to urlencoded parser.
50
51 0.8   2007-03-23 18:40:00
52         - Some browsers such as MSIE send extra data after the body content.
53           We now properly ignore anything beyond Content-Length.
54
55 0.7   2007-03-23 10:00:00
56         - Fixed parsing an empty (zero-length) file using multipart.
57           http://rt.cpan.org/NoAuth/Bug.html?id=25392
58
59 0.6   2006-01-06 00:00:00
60         - Fixed buffer bug in OctetStream, reported by Daisuke Murase
61           <typester@cpan.org>.
62         - Fixed YAML prereq, reported by Jess Robinson
63         - Added tests, Ben Trott <ben@sixapart.com>.
64
65 0.5   2005-11-17 00:00:00
66         - Updated for PAR compatibility
67
68 0.4   2005-11-09 01:00:00
69         - Version bump to 0.4 so CPAN.pm installs the right version.
70
71 0.03  2005-10-27 20:00:00
72         - removed use of List::Util first due to memory leakage.
73           http://rt.cpan.org/NoAuth/Bug.html?id=13891
74
75 0.2   2005-10-07
76         - fixed POD
77
78 0.01  2005-09-07
79         - first release