Fix sparse warning: symbol was not declared. Should it be static?
[metastore.git] / NEWS
blob65bce94b59e6a1ff5d1bbc99d0e2040c18dff405
1 v1.1.2                                                      (2018-01-06)
2 ------------------------------------------------------------------------
4  * Support building on systems with undefined PATH_MAX, e.g. GNU Hurd.
5    Simple, but not ideal solution yet - PATH_MAX is assumed to be 4096.
7  * Stop assuming that LDFLAGS has flags only for the linker (LD).
8    It used to be true long time ago, when these flags were passed
9    directly to ld.  Nowadays (for quite many years already) it happens
10    differently and ld is almost never called directly during build,
11    because it's the compiler that is used for performing linking stage
12    (so called CCLD, practically almost always the same as CC).
14    The build process was already using CCLD (defaulting to CC's value),
15    but was prefixing all unprefixed flags in LDFLAGS with -Wl, prefix,
16    making it impossible to pass non-linker flags via LDFLAGS to CCLD.
17    No more!  Now it's assumed that LDFLAGS are meant to be passed to
18    the compiler, so linker flags require explicit -Wl, prefix.
21 v1.1.1a                                                     (2018-01-02)
22 ------------------------------------------------------------------------
24  * Non-code-related change requested by debian package maintainer.
25    Other distributions are unaffected by it.
28 v1.1.1                                                      (2017-12-04)
29 ------------------------------------------------------------------------
31  * BUGFIX: Reading metadata file with extended attributes entries led
32            to corruption of metadata represented in memory on 64-bit
33            platforms, so applying could led to corruption of metadata
34            on disk too.  Bug discovered thanks to Uros Juvan.
37 v1.1.0                                                      (2016-02-01)
38 ------------------------------------------------------------------------
40  * BUGFIX: Applying metadata with extended attribute having null byte
41            in value zeroed all following bytes of this xattr value.
43  * BUGFIX: Reading extended attributes while not having permissions
44            resulted in crash.
46  * Empty directories not present in metadata can be now removed when
47    applying stored metadata if -E / --remove-empty-dirs option is used.
49  * Stored metadata (in .metadata file by default) and real metadata
50    (from filesystem) can be now dumped in human-readable form using new
51    action: -d / --dump.  Please do not rely on its current format!
53  * Scripts in example/ directory do not require bash anymore and there
54    is a new example for post checkout hook.
56  * Dependency on libattr's xattr.h header has been removed.
57    As long as your libc provides sys/xattr.h (glibc does it since v2.3),
58    everything should be fine.
60  * Dependency on libbsd has been added.  It's used by dump action.