Skip to content

Commit

Permalink
Bump version to 0.9.0
Browse files Browse the repository at this point in the history
This is the first stable release of composefs. Starting now, we
guarantee a stable library ABI and a binary stable file format. The
later means that any image build from an identical lcfs_node tree and
identical write options, will produce a file that is binary identical
to a later run even with a different version. The same is true for
an mkcomposefs run with the same options.

Major changes since 0.1.4:

* All required overlayfs xattr changes are now upstream and the
  corresponding image generation changes have been made in
  composefs. This includes support for escaping overlayfs xattrs and
  whiteouts for nested overlayfs mounts.

* fs-verity built-in signature support was dropped in favour of
  userspace signatures.

* The erofs iamges now uses the new bloom filter for faster xattr
   lookups. This is backward compatible and old erofs version still
   work (sans the speedup).

* Files can now be inlined in the erofs image to avoid overhead of
  using redirections for small files.

* There is a new API to regenerate a lcfs_node tree from a composefs
  image file.

* There is a new composefs-info tool that lets you dump info about
  images, including what objects it refers to and which ones are
  missing from a given basedir.

* Various fixes, cleanups and new tests

Signed-off-by: Alexander Larsson <[email protected]>
  • Loading branch information
alexlarsson committed Sep 22, 2023
1 parent 22d0730 commit 951adcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ([2.69])
AC_INIT([composefs], [0.1.4], [[email protected]])
AC_INIT([composefs], [0.9.0], [[email protected]])
AC_CONFIG_SRCDIR([tools/mkcomposefs.c])
AC_CONFIG_HEADERS([config.h])
AC_SYS_LARGEFILE
Expand Down

0 comments on commit 951adcc

Please sign in to comment.