metastore.c: Do not skip nanoseconds when applying mtime.
[metastore.git] / NEWS
blob83371655da22a2bb2e145568db3710e2a7f01d1d
1 Latest stuff
2 ------------------------------------------------------------------------
4  * BUGFIX: Normalization of paths in arguments failed when current
5            working directory was the root directory (/).
6            Bug discovered thanks to Jürgen Bubeck.
8  * BUGFIX: "changing owner" message showed group instead of owner.
10  * Support building with no extended attributes support when NO_XATTR
11    macro is predefined to non-0 value (e.g. put -DNO_XATTR in CFLAGS).
12    You can achieve it by passing NO_XATTR=1 to make invocation.
15 v1.1.2                                                      (2018-01-06)
16 ------------------------------------------------------------------------
18  * Support building on systems with undefined PATH_MAX, e.g. GNU Hurd.
19    Simple, but not ideal solution yet - PATH_MAX is assumed to be 4096.
21  * Stop assuming that LDFLAGS has flags only for the linker (LD).
22    It used to be true long time ago, when these flags were passed
23    directly to ld.  Nowadays (for quite many years already) it happens
24    differently and ld is almost never called directly during build,
25    because it's the compiler that is used for performing linking stage
26    (so called CCLD, practically almost always the same as CC).
28    The build process was already using CCLD (defaulting to CC's value),
29    but was prefixing all unprefixed flags in LDFLAGS with -Wl, prefix,
30    making it impossible to pass non-linker flags via LDFLAGS to CCLD.
31    No more!  Now it's assumed that LDFLAGS are meant to be passed to
32    the compiler, so linker flags require explicit -Wl, prefix.
35 v1.1.1a                                                     (2018-01-02)
36 ------------------------------------------------------------------------
38  * Non-code-related change requested by debian package maintainer.
39    Other distributions are unaffected by it.
42 v1.1.1                                                      (2017-12-04)
43 ------------------------------------------------------------------------
45  * BUGFIX: Reading metadata file with extended attributes entries led
46            to corruption of metadata represented in memory on 64-bit
47            platforms, so applying could led to corruption of metadata
48            on disk too.  Bug discovered thanks to Uros Juvan.
51 v1.1.0                                                      (2016-02-01)
52 ------------------------------------------------------------------------
54  * BUGFIX: Applying metadata with extended attribute having null byte
55            in value zeroed all following bytes of this xattr value.
57  * BUGFIX: Reading extended attributes while not having permissions
58            resulted in crash.
60  * Empty directories not present in metadata can be now removed when
61    applying stored metadata if -E / --remove-empty-dirs option is used.
63  * Stored metadata (in .metadata file by default) and real metadata
64    (from filesystem) can be now dumped in human-readable form using new
65    action: -d / --dump.  Please do not rely on its current format!
67  * Scripts in example/ directory do not require bash anymore and there
68    is a new example for post checkout hook.
70  * Dependency on libattr's xattr.h header has been removed.
71    As long as your libc provides sys/xattr.h (glibc does it since v2.3),
72    everything should be fine.
74  * Dependency on libbsd has been added.  It's used by dump action.