• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1v1.7.5
2lz4hc : new high compression mode : levels 10-12 compress more and slower, by Przemyslaw Skibinski
3lz4cat : fix : works with relative path (#284) and stdin (#285) (reported by @beiDei8z)
4cli : fix minor notification when using -r recursive mode
5API : lz4frame : LZ4F_frameBound(0) gives upper bound of *flush() and *End() operations (#290, #280)
6doc : markdown version of man page, by Takayuki Matsuoka (#279)
7build : Makefile : fix make -jX lib+exe concurrency (#277)
8build : cmake : improvements by Michał Górny (#296)
9
10v1.7.4.2
11fix : Makefile : release build compatible with PIE and customized compilation directives provided through environment variables (#274, reported by Antoine Martin)
12
13v1.7.4
14Improved : much better speed in -mx32 mode
15cli : fix : Large file support in 32-bits mode on Mac OS-X
16fix : compilation on gcc 4.4 (#272), reported by Antoine Martin
17
18v1.7.3
19Changed : moved to versioning; package, cli and library have same version number
20Improved: Small decompression speed boost
21Improved: Small compression speed improvement on 64-bits systems
22Improved: Small compression ratio and speed improvement on small files
23Improved: Significant speed boost on ARMv6 and ARMv7
24Fix : better ratio on 64-bits big-endian targets
25Improved cmake build script, by Evan Nemerson
26New liblz4-dll project, by Przemyslaw Skibinki
27Makefile: Generates object files (*.o) for faster (re)compilation on low power systems
28cli : new : --rm and --help commands
29cli : new : preserved file attributes, by Przemyslaw Skibinki
30cli : fix : crash on some invalid inputs
31cli : fix : -t correctly validates lz4-compressed files, by Nick Terrell
32cli : fix : detects and reports fread() errors, thanks to Hiroshi Fujishima report #243
33cli : bench : new : -r recursive mode
34lz4cat : can cat multiple files in a single command line (#184)
35Added : doc/lz4_manual.html, by Przemyslaw Skibinski
36Added : dictionary compression and frame decompression examples, by Nick Terrell
37Added : Debianization, by Evgeniy Polyakov
38
39r131
40New    : Dos/DJGPP target, thanks to Louis Santillan (#114)
41Added  : Example using lz4frame library, by Zbigniew Jędrzejewski-Szmek (#118)
42Changed: xxhash symbols are modified (namespace emulation) within liblz4
43
44r130:
45Fixed  : incompatibility sparse mode vs console, reported by Yongwoon Cho (#105)
46Fixed  : LZ4IO exits too early when frame crc not present, reported by Yongwoon Cho (#106)
47Fixed  : incompatibility sparse mode vs append mode, reported by Takayuki Matsuoka (#110)
48Performance fix : big compression speed boost for clang (+30%)
49New    : cross-version test, by Takayuki Matsuoka
50
51r129:
52Added  : LZ4_compress_fast(), LZ4_compress_fast_continue()
53Added  : LZ4_compress_destSize()
54Changed: New lz4 and lz4hc compression API. Previous function prototypes still supported.
55Changed: Sparse file support enabled by default
56New    : LZ4 CLI improved performance compressing/decompressing multiple files (#86, kind contribution from Kyle J. Harper & Takayuki Matsuoka)
57Fixed  : GCC 4.9+ optimization bug - Reported by Markus Trippelsdorf, Greg Slazinski & Evan Nemerson
58Changed: Enums converted to LZ4F_ namespace convention - by Takayuki Matsuoka
59Added  : AppVeyor CI environment, for Visual tests - Suggested by Takayuki Matsuoka
60Modified:Obsolete functions generate warnings - Suggested by Evan Nemerson, contributed by Takayuki Matsuoka
61Fixed  : Bug #75 (unfinished stream), reported by Yongwoon Cho
62Updated: Documentation converted to MarkDown format
63
64r128:
65New    : lz4cli sparse file support (Requested by Neil Wilson, and contributed by Takayuki Matsuoka)
66New    : command -m, to compress multiple files in a single command (suggested by Kyle J. Harper)
67Fixed  : Restored lz4hc compression ratio (slightly lower since r124)
68New    : lz4 cli supports long commands (suggested by Takayuki Matsuoka)
69New    : lz4frame & lz4cli frame content size support
70New    : lz4frame supports skippable frames, as requested by Sergey Cherepanov
71Changed: Default "make install" directory is /usr/local, as notified by Ron Johnson
72New    : lz4 cli supports "pass-through" mode, requested by Neil Wilson
73New    : datagen can generate sparse files
74New    : scan-build tests, thanks to kind help by Takayuki Matsuoka
75New    : g++ compatibility tests
76New    : arm cross-compilation test, thanks to kind help by Takayuki Matsuoka
77Fixed  : Fuzzer + frametest compatibility with NetBSD (issue #48, reported by Thomas Klausner)
78Added  : Visual project directory
79Updated: Man page & Specification
80
81r127:
82N/A   : added a file on SVN
83
84r126:
85New   : lz4frame API is now integrated into liblz4
86Fixed : GCC 4.9 bug on highest performance settings, reported by Greg Slazinski
87Fixed : bug within LZ4 HC streaming mode, reported by James Boyle
88Fixed : older compiler don't like nameless unions, reported by Cheyi Lin
89Changed : lz4 is C90 compatible
90Changed : added -pedantic option, fixed a few mminor warnings
91
92r125:
93Changed : endian and alignment code
94Changed : directory structure : new "lib" directory
95Updated : lz4io, now uses lz4frame
96Improved: slightly improved decoding speed
97Fixed : LZ4_compress_limitedOutput(); Special thanks to Christopher Speller !
98Fixed : some alignment warnings under clang
99Fixed : deprecated function LZ4_slideInputBufferHC()
100
101r124:
102New : LZ4 HC streaming mode
103Fixed : LZ4F_compressBound() using null preferencesPtr
104Updated : xxHash to r38
105Updated library number, to 1.4.0
106
107r123:
108Added : experimental lz4frame API, thanks to Takayuki Matsuoka and Christopher Jackson for testings
109Fix : s390x support, thanks to Nobuhiro Iwamatsu
110Fix : test mode (-t) no longer requires confirmation, thanks to Thary Nguyen
111
112r122:
113Fix : AIX & AIX64 support (SamG)
114Fix : mips 64-bits support (lew van)
115Added : Examples directory, using code examples from Takayuki Matsuoka
116Updated : Framing specification, to v1.4.1
117Updated : xxHash, to r36
118
119r121:
120Added : Makefile : install for kFreeBSD and Hurd (Nobuhiro Iwamatsu)
121Fix : Makefile : install for OS-X and BSD, thanks to Takayuki Matsuoka
122
123r120:
124Modified : Streaming API, using strong types
125Added : LZ4_versionNumber(), thanks to Takayuki Matsuoka
126Fix : OS-X : library install name, thanks to Clemens Lang
127Updated : Makefile : synchronize library version number with lz4.h, thanks to Takayuki Matsuoka
128Updated : Makefile : stricter compilation flags
129Added : pkg-config, thanks to Zbigniew Jędrzejewski-Szmek (issue 135)
130Makefile : lz4-test only test native binaries, as suggested by Michał Górny (issue 136)
131Updated : xxHash to r35
132
133r119:
134Fix : Issue 134 : extended malicious address space overflow in 32-bits mode for some specific configurations
135
136r118:
137New : LZ4 Streaming API (Fast version), special thanks to Takayuki Matsuoka
138New : datagen : parametrable synthetic data generator for tests
139Improved : fuzzer, support more test cases, more parameters, ability to jump to specific test
140fix : support ppc64le platform (issue 131)
141fix : Issue 52 (malicious address space overflow in 32-bits mode when using large custom format)
142fix : Makefile : minor issue 130 : header files permissions
143
144r117:
145Added : man pages for lz4c and lz4cat
146Added : automated tests on Travis, thanks to Takayuki Matsuoka !
147fix : block-dependency command line (issue 127)
148fix : lz4fullbench (issue 128)
149
150r116:
151hotfix (issue 124 & 125)
152
153r115:
154Added : lz4cat utility, installed on POSX systems (issue 118)
155OS-X compatible compilation of dynamic library (issue 115)
156
157r114:
158Makefile : library correctly compiled with -O3 switch (issue 114)
159Makefile : library compilation compatible with clang
160Makefile : library is versioned and linked (issue 119)
161lz4.h : no more static inline prototypes (issue 116)
162man : improved header/footer (issue 111)
163Makefile : Use system default $(CC) & $(MAKE) variables (issue 112)
164xxhash : updated to r34
165
166r113:
167Large decompression speed improvement for GCC 32-bits. Thanks to Valery Croizier !
168LZ4HC : Compression Level is now a programmable parameter (CLI from 4 to 9)
169Separated IO routines from command line (lz4io.c)
170Version number into lz4.h (suggested by Francesc Alted)
171
172r112:
173quickfix
174
175r111 :
176Makefile : added capability to install libraries
177Modified Directory tree, to better separate libraries from programs.
178
179r110 :
180lz4 & lz4hc : added capability to allocate state & stream state with custom allocator (issue 99)
181fuzzer & fullbench : updated to test new functions
182man : documented -l command (Legacy format, for Linux kernel compression) (issue 102)
183cmake : improved version by Mika Attila, building programs and libraries (issue 100)
184xxHash : updated to r33
185Makefile : clean also delete local package .tar.gz
186
187r109 :
188lz4.c : corrected issue 98 (LZ4_compress_limitedOutput())
189Makefile : can specify version number from makefile
190
191r108 :
192lz4.c : corrected compression efficiency issue 97 in 64-bits chained mode (-BD) for streams > 4 GB (thanks Roman Strashkin for reporting)
193
194r107 :
195Makefile : support DESTDIR for staged installs. Thanks Jorge Aparicio.
196Makefile : make install installs both lz4 and lz4c (Jorge Aparicio)
197Makefile : removed -Wno-implicit-declaration compilation switch
198lz4cli.c : include <stduni.h> for isatty() (Luca Barbato)
199lz4.h : introduced LZ4_MAX_INPUT_SIZE constant (Shay Green)
200lz4.h : LZ4_compressBound() : unified macro and inline definitions (Shay Green)
201lz4.h : LZ4_decompressSafe_partial() : clarify comments (Shay Green)
202lz4.c : LZ4_compress() verify input size condition (Shay Green)
203bench.c : corrected a bug in free memory size evaluation
204cmake : install into bin/ directory (Richard Yao)
205cmake : check for just C compiler (Elan Ruusamae)
206
207r106 :
208Makefile : make dist modify text files in the package to respect Unix EoL convention
209lz4cli.c : corrected small display bug in HC mode
210
211r105 :
212Makefile : New install script and man page, contributed by Prasad Pandit
213lz4cli.c : Minor modifications, for easier extensibility
214COPYING  : added license file
215LZ4_Streaming_Format.odt : modified file name to remove white space characters
216Makefile : .exe suffix now properly added only for Windows target
217