The temp file name now preserves the uploaded file's suffix.
[catagits/HTTP-Body.git] / Changes
CommitLineData
09abe57d 1This file documents the revision history for Perl extension HTTP::Body.
2
6a7b9183 31.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
5379d16f 91.07 2010-01-24 20:40:00
10 - Up IO::File dependency.
11
cd439abb 121.06 2010-01-09 19:21:00
b1da105b 13 - Added $body->cleanup(1) flag to enable auto-deletion of temporary files
14 during DESTROY. (Vany Serezhkin)
4f8ae3af 15 - Fixed parsing of multipart bodies with boundaries that contain commas.
16 (Tomas Doran, http://rt.cpan.org/Public/Bug/Display.html?id=41407)
712c90b5 17 - Dropped YAML, we now use Perl as a serialization format in our tests. We call this PAML ;)
4f8ae3af 18
68cfda7d 191.05 2008-12-01 17:15:00
20 - Removed useless eval + require in new().
21
3debb7c0 221.04 2008-06-23 16:00:00
23 - Added tmpdir() accessor to specify an alternate directory for temp files.
24 (jgoulah)
25
2759ad98 261.03 2008-04-07 08:20:00
27 - Set body value for XForms data. (Daniel Ruoso)
28
4ba452d9 291.02 2008-02-27 17:30:00
30 - Fixed issue with urlencoded test on Windows.
31
5a1e3a8d 321.01 2008-02-23 11:30:00
33 - Fixed performance issue with urlencoded regex.
34
599b988a 351.00 2008-02-23 11:00:00
0a66fd23 36 - Added support for chunked requests if no $length value is passed to new().
5940e4c7 37 - Added support for XForms submissions. (Daniel Ruoso)
25f2a981 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)
1ced50e0 40 - Fixed multipart test to properly clean up temporary files.
0a66fd23 41
912a882b 420.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.
dd70a428 48
c0ca3e5c 490.8 2007-03-23 18:40:00
912a882b 50 - Some browsers such as MSIE send extra data after the body content.
51 We now properly ignore anything beyond Content-Length.
9603999f 52
530.7 2007-03-23 10:00:00
64dc6c36 54 - Fixed parsing an empty (zero-length) file using multipart.
55 http://rt.cpan.org/NoAuth/Bug.html?id=25392
56
b611551a 570.6 2006-01-06 00:00:00
912a882b 58 - Fixed buffer bug in OctetStream, reported by Daisuke Murase
59 <typester@cpan.org>.
4b372378 60 - Fixed YAML prereq, reported by Jess Robinson
239fb0d6 61 - Added tests, Ben Trott <ben@sixapart.com>.
9bbd91b6 62
b018320d 630.5 2005-11-17 00:00:00
64 - Updated for PAR compatibility
65
1ec011cb 660.4 2005-11-09 01:00:00
67 - Version bump to 0.4 so CPAN.pm installs the right version.
68
af05d2df 690.03 2005-10-27 20:00:00
70 - removed use of List::Util first due to memory leakage.
27ee4e94 71 http://rt.cpan.org/NoAuth/Bug.html?id=13891
72
1ec011cb 730.2 2005-10-07
38ad3df8 74 - fixed POD
75
af05d2df 760.01 2005-09-07
09abe57d 77 - first release