From: Eric Biggers Date: Sat, 4 Apr 2015 04:52:24 +0000 (-0500) Subject: v1.8.1-BETA X-Git-Tag: v1.8.1~50 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=0199e8a882277f833ed5e88988224cb8a4778ead v1.8.1-BETA --- diff --git a/NEWS b/NEWS index 6f985967..be31de5a 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,23 @@ +Version 1.8.1-BETA: + Fixed a bug in the LZX decompressor: malicious input data could cause + out of bounds writes to memory (since wimlib v1.2.2). + + A file can now have both an unnamed data stream ("file contents") and a + reparse point stream. Such files can exist as a result of the use of + certain Windows features, such as offline storage, including "OneDrive". + wimlib will now store and restore both streams on Windows as well as in + NTFS-3g mode. Microsoft's WIMGAPI also has this behavior. + + On Windows, named data streams of encrypted files are no longer stored + twice in WIM archives. + + On Windows, named data streams are now correctly extracted to existing + "readonly" directories. Before, an error would be reported. + + On Windows, when doing an extraction in "WIMBoot mode", files larger + than 4 gigabytes are now never extracted as externally backed. This + works around a bug in Microsoft's "WOF" driver. + Version 1.8.0: Improved the LZX compressor. It is now 15-20% faster than before and provides a slightly better compression ratio. diff --git a/README b/README index 8b99e0c5..786ded7c 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ INTRODUCTION -This is wimlib version 1.8.0 (February 2015). wimlib is a C library for +This is wimlib version 1.8.1-BETA (April 2015). wimlib is a C library for creating, modifying, extracting, and mounting files in the Windows Imaging Format (WIM files). wimlib and its command-line frontend 'wimlib-imagex' provide a free and cross-platform alternative to Microsoft's WIMGAPI, ImageX, diff --git a/configure.ac b/configure.ac index 5d86b1a1..8c804b86 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ ############################################################################### -AC_INIT([wimlib], [1.8.0], [ebiggers3@gmail.com]) +AC_INIT([wimlib], [1.8.1-BETA], [ebiggers3@gmail.com]) AC_CONFIG_SRCDIR([src/wim.c]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([build-aux])