Blame NEWS

Packit 679830
============================================================================
Packit 679830
User visible changes for LZO -- a real-time data compression library
Packit 679830
============================================================================
Packit 679830
Packit 679830
Changes in 2.08 (29 Jun 2014)
Packit 679830
  * Updated the Autoconf scripts to fix some reported build problems.
Packit 679830
  * Added CMake build support.
Packit 679830
  * Fixed lzo_init() on big-endian architectures like Sparc.
Packit 679830
Packit 679830
Changes in 2.07 (25 Jun 2014)
Packit 679830
  * Fixed a potential integer overflow condition in the "safe" decompressor
Packit 679830
    variants which could result in a possible buffer overrun when
Packit 679830
    processing maliciously crafted compressed input data.
Packit 679830
Packit 679830
    Fortunately this issue only affects 32-bit systems and also can only happen
Packit 679830
    if you use uncommonly huge buffer sizes where you have to decompress more
Packit 679830
    than 16 MiB (> 2^24 bytes) untrusted compressed bytes within a single
Packit 679830
    function call, so the practical implications are limited.
Packit 679830
Packit 679830
    POTENTIAL SECURITY ISSUE. CVE-2014-4607.
Packit 679830
Packit 679830
  * Removed support for ancient configurations like 16-bit "huge" pointers -
Packit 679830
    LZO now requires a flat 32-bit or 64-bit memory model.
Packit 679830
  * Assorted cleanups.
Packit 679830
Packit 679830
Changes in 2.06 (12 Aug 2011)
Packit 679830
  * Some minor optimizations for big-endian architectures.
Packit 679830
  * Fixed overly strict malloc() misalignment check in examples.
Packit 679830
Packit 679830
Changes in 2.05 (23 Apr 2011)
Packit 679830
  * Converted the configure system to non-recursive Automake.
Packit 679830
  * Applied some overdue speed optimizations for modern x86/x64 architectures
Packit 679830
    and current compilers like gcc 4.6 and MSVC 2010.
Packit 679830
Packit 679830
Changes in 2.04 (31 Oct 2010)
Packit 679830
  * Fixed a gcc-4.5 aliasing issue in lzo_init().
Packit 679830
  * Updated the configure system.
Packit 679830
  * Assorted cleanups.
Packit 679830
Packit 679830
Changes in 2.03 (30 Apr 2008)
Packit 679830
  * Updated the ELF assembler sources to mark the stack as non-executable.
Packit 679830
  * Fixed a HP-UX 11 build issue with Itanium in ILP32 mode.
Packit 679830
  * Updated the configure system.
Packit 679830
Packit 679830
Changes in 2.02 (17 Oct 2005)
Packit 679830
  * Updated the build and Autoconf scripts to fix some reported
Packit 679830
    compilation problems.
Packit 679830
Packit 679830
Changes in 2.01 (27 Jun 2005)
Packit 679830
  * Changed the configure system to install the LZO library under the
Packit 679830
    name "liblzo2" so that parallel installation with LZO v1 is possible.
Packit 679830
  * Improved auto-configuration in miniLZO for some embedded targets like
Packit 679830
    Blackfin and H8/300 processors.
Packit 679830
Packit 679830
Changes in 2.00 (30 May 2005)
Packit 679830
Packit 679830
  [Library interface changes]
Packit 679830
  * The 'lzo_uint' typedef has been changed to match 'size_t', which means
Packit 679830
    it now is 64 bits on most 64-bit architectures. 32-bit machines
Packit 679830
    are not affected by this change.
Packit 679830
  * The formula for maximum expansion of incompressible data has changed.
Packit 679830
    See doc/LZO.FAQ. This is needed for some upcoming speed improvements,
Packit 679830
    and also for compatibility with our commercial LZO Professional product.
Packit 679830
  * The progress indicator callback interface has been revamped.
Packit 679830
  * All public header files now get installed into a "lzo" subdirectory, so
Packit 679830
    your applications should use #include <lzo/lzoXXX.h>.
Packit 679830
  * A number of (internal) macros have been renamed. See LZO_CFG_COMPAT
Packit 679830
    in <lzo/lzoconf.h> if your code depends on these.
Packit 679830
Packit 679830
  [Speed]
Packit 679830
  * Small overall speedup by exploiting features like branch prediction
Packit 679830
    hints and explicit inline control present in modern C/C++ compilers.
Packit 679830
  * Significant speedup for 64-bit architectures like AMD64.
Packit 679830
Packit 679830
  [Portability]
Packit 679830
  * LZO now fully supports the LLP64 programming model.
Packit 679830
  * LZO now fully supports the ILP64 and SILP64 programming models which
Packit 679830
    are used on some supercomputing architectures.
Packit 679830
  * Full Win64 support for AMD64 (aka x64) and IA64 (Itanium).
Packit 679830
  * Full 16-bit support for ancient DOS 286 protected mode, OS/2 1.x
Packit 679830
    and Windows 3.x.
Packit 679830
  * The LZO library now compiles and works on completely freestanding or
Packit 679830
    embedded systems as long as you have <limits.h> and <stddef.h> header
Packit 679830
    files. See the B/generic/build_freestanding.sh build script.
Packit 679830
Packit 679830
  [Misc]
Packit 679830
  * The i386 assembler versions of the decompressors are now automatically
Packit 679830
    built and installed. See also asm/i386/00README.TXT.
Packit 679830
  * Added include file <lzo/lzo_asm.h> that provides prototypes for all
Packit 679830
    assembler functions.
Packit 679830
  * Under MacOS X, the configure script now will use the '-no-cpp-precomp'
Packit 679830
    compiler option in order to work around bugs in some versions of
Packit 679830
    Apple's native "smart" preprocessor.
Packit 679830
  * Worked around a preprocessor bug that is present in all compilers which
Packit 679830
    are based on the lcc compiler kit.
Packit 679830
  * Added simple B/generic/build.sh build script family.
Packit 679830
  * Added lots of new build scripts for various DOS/Windows compilers.
Packit 679830
Packit 679830
  [Upgrade instructions from LZO v1 to LZO v2]
Packit 679830
  * On 64-bit architectures, revisit all uses of lzo_uint.
Packit 679830
  * Adapt for the maximum expansion change of incompressible data.
Packit 679830
  * If you use the progress callback then adapt for the new interface.
Packit 679830
  * Use #include <lzo/lzoXXX.h> or adjust your include path.
Packit 679830
  * Check your code for use of deprecated macros. Add a
Packit 679830
    #define LZO_CFG_COMPAT if necessary.
Packit 679830
  * Other than that LZO v2 should be fully source-compatible with LZO v1.
Packit 679830
    Of course, the compressed data is fully compatible as well.
Packit 679830
  * Re-compile and re-link your application.
Packit 679830
  * Enjoy the improvements!
Packit 679830
Packit 679830
----------------------------------------------------------------------------
Packit 679830
Packit 679830
Changes in 1.08 (12 Jul 2002)
Packit 679830
  * Much better support for cross compiling.
Packit 679830
  * Straighten out ANSI-conforming compiler checks.
Packit 679830
  * Avoid harmless compiler warnings reported by -Wcast-align.
Packit 679830
  * Fixed some sign extension problems on rather exotic machines where
Packit 679830
    sizeof(size_t) < sizeof(ptrdiff_t) and sizeof(lzo_uint) == sizeof(size_t)
Packit 679830
  * Updated the configure system to use the latest Autoconf, Automake
Packit 679830
    and Libtool versions.
Packit 679830
Packit 679830
Changes in 1.07 (18 Oct 2000)
Packit 679830
  * Default to '--disable-shared' (I'm getting tired of Libtool's
Packit 679830
    shared library build problems, this time AIX was the culprit).
Packit 679830
  * Avoid some harmless compiler warnings.
Packit 679830
Packit 679830
Changes in 1.06 (29 Nov 1999)
Packit 679830
  * Updated the configure system to use Autoconf 2.13, Automake 1.4 and
Packit 679830
    Libtool 1.3.3. This should hopefully fix the shared-library build
Packit 679830
    problems that were reported on some machines.
Packit 679830
  * Enhanced example programs a little bit.
Packit 679830
Packit 679830
Changes in 1.05 (14 Apr 1998)
Packit 679830
  * Just a one-line change in the configure script to workaround
Packit 679830
    a HPUX and IRIX build problem.
Packit 679830
Packit 679830
Changes in 1.04 (15 Mar 1998)
Packit 679830
  * Worked around a bug in the cpp preprocessor under HPUX 10.20.
Packit 679830
  * Adapted for Automake 1.2f and Libtool 1.1.
Packit 679830
Packit 679830
Changes in 1.03 (18 Jan 1998)
Packit 679830
  * minor compression ratio improvement
Packit 679830
  * extended example program to show how to do overlapping compression
Packit 679830
  * assembler changes, added support for the nasm assembler
Packit 679830
  * better support for cross compiling
Packit 679830
  * some cleanups
Packit 679830
Packit 679830
Changes in 1.02 (07 Dec 1997)
Packit 679830
  * improved LZO1X-999 and LZO1Y-999 compression ratio a little bit again
Packit 679830
  * introduced compression levels for LZO1X-999 and LZO1Y-999
Packit 679830
  * added support for preset dictionaries
Packit 679830
  * implemented LZO1X-1(12): needs 16 KiB for compression
Packit 679830
  * new algorithm LZO1Z: this is another variant of LZO1X
Packit 679830
  * added example program: how to use preset dictionaries
Packit 679830
  * added example program: how to do in-place decompression
Packit 679830
  * added a little file-packer example program
Packit 679830
  * LZO now works cleanly under checkergcc
Packit 679830
  * strict 16-bit memory model is working (but not officially supported)
Packit 679830
  * shared libraries are supported on many platforms
Packit 679830
  * adapted for Automake 1.2d and Libtool 1.0h
Packit 679830
Packit 679830
Changes in 1.01 (10 Aug 1997)
Packit 679830
  * improved LZO1X-999 and LZO1Y-999 compression ratio a little bit
Packit 679830
  * i386+gcc: significant speedup of the C version of the LZO1, LZO1A,
Packit 679830
    LZO1B and LZO1C decompressors
Packit 679830
  * added example programs that show how to generate pre-compressed data
Packit 679830
  * added Makefiles for DOS, Windows and OS/2 targets
Packit 679830
Packit 679830
Changes in 1.00 (13 Jul 1997)
Packit 679830
  * added miniLZO - can be easily included in your project
Packit 679830
  * improved documentation, added LZO.FAQ
Packit 679830
  * added build scripts for many systems where Autoconf is not available:
Packit 679830
    Windows 3.1 (LIB+DLL), Windows 95/NT (LIB+DLL), DOS (16+32 bit), OS/2
Packit 679830
  * adapted for Automake 1.2 and Libtool 1.0
Packit 679830
Packit 679830
Changes in 0.90 (27 Jun 1997): never released
Packit 679830
  * LZO now uses GNU Automake 1.0 - lots of configuration changes
Packit 679830
  * added LZO1X-1(11): this version needs only 8 KiB for compression
Packit 679830
  * implemented LZO1Y-1
Packit 679830
  * added i386 assembler decompressors for MASM/TASM/WASM
Packit 679830
  * the name of some assembler functions changed
Packit 679830
  * the numeric value of some error codes changed
Packit 679830
  * portability fixes
Packit 679830
Packit 679830
Changes in 0.29 (04 May 1997)
Packit 679830
  * Linux ELF shared library support
Packit 679830
  * workaround for gcc 2.7.2 optimizer bug under AIX
Packit 679830
  * added lzo_crc32() checksum
Packit 679830
Packit 679830
Changes in 0.28 (22 Feb 1997)
Packit 679830
  * new algorithm LZO1Y: LZO1Y-999 and LZO1Y decompressor
Packit 679830
  * added lzo1x_optimize() and lzo1y_optimize()
Packit 679830
  * minor speedup in assembler decompressors (i386+gcc)
Packit 679830
  * ltest.c rewritten
Packit 679830
Packit 679830
Changes in 0.27 (19 Jan 1997)
Packit 679830
  * fixed a bug in LZO1B-999 and LZO1C-999 that could produce
Packit 679830
    invalid compressed data in very rare cases
Packit 679830
Packit 679830
Changes in 0.26 (18 Jan 1997): never released
Packit 679830
  * implemented LZO1B-999
Packit 679830
  * renamed LZO1D to LZO2A (also updated all docs)
Packit 679830
  * some cleanups
Packit 679830
Packit 679830
Changes in 0.25 (28 Dec 1996): never released
Packit 679830
  * some portability fixes (LZO now works on my old Atari ST :-)
Packit 679830
  * adapted for Autoconf 2.12
Packit 679830
Packit 679830
Changes in 0.24 (30 Nov 1996): never released
Packit 679830
  * improved performance of LZO1X assembler decompressor on a Pentium (i386+gcc)
Packit 679830
Packit 679830
Changes in 0.23 (23 Nov 1996)
Packit 679830
  * added LZO1C, LZO1F and LZO1X decompressors in assembler (i386+gcc)
Packit 679830
  * added corresponding LZO_PUBLIC to all LZO_EXTERN functions
Packit 679830
  * added support for Microsoft C 7.0 (16-bit DOS)
Packit 679830
  * introduced lzo_uint32. This could prove useful for a strict 16-bit
Packit 679830
    version that doesn't use 'huge' pointers.
Packit 679830
  * all algorithms use incremental hashing now
Packit 679830
  * some cleanups and portability fixes
Packit 679830
Packit 679830
Changes in 0.22 (19 Sep 1996)
Packit 679830
  * LZO1X: minor decompressor speedup, added some checks in safe decompressor
Packit 679830
  * Autoconf: added detection of gcc strength-reduction bug
Packit 679830
  * Makefile changes
Packit 679830
Packit 679830
Changes in 0.21 (08 Sep 1996)
Packit 679830
  * LZO now uses GNU Autoconf 2.10 - lots of configuration changes
Packit 679830
  * a few cosmetical changes
Packit 679830
Packit 679830
Changes in 0.20 (11 Aug 1996)
Packit 679830
  * new algorithm LZO1X: LZO1X-1, LZO1X-999 and LZO1X decompressor
Packit 679830
  * significantly speeded up LZO1B, LZO1C and LZO1F decompressors
Packit 679830
    on CPUs which allow unaligned memory access (e.g. Intel i386)
Packit 679830
  * greatly speeded up LZO2A-999 compressor at the cost of some memory
Packit 679830
  * some cleanups, portability fixes and minor speedups
Packit 679830
Packit 679830
Changes in 0.16 (22 Jul 1996)
Packit 679830
  * speeded up LZO1F decompressor a little bit
Packit 679830
  * improved LZO1F-999 compression ratio
Packit 679830
Packit 679830
Changes in 0.15 (10 Jul 1996)
Packit 679830
  * new algorithm LZO1F: LZO1F-1, LZO1F-999 and LZO1F decompressor
Packit 679830
  * improved LZO2A-999 compression ratio
Packit 679830
  * removed LZO1E as it is dominated by LZO1F
Packit 679830
Packit 679830
Changes in 0.14 (06 Jul 1996): never released
Packit 679830
  * experimental algorithms: LZO1E and LZO1F
Packit 679830
  * added LZO_EXTERN to all prototypes. Useful when building a DLL.
Packit 679830
  * improved LZO1C-999 and LZO2A-999 compression ratio a little bit
Packit 679830
  * fixed progress indicator callback (it was called only once)
Packit 679830
Packit 679830
Changes in 0.13 (20 Jun 1996)
Packit 679830
  * some speed improvements in LZO1C-999 and LZO2A-999
Packit 679830
Packit 679830
Changes in 0.12 (18 Jun 1996): never released
Packit 679830
  * added LZO1C-999, a slow but nearly optimal compressor
Packit 679830
    intended for generating pre-compressed data
Packit 679830
  * added tests for lookbehind-overrun in all safe decompressors
Packit 679830
  * source tree completely rearranged, some filenames changed
Packit 679830
  * extensions changed: a .ch file is a C source code that is included
Packit 679830
    for reasons of code sharing
Packit 679830
  * new algorithm LZO2A: LZO2A-999 and LZO2A decompressor. There is
Packit 679830
    no fast compressor yet.
Packit 679830
  * some cleanups
Packit 679830
Packit 679830
Changes in 0.11 (29 May 1996)
Packit 679830
  * source tree rearranged
Packit 679830
  * LZO now compiles fine as a C++ library (interface still has C linkage)
Packit 679830
  * improved overall compression ratio a little bit
Packit 679830
  * LZO1B-99/LZO1C-99 now search for longer matches
Packit 679830
  * incremental hash is working, it's a little bit faster
Packit 679830
  * Makefile changed
Packit 679830
  * added lzo_uint and lzo_sizeof in some places
Packit 679830
  * split LZO1B compressor into even more include-files
Packit 679830
Packit 679830
Changes in 0.10 (20 May 1996): first public release of the LZO library
Packit 679830
  * includes LZO1, LZO1A, LZO1B and LZO1C algorithms
Packit 679830
    (compression levels 1-9 and 99)
Packit 679830
Packit 679830
14 Mar 1996:
Packit 679830
  * public release of the LZO1A algorithm
Packit 679830
Packit 679830
04 Mar 1996:
Packit 679830
  * public release of the LZO1 algorithm