- Issue #44: Fix compressing a zero-sized stream. Thanks @ChALkeR.
- Issue #36: Deprecated declarations. Thanks @ee99ee.
- Updated LZ4 C code base with r131.
- Issue #37: reverted commit breaking encodeBlock. Thanks @jamievicary.
- Merged pull request #32 (thanks go to mog422)
- Updated encoding tests to not depend on pre-encoded data
- Issue #31: LZ4 Javascript compress function corrupts data
- Support for node 0.12 and iojs 1.6. Thanks to EricMCornelius (github.com/EricMCornelius) for his merge request.
- Fixed build
- Issue #22: pos variable is not in read_DataBlockChecksum
- Issue #19: fixed regression in Node wrt invalid checksums (nodejs and browserify Buffer.readInt32LE() are incompatible)
- Issue #7: removed checks in writeInt32LE()
- Updated LZ4 source to r119
- Removed garbage in build/lz4.min.js by updating minify to latest version
- Fixed checksum errors in the decoder (browser implementation) (issue #14)
- Added start and end indexes to decodeBlock() and encodeBlock() (issue #15)
- Fixed issue where the browser implementation of Buffer checks sign in writeUInt32LE()
- Fixed assert() when writing uncompressible data
- Added useJS option to encoder and decoder streams
- Fixed stream encoder typo
- Updated lz4 source to r116
- Fixed stream encoder on large inputs
- Updated build/lz4.js and build/lz4.min.js
- Fixed Javascript compressBlock() not writing last batch of literals under some circumstances
- Improved Javascript encoder speed
- First release of the pure Javascript encoder
- Updated lz4 source to r113
- Split xxHash and LZ4 bindings
- Added browser support via ./build/lz4.js and ./build/lz4.min.js
- Exposed block level compression/decompression functions
- Fixed handling of uncompressed data
- Sync and async encoders share the same code
- Sync and async decoders share the same code
- Async decoder emits an error on missing data
- Fixed encoder reversed logic
- Updated lz4 source to r104
- Support for LZ4Stream format v1.4, legacy format is deprecated, use v0.1 for its support
- Updated lz4 source to r102
- Updated lz4 source to r96
- Fixed an issue with small chunkSize parameters
- Updated streams to use streams2
- Updated lz4 source to r90
- Fixed node binding compilation errors for node v0.10