summaryrefslogtreecommitdiffstats
path: root/NEWS
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2020-01-27 21:51:06 (GMT)
committerYann Collet <cyan@fb.com>2020-01-27 21:51:06 (GMT)
commite55548b0bd553cc25d8c0994db6f5d49663fb3f5 (patch)
tree3a24a0ff44aa156dc50665946fc8879d4b9a0acc /NEWS
parentcb1ee95d76b8b78e0a8965cebe1a83b6facaadb6 (diff)
downloadlz4-e55548b0bd553cc25d8c0994db6f5d49663fb3f5.zip
lz4-e55548b0bd553cc25d8c0994db6f5d49663fb3f5.tar.gz
lz4-e55548b0bd553cc25d8c0994db6f5d49663fb3f5.tar.bz2
updated NEWS for v1.9.3
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS18
1 files changed, 18 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 860f15b..44c45be 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,21 @@
+v1.9.3
+perf: faster speed on Visual Studio, by @wolfpld
+
+
+v1.9.2
+fix : out-of-bound read in exceptional circumstances when using decompress_partial(), by @terrelln
+fix : slim opportunity for out-of-bound write with compress_fast() with a large enough input and when providing an output smaller than recommended (< LZ4_compressBound(inputSize)), by @terrelln
+fix : rare data corruption bug with LZ4_compress_destSize(), by @terrelln
+fix : data corruption bug when Streaming with an Attached Dict in HC Mode, by @felixhandte
+perf: enable LZ4_FAST_DEC_LOOP on aarch64/GCC by default, by @prekageo
+perf: improved lz4frame streaming API speed, by @dreambottle
+perf: speed up lz4hc on slow patterns when using external dictionary, by @terrelln
+api: better in-place decompression and compression support
+cli : --list supports multi-frames files, by @gstedman
+cli: --version outputs to stdout
+cli : add option --best as an alias of -12 , by @Low-power
+misc: Integration into oss-fuzz by @cmeister2, expanded list of scenarios by @terrelln
+
v1.9.1
fix : decompression functions were reading a few bytes beyond input size (introduced in v1.9.0, reported by @ppodolsky and @danlark1)
api : fix : lz4frame initializers compatibility with c++, reported by @degski