86d751f5992c7c5b754f434f5dce1cd8672ebd63
[p5sagit/p5-mst-13.2.git] / ext / Compress / IO / Base / Changes
1 CHANGES
2 -------
3
4   2.000_14 26 October 2006
5
6       * IO::Uncompress::Base
7         Added support for $/ in record mode
8
9       * IO::Uncompress::Base
10         The readline interface was substantially slower than the 1.x
11         equivalent. This has now been sorted. 
12         Thanks to Andreas J. Koenig for spotting the problem.
13
14       * IO::Uncompress::AnyUncompress
15         Added IO::Uncompress::Lzf to the list of supported uncompresors.
16
17       * IO::Uncompress::Base
18         Added TrailingData to one-shot interface.
19
20       * IO::Uncompress::AnyUncompress
21         Remove raw-deflate (RFC1951) from the default list of compressors 
22         to check.
23         It can still be included if the new RawInflate parameter is
24         supplied.
25         This change was made because the only way to tell if content is 
26         raw-deflate is to attempt to uncompress it - a few false positives
27         have popped up recently, which suggests that auto-detecting raw 
28         deflate is far from perfect.
29         The equivalent change has been made to IO::Uncompress::AnyInflate.
30         [Core patch #28445]
31
32       * Don't check that filehandles are writable. It would seem that 
33         "-w *STDOUT" on windows returns false. 
34         [Core Patch #28415]
35
36   2.000_13 20 June 2006
37
38       * Store compress & uncompressed sizes as 64-bit.
39
40       * For one-shot uncompression, like this
41
42             unzip "some.zip" => \@a, MultiStream => 1;
43
44         Push each uncompressed stream from "some.zip" onto @a.
45
46       * Added IO::Compress::Base::FilterEnvelope
47
48       * Added IO::Uncompress::Base::nextStream
49
50       * The '-' filehandle now maps to either *STDIN or *STDOUT. 
51         This keeps mod_perl happier. Was using these before
52
53             new IO::File("<-")
54             new IO::File(">-")
55   
56   2.000_12 3 May 2006
57
58   2.000_11 10 April 2006
59
60       * Transparent + InputLength made more robust where input data is not
61         compressed.
62
63   2.000_10 13 March 2006
64
65       * AnyUncompress doesn't assume  that IO-Compress-Zlib is installed any
66         more.
67
68   2.000_09 3 March 2006
69
70       * Released to CPAN.
71
72   2.000_08 2 March 2006
73
74       * Split IO::Compress::Base into its own distribution.
75
76       * Added opened, autoflush and input_line_number.
77
78       * Beefed up support for $.
79