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