From 9ce46057b4b30597d52a38a2e86feed0182e95b5 Mon Sep 17 00:00:00 2001 From: Marcus Holland-Moritz Date: Fri, 9 Feb 2024 11:41:21 +0100 Subject: [PATCH] chore: update change log --- CHANGES.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 18a179d7..758e342a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,32 @@ # Change Log +## Version 0.9.2 - 2024-02-09 + +- (fix) v0.9.0 introduced an optimization where large files of equal + size were only fully hashed for deduplication if the first 4K of their + contents also produced the same hash. This introduced a bug causing + an exception to be thrown when processing large hard-linked files. + The root cause was that the data structure intended to be used for + exactly this case was just never populated, and the fix was adding + a single line to fill the data structure. The test cases didn't cover + large hard-linked files, so this slipped through into the release. + A new test case has been added as well. + +- (fix) On Windows, when using Power Shell, the error message dialog + for a missing WinFsp DLL was not shown when running `dwarfs.exe`. + The workaround is to use the same delayed loading mechanism that's + already used for the universal binary and show the error in the + terminal. See also the discussion on github #192. + +- (feature) Added a `--list` option to `dwarfsck`. This lists all files + in the files system image. When used with `--verbose`, the list also + shows permissions, size, uid/git and symbolic link information. + Fixes github #192. + +- (feature) Added a `--checksum` option to `dwarfsck`. This produces + output similar to the `*sum` programs from coreutils and can be used + to check the contents of a DwarFS image against local files. + ## Version 0.9.1 - 2024-02-06 - (fix) Invalid UTF-8 characters in file paths would crash `mkdwarfs`