avoid reading beyond the end of the line buffer in rubthrough
[imager.git] / Changes
1 Imager release history.  Older releases can be found in Changes.old
2
3  - when drawing on an image with an alpha channel where the source
4    minimum is greater than zero, Imager would read from beyond the end
5    of a malloc() allocated buffer.  In rare circumstances this could
6    lead to some of the source image not being written to the target
7    image, or possibly to a segmentation fault.
8    I don't believe this has any security concerns beyond that.
9
10 Imager 0.97 - 15 Jul 2013
11 ===========
12
13 No changes from 0.96_02.
14
15 Imager 0.96_02 - 8 Jul 2013
16 ==============
17
18  - PNG: treat a version mismatch between headers and library as a
19    probe failure.
20    https://rt.cpan.org/Ticket/Display.html?id=86659
21
22  - PNG: the check for benign error support is more complex than a
23    simple library version check, check for the appropriate macro.
24    Thanks for Slaven Rezic for following up on my CPAN Testers result
25    queries.
26    https://rt.cpan.org/Ticket/Display.html?id=86659
27
28  - W32: add a missing head1 AUTHORS to the old Win32.pm
29    https://rt.cpan.org/Ticket/Display.html?id=86658
30
31 Imager 0.96_01 - 1 Jul 2013
32 ==============
33
34  - TIFF: handle SampleFormat = 2 by translating the signed integer
35    values to unsigned by flipping their sign bits.
36
37    Handle SampleFormat = 3 where possible.
38
39    SampleFormat is ignored for paletted images.
40
41    Mixed SampleFormat are handled incorrectly, since libtiff returns
42    only the first SampleFormat value, and an image with both an alpha
43    channel and SampleFormat = 2 for color channels probably has a
44    different SampleFormat for the alpha channel.
45
46    https://rt.cpan.org/Ticket/Display.html?id=74540
47
48  - XS clean up:
49      https://rt.cpan.org/Ticket/Display.html?id=69243
50
51    - Imager::Color's rgba() method now returns its values as integers
52      instead of floating point. (IV instead of NV).
53
54    - The XS for i_map() and i_matrix_transform() now use the AV *
55      typemap instead of rolling their own.
56
57    - The XS for DSO_call() now uses the HV * typemap instead of
58      rolling it's own.
59
60    - The XS for i_poly_aa(), i_poly_aa_cfill(), i_transform() and
61      i_gradgen() now use a new T_AVARRAY typemap that greatly
62      simplifies the XS code.
63
64    - many other minor XS changes
65
66    - some XS code formatting
67
68  - TT (Freetype 1.x) and FT2 (Freetype 2.x) non-antialiased rendering
69    now renders in alpha-combining mode, to match antialiased output.
70    https://rt.cpan.org/Ticket/Display.html?id=73359
71
72  - add sample code and cookbook notes for drawing a blurred drop-shadow.
73
74  - add support for libpng 1.6, which changed the defaults for
75    reporting some types of error.
76    https://rt.cpan.org/Ticket/Display.html?id=85746
77
78  - FT2: use gsamp/psamp() to transfer pixels from the work image to
79    the output image instead of gpix/ppix.
80    https://rt.cpan.org/Ticket/Display.html?id=83478
81
82  - eliminate various GCC warnings, mostly initialized but otherwise
83    unused variables.
84
85 Imager 0.96 - 19 May 2013
86 ===========
87
88  - rearrange Imager's test files.
89    https://rt.cpan.org/Ticket/Display.html?id=84596
90
91  - Imager::Probe::_gcc_lib_paths now forces C locale.
92    A sufficiently recent gcc prints localized keys for the search
93    paths, which avoids that localization.
94    https://rt.cpan.org/Ticket/Display.html?id=84963
95
96  - fix a pod error detected by Pod::Simple 3.27 and laterm and skip
97    pod tests unless AUTOMATED_TESTING or IMAGER_AUTHOR_TESTING is set
98    and true.
99    https://rt.cpan.org/Ticket/Display.html?id=85262
100    reported by Andreas König
101
102  - add a test for unclosed POD in C source, and fix the errors it
103    found.
104    https://rt.cpan.org/Ticket/Display.html?id=74875
105
106  - fix some spelling errors detected by the newer aspell in Debian
107    Wheezy.
108
109  - remove a trailing ' from lib/Imager/Font/Test.pm's POD
110    thanks to gregor herrmann <gregoa@debian.org>
111    https://rt.cpan.org/Ticket/Display.html?id=85413
112
113  - add a test for standard =head1 commands and fix the errors found
114
115 Imager 0.95 - 19 Apr 2013
116 ===========
117
118  - handle the SVf_UTF8 flag correctly on magic strings passed to
119    Imager::IO's write() and raw_write() methods.
120    This may misbehave in perl 5.6.x since the UTF8 flag may not be
121    visible in the main SV after SvGETMAGIC().
122    https://rt.cpan.org/Ticket/Display.html?id=83438
123
124  - document that bounding_box() ignores the transformation matrix
125    supplied to tranform() for fonts.
126    https://rt.cpan.org/Ticket/Display.html?id=84106
127
128 Imager 0.94_02 - 5 Apr 2013
129 ==============
130
131  - enable debug logging for the standard font tests
132
133  - skip the overloaded UTF-8 text output checks on 5.6.x and earlier,
134    due to a bug in that version of perl.
135
136  - don't test for read() failing on a write-only handle in 5.8.x and
137    earlier, this was fixed in change 862083f7e4 in perl.
138
139  - report the version of Inline found during testing (an attempt to
140    diagnose some intermittent failures.)
141
142 Imager 0.94_01 - 2 Mar 2013
143 ==============
144
145  - NOTE: possibly backward incompatible:
146    support reading from/writing to perl filehandes that aren't raw
147    files.
148
149    This allows Imager's I/O to honour handles with layers such as
150    gzip, scalar file handles or tied file handles.
151
152    This is backward incompatible in that previous Imager would simply
153    use fileno() to retrieve the fd for the file and call write(2) etc
154    on it directly.
155    https://rt.cpan.org/Ticket/Display.html?id=78843
156
157  - moved most of README to lib/Imager/Install.pod which should make it
158    more accessible to the "web" generation, also significantly updated
159    and re-worked it.
160
161  - updated README's for the separately distributed modules to refer to
162    Imager::Install, and that they need -dev versions of packages
163    https://rt.cpan.org/Ticket/Display.html?id=81265
164
165  - the JPEG test code now reports the compile-time library version
166
167  - avoid a possible compiler optimization issue on CentOS 5.9 i386 by
168    rearranging (and mildly optimizing) some code.
169    https://rt.cpan.org/Ticket/Display.html?id=83212
170
171  - fix a POD error in Imager::Fill (detected on new Pod-Simple)
172    https://rt.cpan.org/Ticket/Display.html?id=83434
173
174  - fix a broken link to Graphics::Magick
175    https://rt.cpan.org/Ticket/Display.html?id=82743
176
177  - drawing text to a channel with FT2 would draw with random coverage
178    due to an uninitialized alpha channel.
179
180  - marked the function pointer underlying the mm_log() API with the
181    correct gcc magic and fixed the resulting warnings.
182
183  - fixed some other compiler warnings
184
185  - Imager::Font::W32 now properly reports text drawing errors
186    https://rt.cpan.org/Ticket/Display.html?id=70098
187
188  - handle the SVf_UTF8 flag correctly on magic (eg. overloaded)
189    strings passed as text to draw(), bounding_box(), has_chars(),
190    glyph_names() (where supported) in each of the font drivers.
191    This may misbehave in perl 5.6.x since the UTF8 flag may not be
192    visible in the main SV after SvGETMAGIC().
193    https://rt.cpan.org/Ticket/Display.html?id=83438 (partial)
194
195 Imager 0.94 - 15 Dec 2012
196 =========================
197
198 Variations on some of these changes were included in development
199 releases.
200
201  - improved thread safety
202    - the internal error stack and log file handle are now in a per-thread
203      context object
204    - JPEG now captures IPTC information in a thread-safe way
205    - avoid globals where possible for warning capture in libtiff
206    - use a mutex to avoid re-entering thread-unsafe giflib
207    - use a mutex to avoid re-entering thread-unsafe tifflib
208    - use a mutex to avoid re-entering thread-unsafe T1Lib
209    - use a library handle per thread for freetype 2.
210    - use an engine handle per thread for freetype 1.x.
211    - originally these changes broke ABI compatibility, this has been
212      restored.
213
214  - clarify the return value of getpixel();
215    https://rt.cpan.org/Ticket/Display.html?id=81198
216
217  - fixed a race condition in parallel testing for T1
218
219  - fixed a bug in handling yoff for untransformed image-based fills
220
221  - documentation improvements for Imager::Fill
222
223  - FT2: report the library version while testing.
224
225 Imager 0.93 - 15 Oct 2012
226 ===========
227
228 Bug fixes:
229
230  - previously a transparency enabled GIF write (the default) would
231    always use a GIF89a header even if none of the images were
232    transparent.
233
234  - previously the probe step for freetype-config would fail on cygwin
235
236  - catch an invalid matrix parameter to convert() instead of crashing
237    https://rt.cpan.org/Ticket/Display.html?id=79922
238
239  - remove the 16-bit/sample limitation from the documentation for
240    setsamples(), it hasn't applied for many releases.
241    https://rt.cpan.org/Ticket/Display.html?id=79989
242
243  - don't copy setsamples() data parameter, it may be a large scalar
244    https://rt.cpan.org/Ticket/Display.html?id=79990
245
246  - clean up .dSYM directories generated performing probes on OS X
247    Mountain Lion.
248
249  - pass the --verbose command-line option through to Imager::Probe in
250    sub-module's Makefile.PLs
251    https://rt.cpan.org/Ticket/Display.html?id=75878
252
253 Enhancements:
254
255  - support for giflib 5.0. (5.0.1 and later)
256    https://rt.cpan.org/Ticket/Display.html?id=79029
257    The giflib API Imager uses doesn't have a mechanism to set the
258    header version in 5.0.0.
259
260  - update the GIF library probe code to check for the new giflib 5.0.1
261    EGifSetGifVersion() function, and to check for the giflib 4.2.0
262    uninitialized gif89 bug.
263    https://rt.cpan.org/Ticket/Display.html?id=79679
264    http://sourceforge.net/tracker/?func=detail&aid=3574283&group_id=102202&atid=631304
265
266  - avoid static variables when capturing IPTC data from JPEG files
267
268  - match Imager::Font;:T1's error message translations to those from
269    later versions of T1Lib.
270
271  - for libtiff versions that support extended warning handlers (3.8.0
272    or later), use them to avoid some global variables.
273
274  - note Image::ExifTool for better metadata support.
275    https://rt.cpan.org/Ticket/Display.html?id=79251
276
277 Imager 0.92 - 14 Aug 2012
278 ===========
279
280  - giflib 4.2 eliminates the GIF_LIB_VERSION macro, handle that
281    correctly for both probing and runtime.
282    https://rt.cpan.org/Ticket/Display.html?id=77672
283
284  - allow building JPEG/imexif.c on C89 compilers.
285
286  - allow building GIF/imgif.c on C89 compilers.
287
288 Imager 0.91 - 4 Jun 2012
289 ===========
290
291 Bug fixes:
292
293  - The size of rotated images is no longer rounded up so aggressively.
294    Added rounding to the linear interpolation done for rotate() and
295    matrix_transform() for 1 and 3 channel 8-bit images.
296    Adjusted the two tranlate matrices used to build the final rotation
297    matrix to use the distance between the outlier pixels rather than
298    the pixel dimensions (ie. dimension-1).
299    With all of this the output of rotate(degrees => 270) on an 8-bit
300    image exactly matches the output of rotate(right => 270).
301    https://rt.cpan.org/Ticket/Display.html?id=77063
302
303 Other changes:
304
305  - eliminate the old IIM_new(), IIM_DESTROY() names from Imager's
306    internals, those names only matter for the XS interface.
307
308  - improve error reporting when PERL_INITIALIZE_IMAGER_CALLBACKS finds
309    the API level compiled into a loadable module such as
310    Imager::File::GIF doesn't match that of Imager.  Previously it
311    could be difficult to determine exactly which module was failing to
312    load.
313    https://rt.cpan.org/Ticket/Display.html?id=77173
314
315  - added Imager->check_file_limits() as an interface to the
316    i_int_check_image_file_limits() API.
317
318  - Imager->set_file_limits(reset => 1) now resets the limits to the
319    defaults rather than setting them all to unlimited.
320
321  - wrote a brief security note as Imager::Security
322    https://rt.cpan.org/Ticket/Display.html?id=68910
323
324 Imager 0.90 - 30 Apr 2012
325 ===========
326
327 Bug fixes:
328
329  - Imager::Test::is_imaged() attempted to process an "epsilon"
330    parameter but the prototype didn't allow for the extra parameter.
331    Corrected the prototype.
332
333  - when downconverting samples (eg. from floating point to 8 bit)
334    Imager now rounds the sample value rather than attempting to
335    allocate input values over output values equally.  The old
336    behaviour had the probably surprising effect of converting a
337    floating point 2.1/255.0 into an 8-bit 3 rather than the expected
338    2.
339    This may result in slightly different 8 or 16-bit output images.
340
341  - BI_BITFIELD BMP images were handled incorrectly, both in
342    incorrectly calculating the space required for the masks and in
343    processing the image data itself.
344    https://rt.cpan.org/Ticket/Display.html?id=76736
345
346  - some odd width BMP BI_RLE4 images use run lengths that run one off
347    the edge of the image.  Imager now allows this, discarding the
348    extra column.
349
350  - odd length RLE4 runs in BMP images were decoded incorrectly.
351
352  - pkg-config could sometimes return a library that was in a directory
353    EU::MM / $Config{libpth} doesn't know about, but the compiler did.
354    If no -L is included in the pkg-config library information check if
355    EU::MM can find the library, and if not, search our configured
356    directories and insert that into the library flags.
357    https://rt.cpan.org/Ticket/Display.html?id=75869
358
359  - Imager::Probe can now probe for libraries with dependent libraries,
360    common for static linking, eg. libpng requires libz.
361    https://rt.cpan.org/Ticket/Display.html?id=74043
362
363  - libpng 1.5 specific probes were looking for libpng 1.4 filenames.
364
365  - added alternative probe configurations that try to link libz, to
366    handle a statically linked libpng.
367    https://rt.cpan.org/Ticket/Display.html?id=74043
368
369  - if a probe includes testcode, Imager::Probe now checks that code as
370    part of the process of checking each configuration rather than as a
371    post test of the found configuration.  This allows alternate
372    configurations to be checked if a matching but non-working
373    configuration is found.
374    https://rt.cpan.org/Ticket/Display.html?id=74043
375
376 Other changes:
377
378  - when reading or writing images via callbacks, the default callbacks
379    now push an error message indicating that a required callback was
380    called but not supplied.
381    https://rt.cpan.org/Ticket/Display.html?id=76782
382
383  - clarify which callbacks are required for reading and writing TIFF
384    images.
385
386  - improve logging for creation of callback I/O layers.
387
388  - a little more documentation for Imager::Probe.
389
390  - the i_get_file_background() and i_get_file_backgroundf() APIs now
391    return int to indicate whether the i_background tag was found.
392
393  - PNG rework
394    - improve error reporting
395    - add png_interlace, png_bits tags
396    - read paletted images as paletted images, including transparency
397    - read 1 bit greyscale images as a type suitable for other file
398      handlers to write as bilevel
399    - read 16 bit/sample PNG as 16-bit/sample Imager images
400    - write "bilevel" paletted images as 1 bit grayscale images
401    - write paletted images as paletted images
402    - write 16-bit (or higher)/sample images as 16-bit/sample PNG
403      images
404    - improved metadata support
405    https://rt.cpan.org/Ticket/Display.html?id=29268
406
407 Imager 0.89 - 18 Mar 2012
408 ===========
409
410 Bug fixes:
411
412  - getpixel(..., type => "float") and the API i_gpixf() have been
413    broken on paletted images since they were implemented.
414    https://rt.cpan.org/Ticket/Display.html?id=75258
415
416 Other changes:
417
418  - links in the METHOD INDEX now point at the method documentation
419    rather than the heading you can find them under.
420    https://rt.cpan.org/Ticket/Display.html?id=71495
421
422  - Imager (and the bundled dynamic modules) no longer fallback to
423    using DynaLoader if loading via XSLoader fails.
424    For the bundled modules this could hide useful error messages.
425    https://rt.cpan.org/Ticket/Display.html?id=75560
426
427  - IM_DEBUG_MALLOC mymalloc() no longer sn?printfs() a string to a
428    buffer in the array of allocations, but just stores the filename
429    pointer and line number.
430    https://rt.cpan.org/Ticket/Display.html?id=70388
431
432 Imager 0.88 - 22 Feb 2012
433 ===========
434
435  - describe how to build libgif etc on OS X in such a way as to be
436    compatible with a fat binary perl (such as the system perl), in
437    README.
438    https://rt.cpan.org/Ticket/Display.html?id=73371
439
440  - update the change notes for 0.77_01 to indicate that libungif
441    support was removed.
442
443  - add some other imaging modules to SEE ALSO
444    https://rt.cpan.org/Ticket/Display.html?id=73906
445
446  - note that the generator of the apparently non-DFSG-free postscript
447    in MMOne.pfb is a Debian package.
448
449  - setsamples() is now a true complement to getsamples() - it can
450    write 8-bit or floating point samples from a scalar or array
451    reference.  This adds i_psamp() and i_psampf() to the C level API.
452
453  - the XS interfaces to i_gsamp(), i_gsampf() and i_gsamp_bits() have
454    changed to make better use of the typemap, but these aren't part of
455    the perl level API anyway.  There were no changes to the C level
456    interfaces to these functions.
457
458  - getpixel() and setpixel() now accept a mix of scalar and array
459    references for the x and y parameters, and unequal array lengths is
460    no longer an error.
461    https://rt.cpan.org/Ticket/Display.html?id=73697
462
463 Bug fixes:
464
465  - correctly calculate the size of a rotated image
466    https://rt.cpan.org/Ticket/Display.html?id=69261
467
468  - fix incorrect rounding of color values for matrix_transform() and
469    rotate().
470    https://rt.cpan.org/Ticket/Display.html?id=69261
471
472  - Win32 text output is now done in normal combine mode, the alpha
473    component of the color is now significant.
474    https://rt.cpan.org/Ticket/Display.html?id=70014
475
476  - remove long unused gif case from read()
477    https://rt.cpan.org/Ticket/Display.html?id=69244 (partial)
478
479  - the getsamples() target parameter was being treated as a hashref
480    when it's meant to be an array reference.
481    https://rt.cpan.org/Ticket/Display.html?id=74882
482
483  - getpixel() and setpixel() now returns an empty list when invalid
484    parameters are supplied.
485    Invalid values for type now result in an error for getpixel().
486    https://rt.cpan.org/Ticket/Display.html?id=73697
487
488 Imager 0.87 - 03 Jan 2012
489 ===========
490
491  - document the return value of the filter() method.
492    https://rt.cpan.org/Ticket/Display.html?id=72369
493
494  - document i_gsamp_bits() and i_psamp_bits().
495    https://rt.cpan.org/Ticket/Display.html?id=68815
496
497  - properly increment the Imager::Matrix2d $VERSION.
498
499  - actually include the Imager::Test tests in the dist
500
501  - correctly read and write 256x256 pixel ICO files
502    https://rt.cpan.org/Ticket/Display.html?id=69599
503
504  - make the error message from read() or read_multi() when they can't
505    identify the file type match reality.
506    https://rt.cpan.org/Ticket/Display.html?id=72475
507
508  - read() now uses $FORMATGUESS if it can't determine the file type
509    based on the file header, to match read_multi().
510
511  - re-work and add tests for def_guess_type().  def_guess_type() no
512    longer returns any random file extension as the file type.
513
514  - add gray4, gray16 and gray as presets for make_colors.
515    https://rt.cpan.org/Ticket/Display.html?id=67911
516
517  - add make_palette() method that produces a palette from one or more
518    images.
519
520  - fix the Imager dependency for the separately distributed font
521    drivers.
522    https://rt.cpan.org/Ticket/Display.html?id=72643
523
524  - fix i_render_color() to properly draw in "normal" mode - ie. when
525    writing to a 1 or 3 channel image the second or fourth channel of
526    the source color was being ignored, it is now significant.
527    https://rt.cpan.org/Ticket/Display.html?id=71564
528
529 Imager 0.86 - 31 Oct 2011
530 ===========
531
532  - improve error reporting for W32 tests
533
534 Imager 0.85_02 - 24 Oct 2011
535 ==============
536
537 Bug fixes:
538
539  - eliminate unused i_gif_opts type (clean-up)
540    https://rt.cpan.org/Ticket/Display.html?id=69245
541
542  - fix combine=0 fill color anti-aliasing on the double/sample path
543    https://rt.cpan.org/Ticket/Display.html?id=71309
544
545  - make default text color non-transparent
546    https://rt.cpan.org/Ticket/Display.html?id=71469
547
548  - apply the last of the Debian unforwarded spelling fixes
549    https://rt.cpan.org/Ticket/Display.html?id=70656
550
551  - the log() method used its message parameter as a C level format
552    string.
553    https://rt.cpan.org/Ticket/Display.html?id=71653
554
555  - provide our own STRLEN typemap entry for older perls.
556    https://rt.cpan.org/Ticket/Display.html?id=71641
557
558  - add extra ppport.h configuration to support older perls.
559
560  - depend on Scalar::Util, since we use it and older perls don't have
561    it.
562
563  - add overloaded eq to Imager::Matrix2d, since older perls don't seem
564    to synthesize it from overloaded "".
565
566   - use T1_StrError() for error messages on modern libt1
567     https://rt.cpan.org/Ticket/Display.html?id=69879
568
569  - actually load the font rather than just adding it to the catalog on
570    creation.
571
572  - Imager::Font->new now produces better error messages for the T1
573    engine.
574
575  - the font has_chars() method now returns perl's true and false
576    values in list context rather than integers, which should be more
577    efficient.
578    https://rt.cpan.org/Ticket/Display.html?id=69158
579
580  - the btm data structure used by the flood_fill code is now
581    initialized more efficiently.
582    https://rt.cpan.org/Ticket/Display.html?id=68994
583
584  - updated the Thanks list in README
585    https://rt.cpan.org/Ticket/Display.html?id=71607
586
587  - check there's at least one coefficient for the convolution filter
588    https://rt.cpan.org/Ticket/Display.html?id=68993
589
590  - make the APIRef synopsis ordering consistent, older versions of
591    perl could order it differently.
592    https://rt.cpan.org/Ticket/Display.html?id=71675
593
594  - we rely on Config.pm's d_vsnprintf as to whether we use
595    vsnprintf/snprintf, which is defined in the Win32 Config.pm even
596    though it only has _ prefixed versions of these.  Define our own
597    prefixed names on Win32.
598    https://rt.cpan.org/Ticket/Display.html?id=71642
599
600  - fix library detection with MSVC
601
602  - search a few more library directories, so EU::MM doesn't discard
603    them.  Hopefully fixes:
604    https://rt.cpan.org/Ticket/Display.html?id=71643
605
606 Imager 0.85_01 - 10 Oct 2011
607 ==============
608
609  - add simple tests for the Imager::Test test_image generators
610
611  - io_glue I/O buffering re-work:
612
613    - reorganize io_glue to do it's own buffering by default
614
615    - the unbuffered functions are available as i_io_raw_read() (or
616      raw_read() from perl) etc but are not recommended for typical
617      use.
618
619    - use the new i_io_peekn() when checking for file magic to avoid
620      seek, allowing Imager to detect the file type and read the file
621      from an unseekable stream (for formats that don't use random
622      access)
623
624    - added several new I/O layer API functions.
625
626    - fix the TGA performance problem, most noticably on Win32
627      https://rt.cpan.org/Ticket/Display.html?id=70037
628
629    - TIFF now uses wrapper functions of the correct types to avoid casts
630      https://rt.cpan.org/Ticket/Display.html?id=69912
631
632    - the callback IO object did its own buffering, controlled by the
633      maxbuffer parameter supplied to the read() and write() methods.
634      This buffering has been removed, to avoid redundancy with the
635      common io_glue buffering.  This also avoids a bug in that code
636      which could rarely pass a zero length to the read callback and
637      then panic about the result.
638
639    - the callback IO object now tests the result of calling the close
640      callback, which should return true for success.
641
642    - the PNM reader did its own buffering.  This buffering has been
643      removed to avoid redundancy with the common io_glue buffering.
644
645    - previously the read handlers for fd and callback I/O layers would
646      call the underlying interface (POSIX read or your supplied callback)
647      until it filled the buffer.  It now only makes one call.
648
649    - added public constructors for I/O layer objects (see Imager::IO)
650
651    - all core file handlers now use the i_io_foo() wrappers to gain
652      access to buffered I/O rather than calling the I/O layer
653      callbacks directly.
654
655    - all core file handlers now check for error on close.
656
657    - Backward compatibility: if you hava custom file handlers, you can
658      use i_io_write() etc since they're available as macros in older
659      versions of Imager.
660
661    - eliminate the final remnants of io_glue_commit_types().
662
663    - bump IMAGER_API_VERSION, since the above may break assumptions.
664
665  - removed the long unused i_gen_reader() and i_gen_writer() utility
666    functions.
667
668 Imager 0.85 - 29 Aug 2011
669 ===========
670
671 The main changes in the release versus 0.84 are:
672
673  - on 64-bit systems, 64-bit types are consistently used for image
674    dimensions and co-ordinated, and for memory block sizes.
675
676  - handle IFD loops in TIFF files correctly.  Previously this would
677    lead to an infinite loop.
678
679 Bug fixes:
680
681  - fix the link in the getheight() entry in the method index
682
683 Imager 0.84_02 - 22 Aug 2011
684 ==============
685
686 Development release, this will become 0.85 if CPAN testers is
687 favourable.
688
689 Bug fixes:
690
691  - the image file limits set by set_file_limits() weren't being
692    checked when reading TIFF files.
693    https://rt.cpan.org/Ticket/Display.html?id=69915
694
695  - Provide more information about file format module load errors on a
696    failed image file read() or write().
697    https://rt.cpan.org/Ticket/Display.html?id=69194
698
699  - use TIFFReadDirectory() instead of TIFFSetDirectory() to iterate
700    through TIFF images, since it checks for IFD loops.
701    https://rt.cpan.org/Ticket/Display.html?id=69914
702
703  - don't leak memory when out of range palette indexes are supplied to
704    setscanline().
705    https://rt.cpan.org/Ticket/Display.html?id=69242
706
707  - require a later version of CPAN::Meta to ensure JSON::PP and
708    CPAN::Meta::YAML are available.
709    https://rt.cpan.org/Ticket/Display.html?id=69008
710
711  - hoist the per-line calculations for the flines implementations, and
712    modernize the tests a bit.
713    https://rt.cpan.org/Ticket/Display.html?id=70126
714
715  - detect snprintf()/vsnprintf() (cheat by using Config.pm) and use
716    them when available.
717    https://rt.cpan.org/Ticket/Display.html?id=69147
718
719  - if t1lib failed to reinitialize it would be left as marked
720    initialized.
721    https://rt.cpan.org/Ticket/Display.html?id=69877
722
723  - update the bundled (and still modified) Devel::CheckLib
724    https://rt.cpan.org/Ticket/Display.html?id=69170
725
726 Imager 0.84_01 - 8 Aug 2011
727 ==============
728
729 Development release as a sanity check for the types re-work.
730
731 Massive types re-work:
732
733  - the type used internally for pixel co-ordinates and image sizes is
734    now 64-bit on 64-bit platforms (at least sane ones).
735
736  - size_t is now used consistently for memory block sizes.
737
738  - since this changes the binary interface, the Imager API version has
739    been incremented.  Any module that uses the API will need to be
740    rebuilt.  In most cases that will be enough, but calls to any APIs
741    that take a pointer to image sizes may need source changes.
742
743  - you should be able to create very large images on 64-bit systems,
744    if you have enough memory.  Successfully created a 32768 x 49192 x
745    3 channel image, filled with a tiled image and scaled it.  The
746    unscaled image was also successfully saved to a JPEG.
747
748  - check the image size before attempting to write BMP, GIF, JPEG,
749    PNG, SGI, TGA, TIFF images.
750
751  - correctly handle reading TGA images over 32767 pixels wide or tall.
752
753 Incidental changes:
754
755  - the gif_left and gif_top tags are now clamped to non-negative
756    values when writing a GIF image.
757
758  - removed dead callback read/write code
759
760 The default maximum memory size when reading files is now 1G.
761
762 Imager 0.84 - 20 Jun 2011
763 ===========
764
765  - Imager no longer inherits from Exporter (unless you're running an
766    old, old perl.
767
768  - Imager can now write progressive JPEGs (it could always read them).
769    https://rt.cpan.org/Ticket/Display.html?id=68691
770
771 Bug fixes:
772
773  - re-work, document and test Imager's logging facility.
774    https://rt.cpan.org/Ticket/Display.html?id=65227
775
776  - fix META.yml testing and the generated META.yml
777    https://rt.cpan.org/Ticket/Display.html?id=65235
778
779  - test and add error reporting to to_*() family methods
780
781  - add to_rgb_double() method.
782    https://rt.cpan.org/Ticket/Display.html?id=65101
783
784  - Imager no longer exports anything by default
785    https://rt.cpan.org/Ticket/Display.html?id=65228
786
787  - convert colors to grayscale if the supplied (or generated) palette
788    contains only grays when performing error diffusion color
789    translation.
790    https://rt.cpan.org/Ticket/Display.html?id=68508
791
792  - writing a paletted image to GIF wouldn't always use the colors
793    supplied (or generated, eg. via make_colors => "mono"), which was
794    confusing at best.
795    https://rt.cpan.org/Ticket/Display.html?id=67912
796
797  - replace (imager|tony)@imager.perl.org in the doc, since I don't
798    plan to continue receiving mail at that address.
799    https://rt.cpan.org/Ticket/Display.html?id=68591
800
801 Imager 0.83 - 21 May 2011
802 ===========
803
804 Bug fixes:
805
806  - diag() the error message on failure for some TIFF tests that are
807    failing on a Solaris smoker.
808    http://www.cpantesters.org/cpan/report/6396db1e-8090-11e0-9682-112b785ebe45
809
810 Imager 0.82_01 - 17 May 2011
811 ==============
812
813 Dev release, in case the compose tests are too sensitive.
814
815 Bug fixes:
816
817  - Imager::Font::T1 incorrectly checked for absolute filename under
818    Win32.  Thanks to kmx for the report and fix.
819    https://rt.cpan.org/Ticket/Display.html?id=67963
820
821  - compose() with the target, source or mask position off the top or
822    left of the target image didn't clip the source image correctly.
823    https://rt.cpan.org/Ticket/Display.html?id=67220
824
825  - compose() now returns a useful error message on a non-positive
826    opacity.
827
828  - compose.im now at 100% test coverage. (As opposed to, umm, much,
829    much less.)
830
831 Imager 0.82 - 14 Mar 2011
832 ===========
833
834 Bug fixes:
835
836  - eliminate calls to i_has_format() from the test suite, since it's
837    no longer a useful way to check for file format support.  Eliminate
838    i_has_format() from the functions exposed via XS.
839    https://rt.cpan.org/Ticket/Display.html?id=65863
840
841  - eliminate calls to note(), which isn't in the (very old) version of
842    Test::More we have as a pre-requisite.  note() is modern enough
843    that I don't feel a need to require a Test::More upgrade for it.
844    https://rt.cpan.org/Ticket/Display.html?id=65864
845
846  - skip the threads tests on Test::More 2.00_*
847    https://rt.cpan.org/Ticket/Display.html?id=65812
848
849  - add an (unshipped) test to check Imager's internal POD links
850    https://rt.cpan.org/Ticket/Display.html?id=65749
851
852  - improve the library detection summary
853    https://rt.cpan.org/Ticket/Display.html?id=9675
854
855  - increase the version of Imager::Font::Type1 so that upgrades don't
856    downgrade the version in this file.
857    https://rt.cpan.org/Ticket/Display.html?id=66250
858
859  - if we see an -rpath (or -R) option in $Config{lddlflags} supply
860    that option for the directories that would normally go in
861    LD_RUN_PATH.  Typically an explicit -rpath overrides LD_RUN_PATH.
862    https://rt.cpan.org/Ticket/Display.html?id=65955
863
864 Imager 0.81 - 14 Feb 2011
865 ===========
866
867  - added coverage tests for masked images (maskimg.c @100% test coverage)
868
869  - add hsv() method to Imager::Color
870    Thanks to Leolo (Philip Gwyn)
871    https://rt.cpan.org/Ticket/Display.html?id=65385
872
873  - split libt1 Type 1 font support into a sub-module
874    https://rt.cpan.org/Ticket/Display.html?id=49616 (partial)
875
876  - add a preload() class method for use in forking servers, and to
877    work around limitations in PAR.
878    https://rt.cpan.org/Ticket/Display.html?id=65665
879
880 Bug fixes:
881
882  - paletted writes to a masked image are now masked correctly.
883    Revealed by new coverage tests.
884
885  - update the filter plugin documentation.
886    https://rt.cpan.org/Ticket/Display.html?id=56513
887
888  - add the matrix() method to Imager::Matrix2d to allow creation of a
889    matrix with specified co-efficients.  You can now multiple an
890    Imager::Matrix2d object by a 9 element array ref or a number.
891    https://rt.cpan.org/Ticket/Display.html?id=29938
892
893  - really fix loading TTF fonts with FT2 when FT1 isn't available.
894    Thanks to Leolo (Philip Gwyn)
895    https://rt.cpan.org/Ticket/Display.html?id=65386
896    https://rt.cpan.org/Ticket/Display.html?id=62855
897
898  - make sure each test script that needs testout/ creates it.
899    https://rt.cpan.org/Ticket/Display.html?id=65088
900
901  - handle a slightly different warning from libtiff 4.x
902    https://rt.cpan.org/Ticket/Display.html?id=65268
903
904  - the sat transform2() op returned an incorrect saturation.
905    https://rt.cpan.org/Ticket/Display.html?id=65391
906
907 Imager 0.80 - 17 Jan 2011
908 ===========
909
910  - added coverage tests for Imager::Fountain and Imager::Color::Float
911
912  - Imager is now maintained in git
913    http://git.imager.perl.org/imager.git
914    git://git.imager.perl.org/imager.git
915
916 Bug fixes:
917
918  - images with an translucent alpha channel were not scaled correctly
919    by the default (qtype=normal) scaling method.
920    https://rt.cpan.org/Public/Bug/Display.html?id=63922
921
922  - Imager::Color::Float now translates "#FFFFFF" to white instead of
923    just a little darker.
924
925  - make the default color map build algorithm "mediancut".  This
926    changes the default color map builder for writing GIFs back to what
927    it was in 0.77, reverting a performance regression.
928    https://rt.cpan.org/Ticket/Display.html?id=64785
929
930  - handle failure to create a masked image correctly
931
932 Imager 0.79 - 10 Dec 2010
933 ===========
934
935  - add Imager::Test to the POD coverage tests and document the missing
936    functions.
937
938  - the convert() method now optimizes the case where all output
939    channels are either 0, sourced from a single input channel or 1.
940    This significantly speeds up presets like "addalpha", "green".
941    https://rt.cpan.org/Ticket/Display.html?id=51254
942
943  - add wiggle.pl sample, as suggested by Dan Oppenheim.
944
945  - add the combine() method to combine channels from multiple source
946    images into a new image
947    https://rt.cpan.org/Ticket/Display.html?id=11872
948
949 Bug fixes:
950
951  - treat the co-efficients for convert() as doubles instead of floats.
952
953  - If a higher (earlier) priority font handler failed to load, that
954    would crash preventing loading of later font handlers.
955    https://rt.cpan.org/Ticket/Display.html?id=62855
956
957  - parse defines from the options returned by pkg-config --cflags
958    https://rt.cpan.org/Ticket/Display.html?id=63223
959
960  - a regen of the MANIFEST revealed that GIF and FT2 tests weren't
961    included in the tarball.  They are now included.
962
963 Imager 0.78 - 4 Oct 2010
964 ===========
965
966 Bug fixes:
967
968  - don't access deprecated members of the png_structp.
969    https://rt.cpan.org/Ticket/Display.html?id=60242
970
971  - document that using color objects is faster than supplying colors
972    by name, etc.
973    https://rt.cpan.org/Ticket/Display.html?id=61047
974
975  - Imager::Probe now accepts array references for incpath and libpath.
976    https://rt.cpan.org/Ticket/Display.html?id=60244
977
978 Imager 0.77_02 - 27 Sep 2010
979 ==============
980
981  - moved Win32, FreeType 2 font support into sub-modules.
982    https://rt.cpan.org/Ticket/Display.html?id=49616 (partial)
983    Uses Imager::Probe now.
984    https://rt.cpan.org/Public/Bug/Display.html?id=61328
985
986  - tested successfully with jpeg-8b
987    https://rt.cpan.org/Ticket/Display.html?id=60221
988
989 Bug fixes:
990
991  - from _01: look for missing file support test files in the right
992    places.
993
994  - flood_fill() wouldn't fill the right side of a single scan-line
995    fill area.
996    Thanks to Nicolas Roggli for reporting this.
997
998  - flood_fill wouldn't fill to the left edge of the image if the
999    starting line didn't reach the left edge.
1000    Thanks to Nicolas Roggli for reporting this.
1001
1002 Imager 0.77_01 - 13 Sep 2010
1003 ==============
1004
1005  - add each library-directory/pkgconfig/ to the pkg-config search path
1006    in Imager::Probe.
1007    Thanks to Justin Davis.
1008    https://rt.cpan.org/Ticket/Display.html?id=60491
1009
1010  - moved GIF, TIFF, JPEG file handling code into sub-modules in
1011    preparation for separate distribution.
1012    https://rt.cpan.org/Ticket/Display.html?id=49616 (partial)
1013
1014    Note: this removed support for libungif from Imager.
1015
1016  - optimize filled box drawing (color, not fill)
1017
1018 Bug fixes:
1019
1020  - Imager::Probe was calling ExtUtils::Liblist to initialize
1021    LD_RUN_PATH supplying an undefined value rather than the found
1022    directory.  Thanks to Justin Davis.
1023    https://rt.cpan.org/Ticket/Display.html?id=60491
1024
1025  - only prepend ./ to font filenames when passing them to T1Lib and
1026    then only when it would use its search mechanisms.
1027    https://rt.cpan.org/Ticket/Display.html?id=60509
1028
1029  - fix the cache check for the X rgb.txt loader.  This is typically
1030    used for color translation on Unix-like systems, and the fix
1031    improves performance of supplying colors by name by about 80 times.
1032    Test code that managed 3400 10x10 pixel boxes/second sped up to
1033    25700 boxes/second.
1034
1035  - clarify that Imager doesn't write EXIF metadata to images.
1036    https://rt.cpan.org/Ticket/Display.html?id=60637
1037
1038  - Imager::Probe can now search subdirectories under its include path.
1039    Used by the PNG Makefile.PL to find headers and libraries when they
1040    aren't in the base directory, as in cygwin.
1041    https://rt.cpan.org/Ticket/Display.html?id=60635
1042
1043 Imager 0.77 - 11 Aug 2010
1044 ===========
1045
1046 I don't want Imager::File::PNG indexed as part of Imager, but forgot
1047 to update the META.yml before updating the version.
1048
1049  - don't index Imager::File::PNG as part of Imager
1050
1051  - add resources to META.yml
1052
1053 Imager 0.76 - not released
1054 ===========
1055
1056 Bug fixes:
1057
1058  - the align_string() method would ignore a string of "0" due to a
1059    mis-use of C< ||= >.
1060    Thanks to Maurice Height for reporting this.
1061    https://rt.cpan.org/Ticket/Display.html?id=60199
1062
1063 Imager 0.75_03 - 09 Aug 2010
1064 ==============
1065
1066 Bug fixes:
1067
1068  - read_types() and write_types() would include png when it wasn't
1069    available due to a problem with the %formats tie
1070
1071  - handle dependent libraries correctly (eg -lpng requiring -lz) in
1072    the code run phase of library probing.
1073
1074 Imager 0.75_02 - 07 Aug 2010
1075 ==============
1076
1077 Bug fixes:
1078
1079  - add file missing from MANIFEST, which was causing TIFF failures.
1080
1081 Imager 0.75_01 - 06 Aug 2010
1082 ==============
1083
1084 Test release for the new PNG probe.
1085
1086  - added the ability to read multiple-image PNM files.
1087    Note that unlike the pbm/pgm/ppm specification this accepts mixed
1088    format files and allows white space padding between files.
1089    Thanks to Philip Gwyn (Leolo) for this patch.
1090
1091  - moved the PNG file handling code into a sub-module in preparation
1092    for separate distribution.
1093    https://rt.cpan.org/Ticket/Display.html?id=49616 (partial)
1094    Also helps avoid complications from -I/-L compile/link options from
1095    other libraries.
1096
1097 Bugs:
1098
1099  - Imager->new(data => $data) didn't try to process image file data in
1100    $data
1101    https://rt.cpan.org/Ticket/Display.html?id=58761
1102
1103  - t/t50basicoo.t no longer depends on the other tests to generate its 
1104    input files.
1105    https://rt.cpan.org/Ticket/Display.html?id=9798
1106    Also, it wasn't testing pnm (pnm vs ppm mix-up)
1107
1108  - update the documentation of hardinvert to match the change in 0.62.
1109    https://rt.cpan.org/Ticket/Display.html?id=59785
1110
1111  - added hardinvertall filter which also inverts the alpha channel
1112    (sorry for the mess)
1113
1114  - when probing for TIFF, set LD_RUN_PATH just as the Makefile does so
1115    the probe can find the library for the test run.
1116    https://rt.cpan.org/Ticket/Display.html?id=57518
1117
1118 Imager 0.75 - 20 Jun 2010
1119 ===========
1120
1121  - use PERL_NO_GET_CONTEXT to slightly improve performance on threaded
1122    perls (not measured)
1123
1124 Bugs:
1125
1126  - an opacity fill based on a fountain fill would segfault when
1127    filling an 8-bit/sample image.
1128
1129  - merge thickline branch polygon fix
1130    https://rt.cpan.org/Ticket/Display.html?id=43518
1131
1132 Imager 0.74 - 7 May 2010
1133 ===========
1134
1135 Bug fixes:
1136
1137  - read_multi() didn't handle a missing file format library correctly,
1138    aborting on failing to call i_readgif_multi_wiol() or
1139    i_readtiff_multi_wiol().
1140
1141  - fix spelling errors patched by Debian
1142    http://svn.debian.org/viewsvn/pkg-perl/trunk/libimager-perl/debian/patches/spelling.patch?revision=54839&view=markup
1143
1144  - add an (unshipped) author test to spellcheck Imager's POD.
1145
1146  - update the TIFF file format documentation
1147    https://rt.cpan.org/Ticket/Display.html?id=56510
1148
1149  - lib/Imager/IO.pod was written almost 4 years ago but never shipped.
1150
1151 Imager 0.73 - 15 Mar 2010
1152 ===========
1153
1154  - implement outline circles, both anti-aliased and not
1155    https://rt.cpan.org/Ticket/Display.html?id=19755
1156
1157  - a combine => "none" fill to a 1 or 3 channel image would produce
1158    the incorrect colour.
1159
1160 Imager 0.72 - 09 Dec 2009
1161 ===========
1162
1163 Bump version for release, since 0.71_03 is stable with CPAN testers.
1164
1165 Imager 0.71_03 - 5 Dec 2009
1166 ==============
1167
1168  - further adjust the threads test so it only performs the tests on
1169    perls where it's expected to work, and only if the threads module
1170    can be loaded.
1171
1172 Imager 0.71_02 - 1 Dec 2009
1173 ==============
1174
1175  - adjust the way we load the threads module for the threads test so
1176    it works with non-threaded perls
1177
1178 Imager 0.71_01 - 30 Nov 2009
1179 ===========
1180
1181 Bug fixes:
1182
1183  - use scanline oriented operations to flip images instead of pixel
1184    operations
1185    https://rt.cpan.org/Ticket/Display.html?id=39278
1186
1187  - use double/sample operations to flip large sample images instead of
1188    8-bit sample operations.
1189    https://rt.cpan.org/Ticket/Display.html?id=39280
1190
1191  - fix POD nits
1192    https://rt.cpan.org/Ticket/Display.html?id=51874
1193
1194  - prevent double-frees when someone creates Imager objects and then
1195    creates a thread.  Note: this just handles some simple cases,
1196    Imager doesn't support perl threads, and isn't likely to.
1197    https://rt.cpan.org/Ticket/Display.html?id=52268
1198
1199 Imager 0.71 - 16 Nov 2009
1200 ===========
1201
1202  - add the opacity fill type - an adaptor that modifies the opacity of
1203    another fill.
1204
1205 Bug fixes:
1206
1207  - the conv filter now enforces that the sum of the coefficients is
1208    non-zero.  Also, rather than skipping pixels off the edge off the
1209    edge of the image, the closest edge pixel is used.  Previously
1210    dividing by the zero sum of coefficients could cause invalid
1211    results or runtime exceptions.
1212    Thanks to David Cantrell's Alpha-NetBSD CPAN test box for revealing
1213    this bug.
1214
1215 Imager 0.70 - 21 Sep 2009
1216 ===========
1217
1218 Bug fixes:
1219
1220  - release image row and comments memory on all error returns in gif
1221    reader
1222
1223  - handle zero length extensions, previously this would cause a null
1224    pointer dereference
1225    Thanks to Krzysztof Wojtaś for the test data and fix for this.
1226
1227  - an integer division meant that preview scaling to below 1 pixel
1228    wide or high (which isn't too useful anyway) was calculating using
1229    NaNs on most platforms, and causing an exception on others.
1230    Thanks to David Cantrell for producing a backtrace of the crash on
1231    his Alpha-NetBSD CPAN test box which made it possible to track this
1232    down.
1233
1234 Imager 0.69 - 08 Sep 2009
1235 ===========
1236
1237 Bug fixes:
1238
1239  - broken test fix - was attempting to call a function skip_all, when
1240    that should be a parameter to plan().
1241
1242  - briefly document apidocs.perl, the tool used to build
1243    Imager::APIRef and make some minor enhancements
1244
1245  - various minor documentation enhancements and fixes.
1246
1247 Imager 0.68 - 07 Sep 2009
1248 ===========
1249
1250  - Imager->new(file => $filename) and other similar incantations will
1251    load the given file.
1252    https://rt.cpan.org/Ticket/Display.html?id=48261
1253
1254 Bug fixes:
1255
1256  - avoid using CHECK as a label in Imager::Test
1257    http://nntp.x.perl.org/group/perl.cpan.testers/5220921
1258
1259  - re-work most image file test files that require a library into
1260    separate library present/not present files to remove stupidly long
1261    conditionals
1262
1263  - don't treat rubthrough() outside the bounds of the target image as
1264    an error.
1265    http://nntp.x.perl.org/group/perl.cpan.testers/5185716
1266
1267 Imager 0.67_01 - 02 Sep 2009
1268 ==============
1269
1270 Bug fixes:
1271
1272  - correct documentation of default of raw image interleave read
1273    parameter
1274    https://rt.cpan.org/Ticket/Display.html?id=42074
1275
1276  - add raw_ prefix to raw read parameters, though the original names
1277    still work.
1278
1279  - fail the read if an invalid raw_interleave parameter is supplied
1280
1281  - warn if no interleave or raw_interleave parameter is supplied,
1282    since the documented default was wrong, and incompatible with the
1283    write format
1284
1285  - for reading raw images, if raw_storechannels > raw_datachannels,
1286    set the extra channels in the image to 0
1287
1288  - when probing for executables like freetype-config, search for .bat
1289    and .cmd on MSWin32, as well as .exe.
1290    https://rt.cpan.org/Ticket/Display.html?id=49275
1291
1292  - re-work the external libraries section of README:
1293    - list Debian and Redhat package names for each library
1294    - reformatting
1295    - update URLs
1296
1297  - use the new EU::MM META_MERGE facility instead of generating
1298    META.yml from scratch
1299    https://rt.cpan.org/Ticket/Display.html?id=47888
1300
1301  - use Devel::CheckLib (bundled, modified) to check which release of
1302    libtiff is installed and reject 3.9.0
1303    http://bugzilla.maptools.org/show_bug.cgi?id=2088
1304    http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=543079
1305
1306 Imager 0.67 - 12 Dec 2008
1307 ===========
1308
1309 Bug fixes:
1310
1311  - fix a packaging error
1312
1313 Imager 0.66 - 12 Dec 2008
1314 ===========
1315
1316  - 24-bit color .ICO/.CUR files can now be read.
1317
1318 Bug fixes:
1319
1320  - an optimization skipping 0 src alpha values could cause the
1321    rubthrough() to read past the end of a buffer.
1322    http://www.nntp.perl.org/group/perl.cpan.testers/2008/05/msg1509184.html
1323
1324  - corrected a reference leak where writing GIFs would leak memory.
1325    This could also happen calling to_paletted().
1326    Also documented the underlying long existing feature where the
1327    colors parameter is filled with the generated color table and added
1328    tests for it.
1329    http://rt.cpan.org/Ticket/Display.html?id=41028
1330
1331  - write out the image size in bytes field of a BMP correctly.
1332    http://rt.cpan.org/Ticket/Display.html?id=41406
1333
1334  - add limited tests for Imager::ExtUtils
1335
1336  - make Imager::ExtUtils->includes use an absolute path, since
1337    a relative path could cause failures using Inline::C.
1338    http://rt.cpan.org/Ticket/Display.html?id=37353
1339
1340  - re-arrange the POD for Imager::Font::BBox:
1341    - mark total_width(), pos_width(), end_offset() obsolete, since
1342      they're mostly for backwards compatibility
1343    - group width methods and height methods
1344    https://rt.cpan.org/Ticket/Display.html?id=39999
1345
1346 Imager 0.65 - 20 May 2008
1347 ===========
1348
1349 Bug fixes:
1350
1351  - In some cases when an error occurs reading those parts of a JPEG
1352    file after the image the scan-line buffer could be freed a second
1353    time.  In cases where the the error occured while reading the image
1354    data it's possible that the buffer could have leaked.
1355    Thanks to Gabriel Vasseur for reporting this and help in tracking
1356    it down.
1357
1358  - the gif_screen_height tag was overriding the screen width and being
1359    ignored for the screen height when present.
1360    https://rt.cpan.org/Public/Bug/Display.html?id=35568
1361
1362 Imager 0.64 - 23 April 2008
1363 ===========
1364
1365 This is a bug fix release.  This includes a fix for a possible
1366 security issue.
1367
1368 Bug fixes:
1369
1370  - Possible security issue: The floating point sample path for image
1371    based fills had a buffer overflow.  This would overwrite the end of
1372    a malloc()ed buffer with double precision floats.
1373    http://rt.cpan.org/Ticket/Display.html?id=35324
1374    CVE-2008-1928
1375
1376  - check that the result of fileno($fh) is defined rather than simply
1377    true when read() or write() is supplied with an fh parameter.
1378    http://rt.cpan.org/Ticket/Display.html?id=35139
1379
1380  - i_scale_axis() wasn't checking the result of i_img_new_ch()
1381    resulting in a SIGSEGV when attempting to scale an image to a size
1382    too large to fit in memory.  This is a NULL pointer access issue,
1383    not a buffer overflow.
1384    Added a check for the failure.
1385    scale_calculate() (and hence scale()) will now fail if any of the
1386    scale size parameters are a reference.
1387    http://rt.cpan.org/Ticket/Display.html?id=35172
1388
1389  - Regression: filling a greyscale image with a hatch used the wrong
1390    color channels from the supplied fg/bg colors.
1391    https://rt.cpan.org/Ticket/Display.html?id=35278
1392
1393  - fixed a related problem for image fills.
1394
1395 Imager 0.63 - 7 April 2008
1396 ===========
1397
1398 This release primarily contains changes to improve ease of use -
1399 rather than you having to convert images to the appropriate number of
1400 channels, Imager handles it internally.  How to handle drawing colors
1401 and the default combine mode is a thornier problem left for some other
1402 release.
1403
1404  - the font libraries are now only initialized when needed.
1405    http://rt.cpan.org/Ticket/Display.html?id=28825
1406
1407  - moved the imtoc.perl code into Imager::Preprocess
1408
1409  - paste() and rubthrough() now adapt the source image data to the
1410    destination, so you can now safely paste/rubthrough from greyscale
1411    images to color images or back, or from alpha channel images to
1412    noalpha channels or back.
1413    https://rt.cpan.org/Ticket/Display.html?id=30908
1414
1415  - rubthrough() now falls back to pasting when the source doesn't have
1416    an alpha channel.  This effectively treats the source as having a
1417    max alpha channel, the right thing to do.
1418    http://rt.cpan.org/Ticket/Display.html?id=29944
1419
1420  - re-worked most of the area filling code to use a common set of
1421    functions when filling.
1422    Corrected normal combine mode.
1423    Rewrote most of the combine modes to match the way the SVG draft
1424    defines them with respect to a translucent source and destination.
1425    Added tests for translucent source and destination.
1426    Added tests to check 8-bit/sample and double/sample combines work
1427    similarly.
1428    https://rt.cpan.org/Ticket/Display.html?id=29879
1429
1430  - writing a 2 or 4 channel image to a JPEG file will now write that
1431    image as if composited against a background, black by default,
1432    overridable with the i_background tag/parameter.
1433    https://rt.cpan.org/Ticket/Display.html?id=29876
1434
1435  - writing a 2 or 4 channel image to a PGM/PPM file will now write
1436    that image as if composited against a background, black by default,
1437    overridable with the i_background tag/parameter.
1438    http://rt.cpan.org/Ticket/Display.html?id=30074
1439
1440  - writing a 2 or 4 channel image to a BMP file will now write that
1441    image as if composited against a background, black by default,
1442    overridable with the i_background tag/parameter.
1443    http://rt.cpan.org/Ticket/Display.html?id=30075
1444
1445 Bug fixes:
1446
1447  - Imager::Matrix2d->translate() now only requires one of the x or y
1448    parameters.
1449    http://rt.cpan.org/Ticket/Display.html?id=29937
1450
1451  - mixing qtype scaling now sets all channels of a pixel to zero if
1452    the pixel has zero coverage (zero alpha).  This should produce more
1453    compressible output files.
1454    http://rt.cpan.org/Ticket/Display.html?id=32324
1455
1456  - removed the pointless #! line from lib/Imager/Font/Wrap.pm
1457    Noticed when I saw:
1458    https://bugzilla.redhat.com/show_bug.cgi?id=166254
1459    I'm not changing the #! lines of the sample code, since it's sample
1460    code, not intended for installation.
1461    http://rt.cpan.org/Ticket/Display.html?id=33408
1462
1463  - some TGA images weren't being detected correctly as TGA images
1464    https://rt.cpan.org/Ticket/Display.html?id=32925
1465
1466  - handling of the left-over bit for 16-bit/pixel TGA images has been
1467    changed to match the behaviour of the GIMP.  Previously the bit
1468    being set was treated as an opaque pixel, but one user reported a
1469    problem with loading such an image.  I haven't been able to find any
1470    tools beyond the GIMP that handle alpha-channel 16-bit TGAs, so
1471    I'll match it's behaviour.  See issue 114913 in the GIMP's
1472    bugzilla.
1473    http://rt.cpan.org/Ticket/Display.html?id=32926
1474
1475 Imager 0.62 - 10 December 2007
1476 ===========
1477
1478  - Makefile.PL now expands ~/path supplied to --incpath or --libpath
1479    to /path under your home directory.
1480    http://rt.cpan.org/Ticket/Display.html?id=29484
1481
1482  - the old dynaload code used Mach API functions to load dynamic
1483    libraries on Mac OS X.  These APIs have been deprecated in OS X
1484    10.5 and were causing some build problems.
1485    So henceforth Imager uses the dlopen() family of functions, and you 
1486    will need version 10.3 or later of OS X.
1487
1488  - added the det() function to the transform2() engine.
1489    added the sample quad_to_square.pl
1490    Courtesy Richard Fairhurst.
1491    http://rt.cpan.org/Ticket/Display.html?id=31244
1492
1493 Bug fixes:
1494
1495  - samples/gifscale.pl sourced the base value for gif_top from
1496    gif_left.
1497    Thanks to Eleneldil G. Arilou for pointing this out.
1498
1499  - t/t82inline.t no longer loads B at runtime, to work around a bug
1500    in some 5.005_0[45] installations.
1501    http://rt.cpan.org/Ticket/Display.html?id=30508
1502
1503  - work around Module::Depends::Intrusive bug #21229
1504    http://rt.cpan.org/Ticket/Display.html?id=30520
1505
1506  - the hardinvert filter no-longer inverts the alpha channel.
1507    http://rt.cpan.org/Ticket/Display.html?id=30002
1508
1509  - the hardinvert filter now supports large samples
1510
1511 Imager 0.61_02 - 28 November 2007
1512 ==============
1513
1514  - major TIFF support re-work
1515    http://rt.cpan.org/Ticket/Display.html?id=20329
1516
1517  - added a C level image interface for accessing samples from 1-32
1518    bits, exposed this at the perl level in getsamples()
1519
1520  - the conv filter now works at floating point precision for high bit
1521    images
1522
1523  - added is_bilevel method to test whether an image should be written as
1524    a bilevel image if the image format supports it.
1525
1526  - added -log-stderr as an Imager import list option
1527
1528  - added some important types to Imager::APIRef
1529
1530  - added test_image_double() to Imager::Test
1531
1532 Bug fixes:
1533
1534  - Imager::Fountain couldn't read GIMP gradient files with 10 or more
1535    segments
1536
1537  - the scale() method with qtype mixing now handles images with an
1538    alpha channel correctly.
1539
1540  - fixed a broken link from the "animated GIF" entry in the concept index.
1541    Thanks to Slaven Rezic.
1542    http://rt.cpan.org/Ticket/Display.html?id=30889
1543
1544  - on some perl's the infix expression parser test would fail due to
1545    actions in the grammar returning false.  Made sure all actions return
1546    a true value.
1547    Thanks to Richard Fairhurst for spending a lot of time in tracking
1548    down this problem.
1549    http://rt.cpan.org/Public/Bug/Display.html?id=29562
1550
1551 Imager 0.61 - 5 November 2007
1552 ===========
1553
1554  - added samples/gifscale.pl, which adjusts the screen size/position tags
1555    when scaling an animated gif
1556    http://rt.cpan.org/Ticket/Display.html?id=27591
1557
1558 Bug fixes:
1559
1560  - correct handling of sz in matrix_transform() - this should allow
1561    perspective type transformations to work now.
1562    http://rt.cpan.org/Ticket/Display.html?id=29936
1563
1564  - prevent a cast to integer warning on x64 builds in datatypes.c
1565    also fixed some other type warnings
1566    https://rt.cpan.org/Ticket/Display.html?id=30204
1567
1568  - some sub-directory tests depended on files produced by the parent
1569    directory tests
1570    http://rt.cpan.org/Ticket/Display.html?id=30203
1571
1572  - Imager::Font::Wrap doesn't correctly set savepos
1573    thanks to Nikita Dedik and Eleneldil G. Arilou for reporting this.
1574    http://rt.cpan.org/Ticket/Display.html?id=29771
1575
1576  - test 171 in t/t01introvert.t was failing on perls configured to
1577    use long double.
1578    http://rt.cpan.org/Ticket/Display.html?id=29413
1579
1580  - the code for the transform2() uminus operator was missing a break.
1581    Added tests for better code coverage of the ops.
1582    http://rt.cpan.org/Ticket/Display.html?id=29296
1583
1584  - the SGI RLE compression code could overflow its compression buffer
1585    http://rt.cpan.org/Ticket/Display.html?id=30334
1586
1587  - the 32-bit output function used by the SGI code only handled values
1588    under 0x10000.  This was most noticable when writing large RLE images.
1589    http://rt.cpan.org/Ticket/Display.html?id=30335
1590
1591  - validate chan_count for chans == NULL for each of the i_gsamp()
1592    implementations.
1593    http://rt.cpan.org/Ticket/Display.html?id=28985
1594
1595  - attempt to work around the test failure at 
1596    http://www.nntp.perl.org/group/perl.cpan.testers/2007/09/msg650810.html
1597    http://rt.cpan.org/Ticket/Display.html?id=29562
1598
1599  - improve the error messages produced when attempting to read or write
1600    an unknown image file format.
1601    http://rt.cpan.org/Ticket/Display.html?id=30103
1602
1603  - improve the transform2() documentation
1604    http://rt.cpan.org/Ticket/Display.html?id=29267
1605
1606  - correctly generate the author key in META.yml
1607    http://rt.cpan.org/Ticket/Display.html?id=30377
1608
1609  - correctly blend a rotated (or matrix_transformed()) image when
1610    performing interpolation in the presence of an alpha channel.
1611    Also corrected the centring of the rotated image on the output
1612    image.
1613
1614 Imager 0.60 - 30 August 2007
1615 ===========
1616
1617  - Finished/rewrote Arnar's old SGI RGB file format support, so Imager
1618    now has full SGI RGB image format, including RLE and 16-bit/sample
1619    images.
1620    https://rt.cpan.org/Ticket/Display.html?id=8666
1621
1622  - logging functions are now available in the API
1623
1624  - applied Gabriel Vasseur's patch
1625    added documentation, further tests, and support for greyscale images
1626    Obviously problems are my fault :)
1627    https://rt.cpan.org/Ticket/Display.html?id=28142
1628
1629  - the mask for ICO/CUR images is now applied as an alpha channel to
1630    the returned image.  For the old behaviour, supply ico_masked => 0
1631    to read() or read_multi().  This should be less confusing when
1632    using Imager as a general image processor.
1633    https://rt.cpan.org/Ticket/Display.html?id=29001
1634
1635 Bug fixes:
1636
1637  - in some cases it's possible for giflib/libungif to return color 
1638    indexes outside the range of colors defined by the image's palette.
1639    We now expand the palette to match the indexes used.
1640    Thanks to Gabriel Vasseur for reporting this.
1641
1642  - fixed various memory leaks that could occur when failing to read png,
1643    jpeg, bmp or tga files.
1644
1645  - to avoid confusion, channels not present in the image are returned as
1646    zero by getscanline().  This has no effect on the C level i_glin()
1647    and i_glinf() API functions which continue to not set the unused
1648    channels.
1649
1650  - the convert() method now returns an image of the same sample size as
1651    the source image.
1652    https://rt.cpan.org/Ticket/Display.html?id=28492
1653
1654  - remove repeated text in Imager::Files
1655    http://rt.cpan.org/Ticket/Display.html?id=27589
1656
1657  - be even more explicit that scale() and friends don't modify the source
1658    image, but return a new image.
1659    http://rt.cpan.org/Ticket/Display.html?id=28570
1660
1661  - improve the error message from errstr() when you try to load a font
1662    for which the driver hasn't been built in Imager.
1663    http://rt.cpan.org/Ticket/Display.html?id=27571
1664
1665  - transparency is now enabled by default when writing GIF images
1666    http://rt.cpan.org/Ticket/Display.html?id=27615
1667
1668  - Imager would not load on Windows 98
1669    http://rt.cpan.org/Ticket/Display.html?id=27653
1670
1671 Imager 0.59 - 14 June 2007
1672 ===========
1673
1674 Bug fixes:
1675
1676  - fixes a regression introduced by the fixes for RT 11972
1677    http://rt.cpan.org/Ticket/Display.html?id=27546
1678
1679  - cropping outside the image would return an Imager object with
1680    no low-level image object, instead of returning false.
1681    Fixed by: Philip Gwyn (Leolo)
1682    http://rt.cpan.org/Ticket/Display.html?id=27509
1683
1684 Imager 0.58 - 16 May 2007
1685 ===========
1686
1687 No significant changes from 0.57_01.
1688
1689 Imager 0.57_01 - 11 May 2007
1690 ==============
1691
1692  - added to_rgb16 to produce a 16-bit/sample version of an image
1693
1694  - improve freetype 1.x text output efficiency
1695
1696 Bug fixes:
1697
1698  - search another place for rgb.txt, and check all the places 
1699    Imager::Color checks when deciding whether to skip testing it
1700    http://rt.cpan.org/Ticket/Display.html?id=26064
1701
1702  - use a convolution kernel size based on the stddev rather than a
1703    fixed size when performing a gaussian blur
1704    http://rt.cpan.org/Ticket/Display.html?id=25645
1705
1706  - document the difference() method's mindist parameter, and debug it.
1707
1708  - put the Imager release number in the Inline::C generated code to
1709    regenerate Inline code when a new release of Imager is installed.
1710    http://rt.cpan.org/Ticket/Display.html?id=26278
1711
1712  - fix rendering on alpha channel images for the FreeType 1.x driver.
1713    http://rt.cpan.org/Ticket/Display.html?id=11972
1714
1715  - fix rendering on alpha channel images for the T1lib driver.
1716    http://rt.cpan.org/Ticket/Display.html?id=11972
1717
1718  - reworked library probing, we can now set more than one probe
1719    function for a library.  Disabled the default (non-freetype-config)
1720    library probe and added an extra probe function that searches for
1721    both ft2build.h and whatever it includes, and adds -I as needed.
1722    Hopefully this will fix build problems like
1723    http://www.nntp.perl.org/group/perl.cpan.testers/2007/05/msg472281.html
1724    http://rt.cpan.org/Ticket/Display.html?id=26086
1725
1726 Imager 0.57 - 30 Apr 2007
1727 ===========
1728
1729 This is a maintenence release fixing a security issue in Imager.
1730
1731  - CRITICAL: a specially crafted compressed BMP file can cause a buffer
1732    overflow in malloced memory.  There will be further discussion of
1733    this issue in the ticket below.
1734    http://rt.cpan.org/Ticket/Display.html?id=26811
1735    CVE-2007-2459  CVE-2007-2413
1736    The descriptions at cve.mitre.org varied in quality, please see the
1737    ticket at rt.cpan.org for a more accurate description of the issue.
1738
1739 Imager 0.56 - 1 Apr 2007
1740 ===========
1741
1742  - added support for reading 16-bit/sample PGM/PPM images
1743
1744  - added support for writing 16-bit/sample PGM/PPM images
1745
1746  - improved performance of reading PBM/PGM/PPM images
1747
1748  - added support for writing PBM images if the image is paletted and
1749    contains only black and white
1750
1751  - added a new make_colors value - "mono"
1752
1753  - switched from the svn log Changes to a manual Changes to reduce
1754    noise
1755
1756  - new sample code - samples/flasher.pl
1757
1758 Bug fixes:
1759
1760  - CRITICAL: the "Imager" typemap entry (not used by Imager itself)
1761    was returning an image object with an extra reference, this
1762    resulted in a memory leak.
1763    http://rt.cpan.org/Ticket/Display.html?id=24992
1764
1765  - fix rendering on alpha channel images for the FreeType 2.x driver
1766    http://rt.cpan.org/Ticket/Display.html?id=11972
1767
1768  - reading bmp files now consitently handles short reads.  You can now
1769    supply a parameter to treat a short read as successful and set
1770    i_incomplete
1771    http://rt.cpan.org/Ticket/Display.html?id=8426
1772
1773  - previously, reading ASCII PBM files required spaces between samples,
1774    even though the format doesn't require that
1775
1776  - improved documentation of the unsharpmask filter (I hope)
1777    http://rt.cpan.org/Ticket/Display.html?id=25531
1778
1779  - force flushing of the output from i_tt_dump_names() and test output
1780    in t/t35ttfont.t to prevent output from being mixed up.
1781    https://rt.cpan.org/Ticket/Display.html?id=24859
1782
1783  - rewrite a conditional expression as an if() to hopefully work around
1784    a bug in the pre-4.0 GCC Apple shipped with OS X 10.4.
1785    https://rt.cpan.org/Ticket/Display.html?id=25561
1786
1787  - avoid Data::Dumper in regops.perl to support older releases of perl
1788    https://rt.cpan.org/Ticket/Display.html?id=24391
1789
1790 Imager 0.55 - 16 Dec 2006
1791 ===========
1792
1793 This is primarily a bug fix release.
1794
1795 Note: Test::More is now a pre-requisite for Imager and is no longer bundled.
1796
1797 There is one new feature:
1798
1799  - the Win32 font driver now supports UTF8 (RT 22166)
1800    http://www.cpanforum.com/threads/3276
1801    http://rt.cpan.org/Ticket/Display.html?id=22166
1802
1803 Several bugs were fixed:
1804
1805  - the string() method would not output the string "0"
1806    http://rt.cpan.org/Public/Bug/Display.html?id=21770
1807
1808  - fills.c was failing to compile on Solaris 10 (compiler unknown)
1809    http://rt.cpan.org/Public/Bug/Display.html?id=21944
1810
1811  - the gif_disposal and gif_user_input tags weren't being read from
1812    the file correctly
1813    http://rt.cpan.org/Public/Bug/Display.html?id=22192
1814
1815  - gif.c was failing to build under MSVC
1816    http://rt.cpan.org/Ticket/Display.html?id=23922
1817
1818  - in some cases strings passed to the string() method were treated as
1819    terminated by NUL (chr 0)
1820    http://rt.cpan.org/Public/Bug/Display.html?id=21770
1821
1822  - on "MSWin32" perl builds we now link to -lzlib instead of -lz since
1823    that's the default build name for zlib on Win32.
1824    http://rt.cpan.org/Ticket/Display.html?id=23064
1825
1826  - search $Config{incpath} for headers too, which we should have been
1827    doing all along.
1828
1829 Win32 font driver fixes:
1830
1831  - the global descent value from bounding box was the wrong sign
1832    http://www.cpanforum.com/threads/3276
1833
1834  - if the first or last glyph overflowed the left or right side of the
1835    advance width they would be clipped
1836
1837
1838 Imager 0.54 - 14 Sep 2006
1839 ===========
1840
1841 This is primarily a feature release:
1842
1843  - a new qtype value 'mixing' has been added to the scale()
1844    method. This is faster than 'normal', slower than 'preview'. This
1845    is based on the method used by pnmscale, and seems to produce less
1846    blurry results than normal.
1847    http://rt.cpan.org/Public/Bug/Display.html?id=20677
1848
1849  - the rubthrough() method can now render onto images with an alpha
1850    channel.
1851    http://rt.cpan.org/Ticket/Display.html?id=20678
1852
1853  - the read_multi() method now falls back to calling doing a single
1854    image read via the read() method and write_multi() will now fall
1855    back to calling write() if a single image is supplied. This means
1856    you can simply call the read_multi() or write_multi() functions
1857    without having to check if the type is formatted by that method.
1858    http://rt.cpan.org/Ticket/Display.html?id=19457
1859    http://rt.cpan.org/Ticket/Display.html?id=19458
1860
1861  - the GIF loop extension can now be written. If you don't have
1862    libungif/giflib 4.1.4 (or some distribution's bugfixed equivalent) you
1863    should upgrade.
1864    http://rt.cpan.org/Ticket/Display.html?id=21185
1865
1866  - getscanline() and setscanline() can now read/write palette index
1867    based data from/to the image for paletted images, by setting type to
1868    'index'.
1869    http://rt.cpan.org/Ticket/Display.html?id=20338
1870
1871  - we no longer hassle you to disable GIF support
1872    http://rt.cpan.org/Ticket/Display.html?id=20687
1873
1874  - minor documentation fixes
1875
1876
1877 Imager 0.53 - 26 Jul 2006
1878 ===========
1879
1880 This is a bugfix release.
1881
1882 Some test code was left in a code path not covered by the test
1883 suite. A test was added to cover this code path and the test code was
1884 removed.
1885 http://rt.cpan.org/Public/Bug/Display.html?id=20705
1886
1887
1888 Imager 0.52 - 25 Jul 2006
1889 ===========
1890
1891 This is primarily a feature release, but contains a fair few bug
1892 fixes, new features:
1893
1894  - ability to read and write MS Windows ICO and CUR files
1895
1896  - you can now add file format plugins to support new file formats
1897
1898  - add POD coverage tests
1899
1900  - setcolors() and addcolors() now accept color names and so on
1901    instead of requiring Imager::Color objects.
1902    http://rt.cpan.org/Ticket/Display.html?id=20056
1903
1904  - flood_fill() can now fill to a specified border color instead of
1905    just to the area the same color as the seed.
1906    http://rt.cpan.org/Ticket/Display.html?id=19618
1907
1908
1909 Bug fixes:
1910
1911  - bounding_box for the T1 driver wasn't converting UTF8 to ascii when
1912    calculating the advance width.
1913    http://rt.cpan.org/Public/Bug/Display.html?id=20554
1914
1915  - bounding_box for the T1 driver wasn't including leading and
1916    trailing spaces in the bounding box as the other drivers did, it also
1917    produced strange results for empty strings or strings containing only
1918    spaces
1919
1920  - when reading CMYK jpeg images they were being transferred to the
1921    image object as is, producing a four channel image. It only looked ok
1922    due to an old still unfixed Photoshop bug. We now convert from the
1923    inverted CMYK that photoshop (and Corel for example) produce into RGB.
1924    http://rt.cpan.org/Ticket/Display.html?id=20416
1925
1926  - reading a CYMK TIFF would result in a 4 channel image, reading any
1927    image with more than 4 channels (eg. RGB with 2 alpha channels) would
1928    result in an error.
1929    http://rt.cpan.org/Ticket/Display.html?id=20415
1930
1931  - added /usr/local/include to the default include search path, since
1932    we were already searching /usr/local/lib for libraries.
1933
1934 And various minor fixes and documentation updates.
1935
1936
1937 Imager 0.51 - 23 Apr 2006
1938 ===========
1939
1940  - fix a validation bug when processing JPEG EXIF data that can cause
1941    a crash
1942    http://rt.cpan.org/Public/Bug/Display.html?id=18496
1943
1944  - fix mis-processing of the src_maxx and src_maxy parameters of the
1945    paste() method
1946    http://rt.cpan.org/Public/Bug/Display.html?id=18712
1947
1948  - fix a problem in Imager's "smart" handling of the color parameter
1949    to various methods.
1950    http://rt.cpan.org/Public/Bug/Display.html?id=18561
1951
1952
1953 Imager 0.50 - 29 Mar 2006
1954 ===========
1955
1956  - CRITICAL: fixes a segmentation fault from attempting to write a 2
1957    or 4 channel image to jpeg or a 2 channel image to tga where the
1958    output is an in-memeory buffer.
1959    http://rt.cpan.org/Public/Bug/Display.html?id=18397
1960
1961  - fixes an incorrect pointer parameter in the PNG code
1962    http://rt.cpan.org/Public/Bug/Display.html?id=18051
1963
1964  - skip Inline::C tests when building in a directory with spaces
1965    http://rt.cpan.org/Public/Bug/Display.html?id=18049