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