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